Site logo

Archived topic

I need to modify the woocommerce plugin

1 reply · Started by Alzahraa on November 12, 2022

Viewing posts 1–2 of 2

I need to modify the woocommerce plugin, my site is a donation site for a charity, so when adding products to cart, instead of the (back to shop) button I want to display the (back to products) button,
On the checkout page, instead of the word (price) I want the phrase (donation amount)
How I can do these modifieng ?

Hi there,

Woocommerce provides a bunch of Filter Hooks that you can use in your own PHP Snippets to make those kinds of changes:

1. Chang the the return to shop label:

add_filter('woocommerce_return_to_shop_text', 'prefix_store_button');
/**
 * Change 'Return to Shop' text on button
 */
function prefix_store_button() {
        $store_button = "Back to Products"; // Change text as required

        return $store_button;
}

2. Can you share a screenshot of that ? As by default i do not see the Word Price in the Checkout. Just Subtotal and Total.

This archived topic is closed to new replies.