Add detail to tabular view specification tab

  • Posts: 3
  • Thank you received: 0
9 years 7 months ago #227209

-- HikaShop version -- : 2.6.1
-- Joomla version -- : 2.5.6

How do I add an image(sizechart.jpg) in the tabular view tab name, "Specification". Sorry I do not have much experience with programming

Last edit: 9 years 7 months ago by zincheong.

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

  • Posts: 26274
  • Thank you received: 4045
  • MODERATOR
9 years 7 months ago #227214

Hi,

Here a documentation page which give useful information about customization.
www.hikashop.com/support/support/documen...ize-the-display.html

You need to customize the view "product / show_tabular" and add your HTML content in the zone dedicated to the "specification" tab.

Regards,


Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.

Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.

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

  • Posts: 3
  • Thank you received: 0
9 years 7 months ago #227251

Questions on "Post a comment" tab:
Is it possible to add a login page module in the "Post a comment" if the user have not logged into my website.
I know that once the user log in to the website as a registered member then they will be able to see the contents of "post a comment"

Question on "Coment" tab:
And I would like to ask how the "bought this item" works in the "votes". Can I only allow members who have bought the item to log in and comment on the item?

Thank you! :side:

Last edit: 9 years 7 months ago by zincheong.

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

  • Posts: 13201
  • Thank you received: 2322
9 years 7 months ago #227260

Hi,

1. Yes it can be possible by editing the view "product / show_tabular" and replacing that code:

echo $layout_vote_form;
By:
						if(is_null(hikashop_loadUser())){
							$tmpElement = clone($this->element);
							$tmpParams = clone($this->params);
							echo JHTML::_('content.prepare','{loadposition login}');
							$this->element = $tmpElement;
							$this->params = $tmpParams;
						}else{
							echo $layout_vote_form;
						}
And having a login module published on every menu with the position "login".

2. The bought this items is used for two things, to display on a comment that the customer who has write the comment has bought the item or not. So just an informations.
And in Configuration > Features > Vote & Comment, you can restrict the votes and the comments to only customer who bought the item in question, if it is not the case, the clients will only be able to see the votes and comments but not submit anything.

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

Time to create page: 0.068 seconds
Powered by Kunena Forum