Add tab on product page

  • Posts: 26227
  • Thank you received: 4035
  • MODERATOR
10 years 5 months ago #178171

Hi,

Are you sure that you do not have an error in your page ? That the tabs are working properly ?
Because the product description is displayed the same between the "show_default" and the "show_tabular".
A link to your product page will help us to tell you more about the possible problem ; like that it is the only ideas I got.

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: 47
  • Thank you received: 0
10 years 5 months ago #179354

Hi Jerome,

I can give you access to the site.
Do you have a private account to avoid to share my access on this topic ? ;)

Cheers !

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

  • Posts: 83678
  • Thank you received: 13547
  • MODERATOR
10 years 5 months ago #179375

Hi,

You can use our contact form with a link to this thread for that:
www.hikashop.com/support/contact-us.html

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

  • Posts: 26227
  • Thank you received: 4035
  • MODERATOR
10 years 5 months ago #179523

Hi,

I am not able to find a link to HikaShop in your menu, nothing pointing to a product listing or a product page
So, I display a product page myself (but without a menu) using this url

index.php?option=com_hikashop&ctrl=product&task=show&cid=6
And I saw the product page, with some content in the different tabs.
In the second tab the content is mainly black so it's difficult to see it, but the content is there.

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: 47
  • Thank you received: 0
10 years 5 months ago #179633

Hi Jerome,

I tried your link and I saw the product page without problem.
What is the difference with that link where there is no content ? It is the same product page ?!

index.php/nl/producten/producten-pellet-kachels-hout-gas-persempre/product/6-brunico

Many thanks !

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

  • Posts: 26227
  • Thank you received: 4035
  • MODERATOR
10 years 5 months ago #179640

Hi,

In your page, some other plugins/extensions are loaded and they break the jQuery lib.
Due to that, the page is displaying javascript errors.

Uncaught ReferenceError: hkjQuery is not defined

So please replace in the view "prodyct | show_tabular", the line
if(!hkjQuery) window.hkjQuery = window.jQuery;
By
if(typeof(hkjQuery) == 'undefined') window.hkjQuery = window.jQuery;
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: 48
  • Thank you received: 1
10 years 3 weeks ago #197855

Mohamed Thelji wrote: Hello,
Sure, but you'll have to use some custom fields to do that, like ""AAAAAA" or "BBBBB" custom fields that you'll restrict to only some products by using the "category" restriction.


What do you mean with category restriction ? Can you explain step by step how to do that?

Last edit: 10 years 3 weeks ago by stof.

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

  • Posts: 48
  • Thank you received: 1
10 years 3 weeks ago #197860

Jerome wrote: Hi,

As explained in the Xavier's reply, the tab is composed of two elements ; one "li" for the tab text and one "div" for the tab content.
www.hikashop.com/forum/product-category-...uct-page.html#171132
You can use the given content without specific modification or you can replace the text "hikashop_show_tabular_custom1" everywhere.

Regards,


Could you please be more specific? Can you explain step by step what to do? I tried different things but nothing works....

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

  • Posts: 12953
  • Thank you received: 1778
10 years 3 weeks ago #197878

Hello,

1. You'll have to :
- Add your product on a custom un-published category
- Use that category through the category restriction of your custom fields.

2. Firstly can you tell me what do you exactly want to do ?

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

  • Posts: 48
  • Thank you received: 1
10 years 3 weeks ago #198037

I want to have an extra tab in the tabular lay out.

And that the tab can be filled in in the backend.

I need a step by step tutorial.

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

  • Posts: 26227
  • Thank you received: 4035
  • MODERATOR
10 years 3 weeks ago #198098

Hi,

You can see the Xavier explanation:
www.hikashop.com/forum/product-category-...r-layout.html#134816

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: 59
  • Thank you received: 2
  • Hikashop Business
9 years 6 months ago #217216

