Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cristianstan/cb768d356ff6fe72b741a831b2b91a4b to your computer and use it in GitHub Desktop.
Save cristianstan/cb768d356ff6fe72b741a831b2b91a4b to your computer and use it in GitHub Desktop.
Meeek SaaS: Replace Add to Cart text
<?php
function meeeksaas_add_to_cart_text_override($text){
return esc_html__('Buy Now', 'meeeksaas');
}
add_filter('meeeksaas_pricing_add_to_cart_text', 'meeeksaas_add_to_cart_text_override');
// Tutorial made for Meeek SaaS: https://codecanyon.net/item/meeek-bio-links-saas-wordpress/46935773
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment