• Resolved OwnYou

    (@ownyou)


    I have a problem with the vendor list modification.
    1.I don’t know how to change the number of displayed sellers on the website.
    2.I don’t know how to translate the numbers “next” and “prev” – loco translate does not translate it.
    3.Can I display all sellers on one page or do lazy load as for products?

Viewing 1 replies (of 1 total)
  • Hi @ownyou, our replies are inline :

    1. I don’t know how to change the number of displayed sellers on the website.

    >> Can you please share a screenshot explaining the query, so we can help you out accordingly.

    2. I don’t know how to translate the numbers “next” and “prev” – loco translate does not translate it.

    >> Please click on “sync” option and then check again.

    3. Can I display all sellers on one page or do lazy load as for products?

    >> In order to that you have to remove the pagination. For this add this code to the function.php of the current active theme :

    add_filter('wcmp_vendor_list_vendors_query_args', 'test_function');
    function test_function($args) {
          $args = array(
                   'number' => -1,
               );
           return $args;
    }

    Let us know if you have any further queries.

Viewing 1 replies (of 1 total)
  • The topic ‘vendor list edit’ is closed to new replies.