Site logo

[Support request] I need to modify the woocommerce plugin

Home Forums Support [Support request] I need to modify the woocommerce plugin

Home Forums Support I need to modify the woocommerce plugin

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2412355
    Alzahraa

    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 ?

    #2412814
    David
    Staff
    Customer Support

    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.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.