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

How to change "Learn more" button text to "Read more" on archive pages???? #5

Closed procontentxyz closed 2 years ago

procontentxyz commented 2 years ago

How to rename "Learn more" button text to "Read more" on archive pages????

Also, Could you provide options in setting to change these words...... (Learn more, Related projects, etc)

jonas-hoebenreich commented 2 years ago

Just use the following filter: add_filter('woocommerce_product_add_to_cart_text', function(){ return 'Read more'; }, 11 ); Since this functionality is already implemented by numerous plugins (e.g. https://wordpress.org/plugins/woo-custom-add-to-cart-button/), I think I will probably not implement this feature for now.

procontentxyz commented 2 years ago

thank you it works :)