netgremlin
Forum Replies Created
-
Thanks for that, Ill give it a try cheers
Nevermind, I switched to the other analytics method and it works great now
perfect thanks for that!
Forum: Plugins
In reply to: [Ivory Search - WordPress Search Plugin] Make thumbnails 16:9Thanks, managed to get this code to do it:
<?php
add_filter( ‘is_ajax_image_size’, ‘my_ajax_image_size’, 10, 1 );
function my_ajax_image_size( $image_size ) {
// Check if the current image size is the default thumbnail size
if ( $image_size === ‘thumbnail’ ) {
// Set the new image size to the desired aspect ratio (16:9)
$new_size = array( round( 16 / 9 * get_option( ‘thumbnail_size_w’ ) ), get_option( ‘thumbnail_size_h’ ) );
$image_size = $new_size;
}// Return the modified image size
return $image_size;
}Forum: Plugins
In reply to: [Ivory Search - WordPress Search Plugin] Searches forever but nothing happensThat seems to work much better, thanks Vinod!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Storage of PDFsThats great, brilliant plugin Yordan and thanks for getting back to me so quick!