Does anyone know what is the form of PRESTASHOP's category URLs?
What if I want to use other parameters like pagination and number of products to get per request?
For instance, I need to get products under category_id = 33, page = 5, and 10 products per page?
I am hoping there is something similar to the URL of a product.
$productUrl = 'http://example.com/index.php?controller=product&id_product=' . $productId;
Thank you so much in advanced for any help. It is highly appreciated.