• Resolved magedmoh94

    (@magedmoh94)


    I want to hide the last ” Previous Button ” which is in the order & Payment step i use it as merged step. can i ?

    also i want to check if its possible to have an option to have ( billing & order & Payment ) in one step ..

    And thank you for your efforts for this great plugin

    • This topic was modified 7 years, 2 months ago by magedmoh94.
    • This topic was modified 7 years, 2 months ago by magedmoh94.
Viewing 1 replies (of 1 total)
  • Plugin Author SilkyPress

    (@diana_burduja)

    I’m sorry, the plugin doesn’t have the possibility to put the Billing, Order and Payment sections in one step.

    You can hide the last “previous” button by adding the following JavaScript code to your website:

    jQuery(document).ready(function($){
        $(".woocommerce-checkout").on("wpmc_after_switching_tab", function() {
            if( $(".wpmc-step-review.current").length > 0 ) {
                $("#wpmc-prev").removeClass("current");
            }
        });
    });

    Many themes offer a method to add custom JavaScript code to your website. If not, you can use the Simple Custom CSS and JS plugin to add the JavaScript code.

Viewing 1 replies (of 1 total)

The topic ‘Checkout Edit’ is closed to new replies.