- Posts: 23
- Thank you received: 0
Shop Cart button css
Would let me know please how do I place the "add cart button" at bottom of the page?
Many Thanks and Kind Regards
Charles
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Thank you for you're help
at moment the
layout order is
"Price"
"add to cart"
"description text"
I want it the layout to be
"Price"
"description text"
"add to cart"
Many Thanks and Kind Regards
Charles
Please Log in or Create an account to join the conversation.
<div id="hikashop_product_right_part">
"add to cart"
<div>
<div id="hikashop_product_bottom_part">
Porduct info text
<div>
I want be this way
<div id="hikashop_product_right_part">
"Product info text"
<div>
<div id="hikashop_product_bottom_part">
"add to cart"
<div>
Please Log in or Create an account to join the conversation.
You didn't say if you were talking about the listing of products or the product page.
For the listing of products you will have to edit one of the files listing_* of the view product (it depends on the item box layout you're using in your module/menu)
For the product page you can edit the file show of the view product.
Please Log in or Create an account to join the conversation.
Thank once again for you're fantastic help
It the product page I'm editing
Sorry is it Display->Views
I can find
Front- end product- cart
but where can I find "view product."?
Many Thanks and Kind Regards
Charles
Please Log in or Create an account to join the conversation.
Thank once again for you're fantastic help
It the product page I'm editing
Sorry is it Display->Views
I can find
Front- end product- cart
but where can I find "view product."?
Many Thanks and Kind Regards
Charles
Please Log in or Create an account to join the conversation.
can use the
<a class="hikashop_html_add_to_cart_link" href="/index.php?option=com_hikashop&ctrl=product&task=updatecart&quantity=1&checkout=1&product_id=1"></a>
to add a cart button to the bottom of the page and remove the default button?
Please Log in or Create an account to join the conversation.
You should have few results with one of them having "product" in the column "view".
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
I found "show product" but where's
class ="button hikashop_cart_input_button"
please?
or would it be easier to do the method
<a class="hikashop_html_add_to_cart_link" href="mysite.com/index.php?option=com_hikashop&ctrl=product&task=updatecart&quantity=1&checkout=1&product_id=1"></a>
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
<?php $this->row =& $this->element;
$this->setLayout('quantity');
echo $this->loadTemplate();?>
But everytime I move it to a lower position the cart button does not show for example moved it here
<?php if(!empty($this->fields)){?>
<div id="hikashop_product_custom_info" class="hikashop_product_custom_info">
<h4><?php echo JText::_('SPECIFICATIONS');?></h4>
<table width="100%">
<?php
foreach($this->fields as $fieldName => $oneExtraField) {
if(!empty($this->element->$fieldName)){ ?>
<tr>
<td class="key">
<span id="hikashop_product_custom_name_<?php echo $oneExtraField->field_id;?>" class="hikashop_product_custom_name"><span id="hikashop_product_quantity_main" class="hikashop_product_quantity_main"><?php
$this->row =& $this->element;
$this->setLayout('quantity');
echo $this->loadTemplate();
?>
</span>
Please Log in or Create an account to join the conversation.
Try to put it just before that:
<span id="hikashop_product_url_main" class="hikashop_product_url_main">
And don't forget to move the closing span tag as well.
Please Log in or Create an account to join the conversation.
That worked great!
You might thinking more about using the zoo template Layouts with element positions to arrange content using Drag 'n Drop
zoo www.yootheme.com/zoo/
Consider how useful that will be?
Many Thanks once again for great customer services
Charles
Please Log in or Create an account to join the conversation.
And with CSS, you can already do a lot.
Please Log in or Create an account to join the conversation.