Okay
  Public Ticket #3206997
Wholesale order form pagination
Closed

Comments

  • Gaston Torio started the conversation

    Is there a way to put pagination

    https://mayorista.santeriaoriente.com/pagina-prueba/

    There are more articles and the message comes out
    You have seen all the products. go back up

    Attached files:  InkedCaptura nueva.jpg

  •  1,860
    WebWizards replied

    Hello Gaston,

    At the moment that cream form does not support pagination yet. This is something we are looking to add soon - we're hoping we will have an update with this feature ready in the next few weeks.


    Until that is ready, you can add the following PHP code snippet to increase the number of products shown by that form:

    add_filter('b2bking_search_results_number_order_form_cream', function($limit){
         return 500;
    }, 10, 1);

    (by default the form shows 100 entries, the above snippet will make it 500, but you can set any number).

    A PHP snippet can be added to functions.php, or by following our guide here: https://woocommerce-b2b-plugin.com/docs/how-to-add-a-snippet-php-or-js/


    Kind regards,

    Stefan

  •   Gaston Torio replied privately
  •  1,860
    WebWizards replied

    Hi Gaston,


    Do you mean to add the order form under variable products with all the variations of that product?


    Currently that is not possible but I think we may be able to provide a snippet to do that - I can check.