Hi David,
is it possible to set the number of merchants output via shortcode rather than have all of them output at once?
Thanks,
Alex
Hi Alex,
The prices are selected by the SQL generated at line 257 of pto_product.php, towards the end you'll find:
ORDER BY price
...simply REPLACE that with, for example;
ORDER BY price LIMIT 3
...to show maximum 3 merchants...
Cheers, David.
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi Alex,
The prices are selected by the SQL generated at line 257 of pto_product.php, towards the end you'll find:
ORDER BY price
...simply REPLACE that with, for example;
ORDER BY price LIMIT 3
...to show maximum 3 merchants...
Cheers,
David.