Move specifications above add to shopping cart
- Deecommerce
-
Topic Author
- Offline
Less
More
11 years 3 months ago - 11 years 3 months ago #206039
by Deecommerce
Move specifications above add to shopping cart was created by Deecommerce
-- url of the page with the problem -- :
watches4watch.com/nl/michael-kors-outlet...-kors-mk5626-horloge
-- HikaShop version -- : 2.5.0
-- Joomla version -- : 3.4.1
-- PHP version -- : 5.4.33
:dry: Hopefully you can help me... I'm trying to set the specification "levertijd" above the shopping cart at the product page. Edit a couple of view, but can't seem to find the one or having the wrong code.
Can you help me with the correct view and code?
Thanks in advance! :oops:
-- HikaShop version -- : 2.5.0
-- Joomla version -- : 3.4.1
-- PHP version -- : 5.4.33
:dry: Hopefully you can help me... I'm trying to set the specification "levertijd" above the shopping cart at the product page. Edit a couple of view, but can't seem to find the one or having the wrong code.
Can you help me with the correct view and code?
Thanks in advance! :oops:
Last edit: 11 years 3 months ago by Deecommerce.
Please Log in or Create an account to join the conversation.
11 years 3 months ago #206043
by Xavier
Replied by Xavier on topic Move specifications above add to shopping cart
Hi,
What do you mean by "above the shopping cart" ? The price and add to cart part of the product page ?
If it is, you have to edit the view "product / show_tabular", remove the code:
And move the code:
After:
What do you mean by "above the shopping cart" ? The price and add to cart part of the product page ?
If it is, you have to edit the view "product / show_tabular", remove the code:
Code:
<li id="hikashop_show_tabular_specification_li" class="hikashop_tabs_li ui-corner-top"><?php echo JText::_('SPECIFICATIONS');?></li>
Code:
<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>
Code:
<?php
if(!empty($this->element->extraData->rightBegin))
echo implode("\r\n",$this->element->extraData->rightBegin);
?>
Please Log in or Create an account to join the conversation.
- Deecommerce
-
Topic Author
- Offline
11 years 3 months ago #206138
by Deecommerce
Replied by Deecommerce on topic Move specifications above add to shopping cart
Thank you for the response. That was exactly the idea. I made the changes as you provided, but now I don't see the specifications anymore.
Please Log in or Create an account to join the conversation.
11 years 3 months ago #206145
by Xavier
Replied by Xavier on topic Move specifications above add to shopping cart
Hi,
My bad, please rename or remove the class and id values:
class="hikashop_tabs_content" id="hikashop_show_tabular_specification"
My bad, please rename or remove the class and id values:
class="hikashop_tabs_content" id="hikashop_show_tabular_specification"
Please Log in or Create an account to join the conversation.
Time to create page: 0.197 seconds