- Posts: 73
- Thank you received: 2
Products ordering in custom carousel module
10 years 9 months ago - 10 years 9 months ago #223333
by mypetfly
Products ordering in custom carousel module was created by mypetfly
-- HikaShop version -- : 2.6.0
-- Joomla version -- : 3.4.5
-- PHP version -- : 5.3.29
-- Browser(s) name and version -- : Firefox 41.0.2
-- Error-message(debug-mod must be tuned on) -- : No message
Hello,
I am using 3rd party extension to show products as responsive carousel. It works and looks perfect, but I'd like to change products ordering (module arrange it by product id). Currently I see in the sorce code for the module following code:
$order = " ORDER BY b.product_id DESC";
$query = "SELECT DISTINCT b.product_id AS id, a.category_id AS catid, b.product_name AS name, b.product_description AS descr, b.product_alias AS alias, b.product_tax_id AS tax
FROM #__hikashop_product_category AS a
LEFT JOIN #__hikashop_product AS b ON a.product_id = b.product_id
WHERE product_published = 1 ".$where." GROUP BY b.product_id ".$order;
I'd like to use hikashop ordering (when "Direct sub elements" is selected). How I can implements this?
Which hikashop tables store ordering?
-- Joomla version -- : 3.4.5
-- PHP version -- : 5.3.29
-- Browser(s) name and version -- : Firefox 41.0.2
-- Error-message(debug-mod must be tuned on) -- : No message
Hello,
I am using 3rd party extension to show products as responsive carousel. It works and looks perfect, but I'd like to change products ordering (module arrange it by product id). Currently I see in the sorce code for the module following code:
$order = " ORDER BY b.product_id DESC";
$query = "SELECT DISTINCT b.product_id AS id, a.category_id AS catid, b.product_name AS name, b.product_description AS descr, b.product_alias AS alias, b.product_tax_id AS tax
FROM #__hikashop_product_category AS a
LEFT JOIN #__hikashop_product AS b ON a.product_id = b.product_id
WHERE product_published = 1 ".$where." GROUP BY b.product_id ".$order;
I'd like to use hikashop ordering (when "Direct sub elements" is selected). How I can implements this?
Which hikashop tables store ordering?
Last edit: 10 years 9 months ago by mypetfly.
Please Log in or Create an account to join the conversation.
10 years 9 months ago #223338
by nicolas
Replied by nicolas on topic Products ordering in custom carousel module
Hi,
Change b.product_id by a.ordering in your query and that should do it.
Change b.product_id by a.ordering in your query and that should do it.
Please Log in or Create an account to join the conversation.
10 years 9 months ago #223522
by mypetfly
Replied by mypetfly on topic Products ordering in custom carousel module
This helped, thank you very much!
Please Log in or Create an account to join the conversation.
Time to create page: 0.207 seconds