wc-donation / wc-donation-platform

Donation Platform for WooCommerce unleashes the power of WooCommerce for your online fundraising, crowdfunding & crowdsponsoring
https://www.wc-donation.com/
GNU General Public License v2.0
41 stars 10 forks source link

Related products filter not working #4

Closed procontentxyz closed 2 years ago

procontentxyz commented 2 years ago

I am trying to change "related projects" title to "Items you may like" usinge woo related products args: title

But its not working, its persist at relates projects.

Why default woo filter not working???

Couls you check in donation plugin code????

jonas-hoebenreich commented 2 years ago

The plugin also uses this filter with the default priority of 10. Accordingly, you need to set the priority a bit higher.

add_action( 'woocommerce_product_related_products_heading', function(){ return 'Items you may like'; }, 11 );

procontentxyz commented 2 years ago

Its working thank you :)