lenet
Member
hello I work on a marketplace. and I want to find a way to define some product as ads. And change the title of the "Add to cart" button to "Contact advertiser". Thank you for putting me on a track.
https://www.templatemonster.com/help/woocommerce-how-to-change-add-to-cart-button-text.htmlhello I work on a marketplace. and I want to find a way to define some product as ads. And change the title of the "Add to cart" button to "Contact advertiser". Thank you for putting me on a track.
https://wordpress.org/plugins/woo-custom-add-to-cart-button/hello I work on a marketplace. and I want to find a way to define some product as ads. And change the title of the "Add to cart" button to "Contact advertiser". Thank you for putting me on a track.
add_filter('woocommerce_product_single_add_to_cart_text', 'binary_carpenter_replace_single_text');
function binary_carpenter_replace_single_text()
{
return 'Contact advertiser';
}
thank you Brother!simply create a new product as external/affiliate product type
add all details for new product
then change button message to "contact advertiser", effectively replaces "add to cart" for that product only.
easy peasy!