Home / How To Change The Add To Cart Label
Duplicate Snippet

Embed Snippet on Your Site

How To Change The Add To Cart Label

Change the 'Add To Cart' button text to custom text like 'Add To Order' on wholesale order forms

Code Preview
php
<?php
function filterAddToCartLabel($actionHtml , $product , $alternate) {
    $actionHtml = str_replace('Add To Cart', 'Add To Order', $actionHtml);
    return $actionHtml;
}
add_filter('wwof_filter_product_item_action_controls', 'filterAddToCartLabel', 10, 3);

Comments

Add a Comment