Paging between products

  • Posts: 43
  • Thank you received: 0
10 years 6 months ago #193006

-- url of the page with the problem -- : maltusa.com/j3-test/index.php/malts/product/2-durst-vienna-malt
-- HikaShop version -- : latest
-- Joomla version -- : 3
-- Error-message(debug-mod must be tuned on) -- : none

Hi, I can't seem to get the paging between products to show up. Need "Next" and Prev buttons but can't seem to find where they are turned off. Thanks for your help

Please Log in or Create an account to join the conversation.

  • Posts: 2143
  • Thank you received: 747
10 years 6 months ago #193055

Hi,

See the option "Show shortcuts to other category product" here: www.hikashop.com/support/support/documen...tml#display_products


Need help with customisations of layouts, style or other site development? PM me!
(Don't forget to turn on "E-mail notification of new messages" )

Please Log in or Create an account to join the conversation.

  • Posts: 43
  • Thank you received: 0
10 years 6 months ago #193153

The "Show shortcuts to..." is set to "Yes" but the next/prev buttons are still not showing.

Please Log in or Create an account to join the conversation.

  • Posts: 84304
  • Thank you received: 13698
  • MODERATOR
10 years 6 months ago #193204

Hi,

The buttons will be displayed automatically if you have other products in the same category as the category of the product.
If that's the case and you still don't see them, then it means that either the product layout has been modified (by you or your template provider) and removed the code to handle that, or more likely that you have some caching on your website preventing you from seeing the change. In that last case, clearing the Joomla cache should fix the issue.

Please Log in or Create an account to join the conversation.

  • Posts: 43
  • Thank you received: 0
10 years 6 months ago #193770

I cleared the cache and tried again. There are products in the categories. My CSS template in the configuration is set to none because I want to set my own styles according to my template. Still no paging.

Please Log in or Create an account to join the conversation.

  • Posts: 2143
  • Thank you received: 747
10 years 6 months ago #193772

conlippert wrote: My CSS template in the configuration is set to none because I want to set my own styles according to my template.


Aaaah, that explains it. By default, the images for pref/next product are inside a sprite and loaded via CSS.

You have options: either edit the relevant view and put in your own buttons or images, or do so via your own custom CSS, or consider using the CSS from HikaShop's frontend_default.css:
.hikashop_previous_product{
	background-color: transparent !important;
	float:left;
	width: 6px;
	height: 6px;
	background:url(../images/icons/nav_products.png) no-repeat 5px -20px;
	margin-bottom:10px;
	padding:5px;
	border:1px solid #ddd;
	border-radius:3px;
	margin-right:4px
}

.hikashop_previous_product:hover{
	background:url(../images/icons/nav_products.png) no-repeat 5px 3px;
}

.hikashop_next_product{
	background-color: transparent !important;
	float:left;
	width: 6px;
	height: 6px;
	background:url(../images/icons/nav_products.png) no-repeat -30px -20px;
	margin-bottom:10px;
	padding:5px;
	border:1px solid #ddd;
	border-radius:3px;
	margin-right:4px
}

.hikashop_next_product:hover{
	background:url(../images/icons/nav_products.png) no-repeat -30px 3px;
}

Hint: If you have CSS set to "None" and anything looks strange or doesn't display, activate the default CSS at least temporarily - then you'll probably find the solution quite often yourself... ;)


Need help with customisations of layouts, style or other site development? PM me!
(Don't forget to turn on "E-mail notification of new messages" )

Please Log in or Create an account to join the conversation.

Time to create page: 0.075 seconds
Powered by Kunena Forum