Hi Xavier, sorry if I am hijacking this thread. I too, am trying to add tabs to my product and found this reference:
// The tab part
<li id="hikashop_show_tabular_custom1_li" class="hikashop_tabs_li ui-corner-top"><a onclick="displayTab('hikashop_show_tabular_custom1');" href="javascript:void(0);">My custom tab 1</a></li>
// And the content part
<div class="hikashop_tabs_content" id="hikashop_show_tabular_custom1">
// Your content
</div>
This says that you can add the above to the tabbed view, but as I am a novice to programming code, I can't see where I am supposed to add the above text. I tried adding it at the top of the module and also at the bottom, but both times it displayed nothing. Can you please give us a step by step instruction on how to display 2 tabs in the product with different text in each tab, for example Description for one tab and Technical data for the other one. Thanking you in advance,
Steve

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

  • Posts: 13201
  • Thank you received: 2322
9 years 6 months ago #217247

Hi,

Do you have read carefully that documentation ?
www.hikashop.com/support/documentation/i...ow-tabular-view.html

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

  • Posts: 59
  • Thank you received: 2
  • Hikashop Business
9 years 6 months ago #217333

Hi Xavier,
Yes I did read the documentation and I understand more how the customisation process works, but this does not explain (to a novice) how to display the second tab, and how to get the required content to display on the second tab. I inserted the above recommended text into, where I assume is the right place, see below, but this has not produced anything.
<div id="hikashop_tabs_div">
<ul class="hikashop_tabs_ul">
<li id="hikashop_show_tabular_description_li" class="hikashop_tabs_li ui-corner-top"><?php echo JText::_('PRODUCT_DESCRIPTION');?></li>
<?php if($hide_specs == 0){ ?>
<li id="hikashop_show_tabular_specification_li" class="hikashop_tabs_li ui-corner-top"><?php echo JText::_('SPECIFICATIONS');?></li>
<?php }
if($status_vote == "comment" || $status_vote == "two" || $status_vote == "both" ){
?>
<li id="hikashop_show_tabular_comment_li" class="hikashop_tabs_li ui-corner-top"><?php echo JText::_('PRODUCT_COMMENT');?></li>
<li id="hikashop_show_tabular_new_comment_li" class="hikashop_tabs_li ui-corner-top"><?php echo JText::_('PRODUCT_NEW_COMMENT');?></li>
// The tab part
<li id="hikashop_show_tabular_custom1_li" class="hikashop_tabs_li ui-corner-top"><a onclick="displayTab('hikashop_show_tabular_custom1');" href="javascript:void(0);">My custom tab 1</a></li>
// And the content part
<div class="hikashop_tabs_content" id="hikashop_show_tabular_custom1">
// Your content
</div>
<?php } ?>
Again I ask, can you please give a specific step by stem description on how this can be achieved? I think a lot of people would benefit from this as they probably simply give up and use the standard view if they can't get the tabs to work. Thanking you, Steve

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

  • Posts: 13201
  • Thank you received: 2322
9 years 6 months ago #217358

Hi,

Please replace the code of the view "product / show_tabular" by this code:

<?php
	hikashop_loadJslib('jquery');
	$js = '';
	$params = null;
	$this->params->set('vote_type','product');
	if(isset($this->element->main)){
		$product_id = $this->element->main->product_id;
	}else{
		$product_id = $this->element->product_id;
	}
	$this->params->set('vote_ref_id',$product_id);
	$this->params->set('productlayout','show_tabular');
	$layout_vote_mini = hikashop_getLayout('vote', 'mini', $this->params, $js);
	$layout_vote_listing = hikashop_getLayout('vote', 'listing', $this->params, $js);
	$layout_vote_form = hikashop_getLayout('vote', 'form', $this->params, $js);
	$config =& hikashop_config();
	$status_vote = $config->get('enable_status_vote');
// Hide or display the specifications of the product
	$hide_specs = 1;
	if($this->element->product_manufacturer_id != 0 || $this->element->product_weight != 0 || $this->element->product_width != 0 || $this->element->product_height != 0 || $this->element->product_length != 0 || @$this->element->main->product_weight != 0 || @$this->element->main->product_width != 0 || @$this->element->main->product_height != 0 || @$this->element->main->product_length != 0)
		$hide_specs = 0;
	foreach ($this->fields as $fieldName => $oneExtraField) {
		$value = '';
		if(empty($this->element->$fieldName) && !empty($this->element->main->$fieldName))$this->element->$fieldName = $this->element->main->$fieldName;
		if(isset($this->element->$fieldName))
			$value = trim($this->element->$fieldName);
		if(!empty($value)){
			$hide_specs = 0;
			break;
		}
	}

