• Resolved AngeloLazzari

    (@angelolazzari)


    Hi, great great plugin, congrats!

    is possible to move the button on the top ?

    thanks
    Angelo

    The page I need help with: [log in to see the link]

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author SilkyPress

    (@diana_burduja)

    Hello Angelo,

    you can move the buttons to the top, right after the steps navigation, as in this screenshot, by adding the following JavaScript code to your website:

    jQuery(document).ready(function( $ ){
        $( '.wpmc-nav-wrapper' ).detach().insertAfter( '.wpmc-tabs-wrapper' );
    });
    
    Thread Starter AngeloLazzari

    (@angelolazzari)

    Hi, thanks for the reply!

    i put the query in the footer, but no way… did I do correct?

    thank you very much!

    Plugin Author SilkyPress

    (@diana_burduja)

    I don’t see the JavaScript code on your checkout page. At least not on the linked website.

    Would you open the checkout page’s HTML source code (Ctrl + U in the browser) and search for the inserted JavaScript code?

    Thread Starter AngeloLazzari

    (@angelolazzari)

    yes, now the code is there, but the buttons are not moved on top.

    Thank you very much
    Angelo

    Plugin Author SilkyPress

    (@diana_burduja)

    Right, the code is there now.

    Note that that is a JavaScript code. In order for it to be executed by the browser it needs to be wrapped in the <script type=”text/javascript”></script> tags.

    Try adding the following:

    <script type="text/javascript">
    jQuery(document).ready(function( $ ){
        $( '.wpmc-nav-wrapper' ).detach().insertAfter( '.wpmc-tabs-wrapper' );
    });
    </script>
    • This reply was modified 6 years, 1 month ago by SilkyPress.
    • This reply was modified 6 years, 1 month ago by SilkyPress.
    Thread Starter AngeloLazzari

    (@angelolazzari)

    ok, thank you very much!!! now is working!!!!
    Angelo

    Thread Starter AngeloLazzari

    (@angelolazzari)

    @diana_burduja thanks for your help!! one more thing: how can i put buttons on top and bottom of the form?

    thanks
    Angelo

    Plugin Author SilkyPress

    (@diana_burduja)

    Putting the buttons on top and bottom of the form is easy, just remove the detach() function, but the buttons won’t work anymore, as the button’s ids will be doubled.

    I’m sure there is a solution, but it’s not a trivial one. You’ll have to hire a developer to customize you the plugin so the buttons show up both on top and the bottom of the form.

    Thread Starter AngeloLazzari

    (@angelolazzari)

    ah, ok thank you very much!!! really apreciated!!! take care!!!

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

The topic ‘button position’ is closed to new replies.