Hello
In BEAR you not need checking products – use filtering: apply filter your logic, and then apply bulk operation(s) for filtered scope of the products
Also watch please: https://bulk-editor.com/video
Hello @mediawebster ,
I meant pagination – https://prnt.sc/9ASOgnwrwqvR I can only choose 5 or 100. In this video you can select from bigger list, even 100: https://youtu.be/zTCi99ThEwo?si=pGohyu26gip-YGl7&t=38 Here is a screenshot: https://prnt.sc/G78r2i7LXPHZ
Hello @marcizus
Selection more than 10 from admin panel is premium feature, but you can resolve it by hook woobe_set_per_page_value, just place next code into file functions.php:
add_filter(‘woobe_set_per_page_value’, function($per_page){
return 100;
}, 10);
Do not place more than 100 per page if you have sharehosting, if you have your own VPS you can place even 500 products per page
-
This reply was modified 1 month, 3 weeks ago by
mediawebster.
Hello,
and thank you. We use sharehosting. Is 100 a safe limit?
P.S. you can close this ticket.
Yes, 100 +- is safe, but depends of the hosting, maybe and 200 will be good for your site, just test the code in fuctions.php
Welcome!