// EO Hide or Display the specifications of the product
?>
<div id="hikashop_product_top_part" class="hikashop_product_top_part">
<?php if(!empty($this->element->extraData->topBegin)) { echo implode("\r\n",$this->element->extraData->topBegin); } ?>
	<h1>
		<span id="hikashop_product_name_main" class="hikashop_product_name_main">
			<?php
			if (hikashop_getCID('product_id')!=$this->element->product_id && isset ($this->element->main->product_name))
				echo $this->element->main->product_name;
			else
				echo $this->element->product_name;
			?>
		</span>
		<?php if ($this->config->get('show_code')) { ?>
		<span id="hikashop_product_code_main" class="hikashop_product_code_main">
			<?php
			echo $this->element->product_code;
			?>
		</span>
		<?php } ?>
	</h1>
<?php if(!empty($this->element->extraData->topEnd)) { echo implode("\r\n",$this->element->extraData->topEnd); } ?>
	<?php
	$this->setLayout('show_block_social');
	echo $this->loadTemplate();
	?>
</div>
<?php if(HIKASHOP_RESPONSIVE){ ?>
	<div class="<?php echo HK_GRID_ROW; ?>">
<?php } ?>
<div id="hikashop_product_left_part" class="hikashop_product_left_part <?php echo HK_GRID_COL_6; ?>">
	<?php
	if(!empty($this->element->extraData->leftBegin)) { echo implode("\r\n",$this->element->extraData->leftBegin); }

	//LAYOUT show_block_img
	$this->row = & $this->element;
	$this->setLayout('show_block_img');
	echo $this->loadTemplate();
	?>
	<div id="hikashop_product_description_main_mini" class="hikashop_product_description_main_mini">
		<?php
		//DISPLAY the product description
		if(!empty($this->element->product_description)){
			$resume = substr(strip_tags(preg_replace('#<hr *id="system-readmore" */>.*#is','',$this->element->product_description)),0,300);
			if (!empty($this->element->product_description) && strlen($this->element->product_description)>300)
				$resume .= " ...<a href='#hikashop_show_tabular_description'>".JText::_('READ_MORE')."</a>";
			echo JHTML::_('content.prepare',$resume);
		}
		?>
	</div>
	<?php if(!empty($this->element->extraData->leftEnd)) { echo implode("\r\n",$this->element->extraData->leftEnd); } ?>
