TOPIC: Add to Cart add to the list of products.

Add to Cart add to the list of products. 9 years 1 month ago #7065

  • grupodwe
  • grupodwe's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 4
  • Karma: 0
Good morning,

want to add the button directly adding to cart on the product list. Similar to how we have other projects as http://www.farmaciauniversal24h.com/tienda-online/facial/limpieza-facial-y-ojos.html

thank you very much
The administrator has disabled public write access.

Re: Add to Cart add to the list of products. 9 years 1 month ago #7073

  • crystal_moon
  • crystal_moon's Avatar
  • OFFLINE
  • Senior Boarder
  • Posts: 47
  • Thank you received: 10
  • Karma: 2
Hi,
If you want to add the button directly adding to cart on the product list, you can to try edit files:
'templates/ot_malesuada/css/preset-style-1.css' line 545:
span.addtocart-button input.addtocart-button{
	color: #FFFFFF;
	background-color: #7FDAE0;
	background-image: none;
	border-color: transparent;
}
change to
.product .spacer span.addtocart-button input.addtocart-button{
	color: #FFFFFF;
	background-color: #7FDAE0;
	background-image: none;
	border-color: transparent;
}


'templates/ot_malesuada/css/preset-style-2.css' line 545:
span.addtocart-button input.addtocart-button{
	color: #FFFFFF;
	background-color: #ECBB53;
	background-image: none;
	border-color: transparent;
}
change to
.product .spacer span.addtocart-button input.addtocart-button{
	color: #FFFFFF;
	background-color: #ECBB53;
	background-image: none;
	border-color: transparent;
}

'templates/ot_malesuada/html/mod_virtuemart_product/single.php' line 3,
'templates/ot_malesuada/html/mod_virtuemart_product/default.php' line3
add
vmJsApi::jPrice();

'templates/ot_malesuada/html/com_virtuemart/virtuemart/default_products.php' line 2,
'templates/ot_malesuada/html/com_virtuemart/category/default.php' line 27,
'templates/ot_malesuada/html/com_virtuemart/productdetails/default_relatedproducts.php' line 22
add
require(JPATH_SITE . DS . 'modules' . DS . 'mod_virtuemart_product' . DS . 'helper.php');
vmJsApi::jPrice();

'templates/ot_malesuada/html/mod_virtuemart_product/single.php' line 77, 'templates/ot_malesuada/html/mod_virtuemart_product/default.php' line 115 & line 213 replace
<?php echo JHTML::link($product->link, JText::_('COM_VIRTUEMART_PRODUCT_DETAILS'), array('title' => $product->product_name,'class' => 'product-details'));?>

'templates/ot_malesuada/html/com_virtuemart/virtuemart/default_products.php' line 133 replace
echo JHTML::link ( JRoute::_ ( 'index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $product->virtuemart_product_id . '&virtuemart_category_id=' . $product->virtuemart_category_id ), JText::_ ( 'COM_VIRTUEMART_PRODUCT_DETAILS' ), array ('title' => $product->product_name, 'class' => 'product-details' ) );

'templates/ot_malesuada/html/com_virtuemart/category/default.php' line 370 replace
echo JHTML::link($product->link, '<span>'.JText::_('COM_VIRTUEMART_PRODUCT_DETAILS').'</span>', array('title' => $product->product_name,'class' => 'product-details'));

'templates/ot_malesuada/html/com_virtuemart/productdetails/default_relatedproducts.php' line 98 replace
<?php echo JHTML::link($product->link, JText::_('COM_VIRTUEMART_PRODUCT_DETAILS'), array('title' => $product->product_name,'class' => 'product-details')); ?>

with
<?php echo mod_virtuemart_product::addtocart ($product);?>
Last Edit: 9 years 1 month ago by crystal_moon.
The administrator has disabled public write access.

Re: Add to Cart add to the list of products. 9 years 1 month ago #7080

  • grupodwe
  • grupodwe's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 4
  • Karma: 0
Thank you very much.

I have a question.

From step

"templates / ot_malesuada / html / mod_virtuemart_product / single.php 'line 77,' templates / ot_malesuada / html / mod_virtuemart_product / default.php 'line 115 & line 213 replace"

Indica replace the code with "<php echo mod_virtuemart_product :: addtocart ($ product);?>"
The administrator has disabled public write access.

Re: Add to Cart add to the list of products. 9 years 1 month ago #7083

  • crystal_moon
  • crystal_moon's Avatar
  • OFFLINE
  • Senior Boarder
  • Posts: 47
  • Thank you received: 10
  • Karma: 2
All ('templates/ot_malesuada/html/mod_virtuemart_product/single.php' line 77, 'templates/ot_malesuada/html/mod_virtuemart_product/default.php' line 115 & line 213, 'templates/ot_malesuada/html/com_virtuemart/virtuemart/default_products.php' line 133, 'templates/ot_malesuada/html/com_virtuemart/category/default.php' line 370, 'templates/ot_malesuada/html/com_virtuemart/productdetails/default_relatedproducts.php' line 98) replace with
<?php echo mod_virtuemart_product::addtocart ($product);?>
The administrator has disabled public write access.
Time to create page: 0.095 seconds