Okay
  Public Ticket #3350712
Bulk Order Form
Closed

Comments

  •  5
    Carl started the conversation

    When paging through the B2B form, the message says "You've seen all of the products. Back to the top." Can you make it so that when you page to the next page, it automatically goes to the top?


    Attached files:  Bulk Order Form Paging Message.jpg

  •  2,218
    WebWizards replied

    Hi Carl,

    I'm not sure if we can add that by default as I don't know if that would work with all setups / themes.

    But I believe you can add this PHP code snippet to your site to add it:

    add_action('wp_head', function(){
        ?>
        <script>
            jQuery(document).ready(function(){
                jQuery('body').on('click', '.b2bking_bulkorder_pagination_button', function(){
                    jQuery("html, body").animate({ scrollTop: 0 }, "slow");
                }
            });
        </script>
        <?php
    });
    

    Kind regards,

    Stefan

  •  5
    Carl replied

    Hi,

    Sorry, but this does not work. Can you also get rid of the phrase "You've seen all of the products." at the bottom?

    Thanks,

    Carl

  •  2,218
    WebWizards replied

    I modified the snippet on your demo site and I believe it's solved now.

    I also added code here https://b2bdemo.o2cool.com/wp-admin/admin.php?page=edit-snippet&id=5&result=updated to change the 'you've seen all products text'.

  •  5
    Carl replied

    Thank you. I see it is working well.