</div>
<div id="hikashop_product_right_part" class="hikashop_product_right_part <?php echo HK_GRID_COL_6; ?>">
	<?php
	if(!empty($this->element->extraData->rightBegin))
		echo implode("\r\n",$this->element->extraData->rightBegin);
	?>
	<span id="hikashop_product_price_main" class="hikashop_product_price_main">
		<?php
		//LAYOUT listing_price
		if ($this->params->get('show_price')) {
			$this->row = & $this->element;
			$this->setLayout('listing_price');
			echo $this->loadTemplate();
		}
		?>
	</span><br />
	<div id="hikashop_product_vote_mini" class="hikashop_product_vote_mini">
		<?php
		//LAYOUT show the rating stars
		if($this->params->get('show_vote_product') == '-1'){
			$this->params->set('show_vote_product',$config->get('show_vote_product'));
		}
		if($this->params->get('show_vote_product')){
			echo $layout_vote_mini;
		}
		?>
	</div>
	<?php
	if($this->params->get('characteristic_display')!='list'){
		//LAYOUT show_block_charasteristic
		$this->setLayout('show_block_characteristic');
		echo $this->loadTemplate();
		?>
		<br />
		<?php
	}
	$form = ',0';
	if (!$this->config->get('ajax_add_to_cart', 1)) {
		$form = ',\'hikashop_product_form\'';
	}
	if (hikashop_level(1) && !empty ($this->element->options)) {
	?>
		<div id="hikashop_product_options" class="hikashop_product_options">
			<?php
			//LAYOUT option
			$this->setLayout('option');
			echo $this->loadTemplate();
			?>
		</div>
		<br />
		<?php
		$form = ',\'hikashop_product_form\'';
		if ($this->config->get('redirect_url_after_add_cart', 'stay_if_cart') == 'ask_user') {
		?>
			<input type="hidden" name="popup" value="1"/>
		<?php
		}
	}
	if (!$this->params->get('catalogue') && ($this->config->get('display_add_to_cart_for_free_products') ||  ($this->config->get('display_add_to_wishlist_for_free_products', 1) && hikashop_level(1) && $this->params->get('add_to_wishlist') && $config->get('enable_wishlist', 1)) || !empty ($this->element->prices))) {
		if (!empty ($this->itemFields)) {
			$form = ',\'hikashop_product_form\'';
			if ($this->config->get('redirect_url_after_add_cart', 'stay_if_cart') == 'ask_user') {
			?>
				<input type="hidden" name="popup" value="1"/>
			<?php
			}
			//LAYOUT show_block_custom_item
			$this->setLayout('show_block_custom_item');
			echo $this->loadTemplate();
		}
	}
	$this->formName = $form;
	if($this->params->get('show_price')){ ?>
		<span id="hikashop_product_price_with_options_main" class="hikashop_product_price_with_options_main">
		</span>
	<?php } ?>
	<?php $contact = $this->config->get('product_contact',0); ?>
	<div id="hikashop_product_contact_main" class="hikashop_product_contact_main">
		<?php
		if (hikashop_level(1) && ($contact == 2 || ($contact == 1 && !empty ($this->element->product_contact)))) {
			$empty = '';
			$params = new HikaParameter($empty);
			global $Itemid;
			$url_itemid='';
			if(!empty($Itemid)){
				$url_itemid='&Itemid='.$Itemid;
			}
			echo $this->cart->displayButton(JText :: _('CONTACT_US_FOR_INFO'), 'contact_us', $params, hikashop_completeLink('product&task=contact&cid=' . $this->element->product_id.$url_itemid), 'window.location=\'' . hikashop_completeLink('product&task=contact&cid=' . $this->element->product_id.$url_itemid) . '\';return false;');
		}
		?>
	</div>
	<?php
	if(!empty($this->element->extraData->rightMiddle))
		echo implode("\r\n",$this->element->extraData->rightMiddle);
	?>
	<span id="hikashop_product_id_main" class="hikashop_product_id_main">
		<input type="hidden" name="product_id" value="<?php echo $this->element->product_id; ?>" />
	</span>
	<br />
<?php if(empty ($this->element->characteristics) || $this->params->get('characteristic_display')!='list'){ ?>
		<div id="hikashop_product_quantity_main" class="hikashop_product_quantity_main"><?php
			//LAYOUT quantity
			$this->row = & $this->element;
			$this->ajax = 'if(hikashopCheckChangeForm(\'item\',\'hikashop_product_form\')){ return hikashopModifyQuantity(\'' . $this->row->product_id . '\',field,1' . $form . ',\'cart\'); } else { return false; }';
			$this->setLayout('quantity');
			echo $this->loadTemplate();
		?></div>
<?php
	}
	//LAYOUT show_product_product_files
	$this->setLayout('show_block_product_files');
	echo $this->loadTemplate();

	if(HIKASHOP_J30) {
		$this->setLayout('show_block_tags');
		echo $this->loadTemplate();
	}

	if(!empty($this->element->extraData->rightEnd))
		echo implode("\r\n",$this->element->extraData->rightEnd);
?>
</div>
<?php if(HIKASHOP_RESPONSIVE){ ?>
	</div>
<?php } ?>
	<input type="hidden" name="cart_type" id="type" value="cart"/>
	<input type="hidden" name="add" value="1"/>
	<input type="hidden" name="ctrl" value="product"/>
	<input type="hidden" name="task" value="updatecart"/>
	<input type="hidden" name="return_url" value="<?php echo urlencode(base64_encode(urldecode($this->redirect_url)));?>"/>
