DaveB
Forum Replies Created
-
Forum: Plugins
In reply to: [Amazon Associates Link Builder] Parse error: syntax error, unexpected ‘[‘I’ve got the same error. Sent an email to support, but no reply yet.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Photon Crop-ThumbnailsThanks Jeremy
I’ve had to disable Photon for the time being, as I need to control the crop on some.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Photon Crop-ThumbnailsAh. Thanks.
Forum: Plugins
In reply to: [Crop-Thumbnails] Jetpack PhotonOK, I’ll try there.
Forum: Plugins
In reply to: [WooCommerce] Read More/Add to Cart Remove Related ProductsTurns out my ‘related products’ were actually ‘related posts’ from Jetpack. Disable that in Jetpack & they’re gone.
Forum: Plugins
In reply to: [WooCommerce] Read More/Add to Cart Remove Related ProductsI’d like to know about the related products too.
I’ve got code to remove these, in a child functions.php, which had been working, but doesn’t seem to be any longer
‘/*
* wc_remove_related_products
*
* Clear the query arguments for related products so none show.
* Add this code to your theme functions.php file.
*/
function wc_remove_related_products( $args ) {
return array();
}
add_filter(‘woocommerce_related_products_args’,’wc_remove_related_products’, 10);’and just tried this
‘/* Disable Related products on single product pages */
remove_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_output_related_products’,20);’Neither are working any more. Storefront 1.6.1
This may have been happening for a while but I’ve only noticed whilst comparing a staged Storefront 2 for issues.