Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Jigoshop Support – Krzysztof

    (@krzysztofk-1)

    Hi amymajken,

    You should replace payment_methods.php in your template.

    Thread Starter amymajken

    (@amymajken)

    Hi Krzysztof,
    I found that file and where to replace that wording. When I make the edits can I resave the file to the same location or should it be saved in another place so it doesn’t get overwritten on updates? Thanks!

    Hi

    Create in your theme files directory jigoshop/checkout/ and place there modified payment_methods.php

    Whenever I make this change, and only this change, the checkout page won’t load properly anymore. Should i be changing other text in here?

    <?php $order_button_text = apply_filters('jigoshop_order_button_text', __('Request Quote’, 'jigoshop')); ?>
    		<input type="submit" class="button-alt" name="place_order" id="place_order" value="<?php echo esc_attr($order_button_text); ?>" />

    Hi xarcadia,

    You can also add this code to functions.php in your theme files.

    add_filter('jigoshop_order_button_text', function($order_button_text){
        return 'custom button name';
    });
    Thread Starter amymajken

    (@amymajken)

    Hi Krzysztof,
    Sorry I was away for a while. I just updated the site as you said and it worked great. Thank you for your help with this!

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Change Place Order button text’ is closed to new replies.