VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: Hungphieu on February 01, 2018, 05:53:08 AM

Title: "Add to cart" included in the product details
Post by: Hungphieu on February 01, 2018, 05:53:08 AM
Hi
Can anyone help me how to add a button "Add to cart" included in the product details?

I copied this code (.../templates/t3_bs3_blank/html/com_virtuemart/productdetails/default_addtocart.php)

<span class="addtocart_button2">
                <?php if ($this->product->orderable) { ?>
                    <button type="submit" value="<?php echo $button_lbl ?>" title="<?php echo JText::_('COM_VIRTUEMART_CART_ADD_TO');?>" class="addtocart-button cart-click"><?php echo JText::_('COM_VIRTUEMART_CART_ADD_TO'); ?><span>&nbsp;</span></button>
                    <?php }else { ?>
                    <span title="<?php echo JText::_('COM_VIRTUEMART_ADDTOCART_CHOOSE_VARIANT');?>" class="addtocart-button addtocart-button-disabled cart-click"><?php echo JText::_('COM_VIRTUEMART_ADDTOCART_CHOOSE_VARIANT'); ?></span>
                    <?php ?>
                </span>



and pasted below this code
<?php  if ($this->product->product_desc) { ?>
        <h2> <?php echo JText::_('COM_VIRTUEMART_PRODUCT_DESC_TITLE'); ?></h2>
        <div>
        <?php echo '<div class="desc">' .$this->product->product_desc.'</div>'?>
         <?php
 if (!empty($this->product->customfieldsSorted['tags'])) {
$this->position 'tags';
echo '<div class="tags">' .$this->loadTemplate('tags').'</div>';
 }
// Product custom ?>



But not working.
I'm using Joomla 3.4.0 Virtuemart 3.0.6.4
Thank all !
Title: Re: "Add to cart" included in the product details
Post by: jenkinhill on February 01, 2018, 11:29:43 AM
You should update your seriously old Joomla & VirtueMart versions before trying to make template overrides.  https://forum.virtuemart.net/index.php?topic=118683.0