tin_soldier
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Related Products order of preferenceWas hoping that this might work (added to functions.php)
add_filter( 'woocommerce_product_related_posts_relate_by_category', '__return_false' ); add_filter( 'woocommerce_product_related_posts_relate_by_tag', '__return_false' ); add_filter( 'woocommerce_product_related_posts_relate_by_tag', '__return_true' ); add_filter( 'woocommerce_product_related_posts_relate_by_category', '__return_true' );
Removing both functions and bringing them back in with Tags first. It doesn’t work though. Products associated by category still show first.
Anyone?
Forum: Plugins
In reply to: [Campaign Monitor for WordPress] exceptions.php missingI assume it can be downloaded from here: https://github.com/campaignmonitor/createsend-php/tree/master/class
This should be fixed though.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Google Maps APIThanks @brian but I just tried that fix, even replaced the whole venue-map.php with the new commit but I still get the same error.
I’ve also tried just adding New York as an address to eliminate the address as the problem.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Linking fixtures, venues etcI have the same Google Maps error on the venue map.
“The Google Maps API server rejected your request. Invalid request. Invalid ‘q’ parameter.”
Forum: Plugins
In reply to: [Social Slider Feed] square photo'sTo make them square again you can force the thumbnail size you are using to hard crop by adding this to your functions file:
add_image_size( ‘medium’, 300, 300, true );
This assumes you are using the medium thumbnail size in your widget. Replace with large if you’re using large.
You’ll also need to regenerate the thumbnails after adding this using:
https://www.ads-software.com/plugins/regenerate-thumbnails/Forum: Plugins
In reply to: [Maps Builder - Google Maps Plugin] Google Places still showingI’m using one of the Snazzy Map themes. I’ve been able to remove the Google Places by editing the theme I chose in snazzy.php.
I assume the theme options override the radio button.
Is there a reason why only a handful of the Snazzy Map themes have been added as choices in the drop down?
This worked for me:
In ajax-event-calendar/inc/show-event.php
Change this line:
$csz = ($options['addy_format']) ? "{$zip} {$city}" : "{$city} {$state}, {$zip}";
To:
$csz = ($options['addy_format']) ? "{$zip} {$city}" : "{$city} {$state} {$zip}";
Change these two lines:
if (!empty($event->venue)) $out .= "<p>{$event->venue}\n"; $out .= (!empty($event->address)) ? "<br>{$event->address}<br>{$csz}</p>" : "<br>{$csz}</p>";
To:
if (!empty($event->venue)) $out .= "<p>{$event->venue}</p>\n"; $out .= (!empty($event->address)) ? "<p>{$event->address}<br>{$csz}<br></p>" : "<br>{$csz}</p>";
Forum: Plugins
In reply to: [Event Calendar] [Plugin: Ajax Event Calendar] Selected month wrongPerfect. Thanks for the speedy response.
Forum: Plugins
In reply to: [Event Calendar] Ajax Event Calendar conflict with Custom Field TemplateI’ve had the same issue using CFT and Ajax Events Calendar.
After reading this post I’ve removed date.js from the CFT folder and everything’s working fine now.
I know that’s far from ideal but I’m not using any date functions within my custom fields.
It would be great to have a proper fix for this though.
My custom fields look like this:
[Left Column]
type = textarea
rows = 20
cols = 1
size = 5
tinyMCE = true
mediaButton = true