</form>
<div id="hikashop_product_bottom_part" class="hikashop_product_bottom_part show_tabular">
	<div id="hikashop_tabs_div">
		<ul class="hikashop_tabs_ul">
			<li id="hikashop_show_tabular_description_li" class="hikashop_tabs_li ui-corner-top"><?php echo JText::_('PRODUCT_DESCRIPTION');?></li>
			<?php if($hide_specs == 0){ ?>
			<li id="hikashop_show_tabular_specification_li" class="hikashop_tabs_li ui-corner-top"><?php echo JText::_('SPECIFICATIONS');?></li>
			<?php }
			if($status_vote == "comment" || $status_vote == "two" || $status_vote == "both" ){
			?>
			<li id="hikashop_show_tabular_comment_li" class="hikashop_tabs_li ui-corner-top"><?php echo JText::_('PRODUCT_COMMENT');?></li>
			<li id="hikashop_show_tabular_new_comment_li" class="hikashop_tabs_li ui-corner-top"><?php echo JText::_('PRODUCT_NEW_COMMENT');?></li>
			<?php } ?>

			<!-- Your new tabs -->
			<li id="hikashop_show_tabular_custom1_li" class="hikashop_tabs_li ui-corner-top"><?php echo JText::_('CUSTOM_TAB_1');?></li>
			<li id="hikashop_show_tabular_custom2_li" class="hikashop_tabs_li ui-corner-top"><?php echo JText::_('CUSTOM_TAB_2');?></li>
			<!-- EO Your new tabs -->

		</ul>
		<?php
		if(!empty($this->element->extraData->bottomBegin))
			echo implode("\r\n",$this->element->extraData->bottomBegin);
		?>

		<!-- Your new tabs contents -->
		<div class="hikashop_tabs_content" id="hikashop_show_tabular_custom1">
			Content 1
		</div>
		<div class="hikashop_tabs_content" id="hikashop_show_tabular_custom2">
			Content 2
		</div>
		<!-- EO Your new tabs contents -->

		<div class="hikashop_tabs_content" id="hikashop_show_tabular_description">
			<div id="hikashop_product_description_main" class="hikashop_product_description_main">
				<?php
				echo JHTML::_('content.prepare',preg_replace('#<hr *id="system-readmore" */>#i','',$this->element->product_description));
				?>
			</div>
			<span id="hikashop_product_url_main" class="hikashop_product_url_main">
				<?php
				if (!empty ($this->element->product_url)) {
					//DISPLAY the manufacturer
					echo JText :: sprintf('MANUFACTURER_URL', '<a href="' . $this->element->product_url . '" target="_blank">' . $this->element->product_url . '</a>');
				}
				?>
			</span>
		</div>
		<?php if($hide_specs == 0){ ?>
		<div class="hikashop_tabs_content" id="hikashop_show_tabular_specification">
		<?php
			//LAYOUT show_block_dimensions
			$this->setLayout('show_block_dimensions');
			echo $this->loadTemplate();
			if(!empty($this->fields)){
				//LAYOUT show_block_custom_main
				$this->setLayout('show_block_custom_main');
				echo $this->loadTemplate();
			}
		?>
		</div>
		<?php }
if($status_vote == "comment" || $status_vote == "two" || $status_vote == "both" ){ ?>
<form action="<?php echo hikashop_currentURL() ?>" method="post" name="hikashop_comment_form" id="hikashop_comment_form">
		<?php
		if(!empty($this->element->extraData->bottomMiddle))
			echo implode("\r\n",$this->element->extraData->bottomMiddle);
		?>
			<div class="hikashop_tabs_content" id="hikashop_show_tabular_comment">
				<div id="hikashop_vote_listing" data-type="product" class="hikashop_product_vote_listing">
					<?php
						//Layout show the comment listing
						echo $layout_vote_listing;
					?>
				</div>
			</div>
			<div class="hikashop_tabs_content" id="hikashop_show_tabular_new_comment">
				<div id="hikashop_vote_form" data-type="product" class="hikashop_product_vote_form">
					<?php
						//Layout show the comment form
						echo $layout_vote_form;
					?>
				</div>
			</div>
</form>
<?php } ?>
<input type="hidden" name="selected_tab" id="selected_tab" value="hikashop_show_tabular_description"/>
		<?php
		if(!empty($this->element->extraData->bottomEnd))
			echo implode("\r\n",$this->element->extraData->bottomEnd);
		?>
	</div>
</div>
<script type="text/javascript">
	if(typeof(hkjQuery) == "undefined") window.hkjQuery = window.jQuery;
	window.hikashop.ready( function(){
		var selectedTab = hkjQuery( "#selected_tab" ).val();
		hkjQuery("#hikashop_tabs_div").children("div").css("display","none");
		hkjQuery("#"+selectedTab+"_li").addClass("hikashop_tabs_li_selected");
		hkjQuery("#"+selectedTab).css("display","inherit");
		hkjQuery("#hikashop_tabs_div .hikashop_tabs_ul li").click(function(){
			var currentLi = hkjQuery(this).attr("id");
			var currentDiv = currentLi.replace("_li","");
			hkjQuery("#hikashop_tabs_div").children("div").css("display","none");
			hkjQuery("#hikashop_tabs_div").children("form").children("div").css("display","none");
			hkjQuery("#"+currentDiv).css("display","inherit");
			hkjQuery(".hikashop_tabs_li_selected" ).removeClass("hikashop_tabs_li_selected");
			hkjQuery("#"+currentLi).addClass("hikashop_tabs_li_selected");
		});
	});
</script>

You will see html comments around the code added for the new tabs.

Hope this will help you.

The following user(s) said Thank You: avonrivercs

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

  • Posts: 59
  • Thank you received: 2
  • Hikashop Business
9 years 6 months ago #217680

Hi Xavier,
Thank you for providing the code for adding an extra tab, it did work and it was what I asked for. However, I found what I was looking for in another part of the forum. What I thought I wanted to do was to add another tab on the product page, and then add the content for that tab there. It turns out that I can add a custom field, add my content and this will appear on the specifications tab of the product. This was what I wanted in the first place. Thank you for your time in this matter,
Steve :)

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

  • Posts: 78
  • Thank you received: 3
9 years 4 months ago #225427

I am able to create the tab successfully.
I am able to add the content, however, it is not displayed when I load the page. Just the active tab and no content. I investigated using the "Inspect element in my browser and it's adding a display:none to the active view of the custom tab when it's active.

This is the code in the display view that I entered:

<div class="hikashop_tabs_content" id="hikashop_show_tabular_listen">adding cone</div>

and this it what is displayed:
<div class="hikashop_tabs_content" id="hikashop_show_tabular_listen" style="display: none;">adding cone</div>

I know the display:none is there to hide the content when it's not active, but I must have left something out. The javascript at the bottom doesn't seem to work on this tabs content.

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

  • Posts: 83678
  • Thank you received: 13547
  • MODERATOR
9 years 4 months ago #225458

Hi,

Could you give a link to the product page so that we could look at the situation ?

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

  • Posts: 78
  • Thank you received: 3
9 years 4 months ago #225461

It's currently on localhost, so I moved it to my host.

Part of the message is hidden for the guests. Please log in or register to see it.

Last edit: 9 years 4 months ago by webhelpus.

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

  • Posts: 13201
  • Thank you received: 2322
9 years 4 months ago #225496

Hi,

It is indeed strange, that should be working.
Could you try to change the ids from "hikashop_show_tabular_listen_li" to "listen_li" and "hikashop_show_tabular_listen" to "listen" ?

I tested it by editing the html in the browser console and it is working fine. We will try to reproduce the issue on our end and debug the code to make it working with an id like "hikashop_show_tabular_listen".

The following user(s) said Thank You: webhelpus

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

Time to create page: 0.136 seconds
Powered by Kunena Forum