- Posts: 1
- Thank you received: 0
card product
- Enchantner dexik
-
Topic Author
- Offline
- Fresh Boarder
-
Less
More
11 years 2 months ago #7064
by Enchantner dexik
card product was created by Enchantner dexik
Good afternoon. I apologize for my English. I purchased your template and you are very grateful for the made work. I would like to learn how to skip step explanation and go immediately to the card product.
In advance, thanks
In advance, thanks
Attachments:
Please Log in or Create an account to join the conversation.
- Nguyen Mai
-
- Offline
- Senior Boarder
-
Less
More
- Posts: 47
- Thank you received: 10
11 years 2 months ago - 11 years 2 months ago #7074
by Nguyen Mai
Replied by Nguyen Mai on topic Re: card product
If you want to add the button directly adding to cart on the product list, you can to try edit files:
'templates/ot_happyday/css/preset-style-1.css' line 538:
change to
'templates/ot_happyday/css/preset-style-2.css' line 538:
change to
'templates/ot_happyday/html/mod_virtuemart_product/single.php' line 3,
'templates/ot_happyday/html/mod_virtuemart_product/default.php' line3
add
'templates/ot_happyday/html/com_virtuemart/virtuemart/default_products.php' line 2,
'templates/ot_happyday/html/com_virtuemart/category/default.php' line 27,
'templates/ot_happyday/html/com_virtuemart/productdetails/default_relatedproducts.php' line 22
add
'templates/ot_happyday/html/mod_virtuemart_product/single.php' line 78, 'templates/ot_happyday/html/mod_virtuemart_product/default.php' line 91 & line 166 replace
'templates/ot_happyday/html/com_virtuemart/virtuemart/default_products.php' line 117 replace
'templates/ot_happyday/html/com_virtuemart/category/default.php' line 349 replace
'templates/ot_happyday/html/com_virtuemart/productdetails/default_relatedproducts.php' line 83
with
'templates/ot_happyday/css/preset-style-1.css' line 538:
Code:
span.addtocart-button input.addtocart-button{
color: #FFFFFF;
background-color: #9C496D;
background-image: url("../images/cart_w.png");
background-repeat: no-repeat;
background-attachment: scroll;
background-position: 10px 50%;
border-color: transparent;
}
Code:
.product .spacer span.addtocart-button input.addtocart-button{
color: #FFFFFF;
background-color: #9C496D;
background-image: none;
border-color: transparent;
}
'templates/ot_happyday/css/preset-style-2.css' line 538:
Code:
span.addtocart-button input.addtocart-button{
color: #FFFFFF;
background-color: #8CAC52;
background-image: url("../images/cart_w.png");
background-repeat: no-repeat;
background-attachment: scroll;
background-position: 10px 50%;
border-color: transparent;
}
Code:
.product .spacer span.addtocart-button input.addtocart-button{
color: #FFFFFF;
background-color: #8CAC52;
background-image: none;
border-color: transparent;
}
'templates/ot_happyday/html/mod_virtuemart_product/single.php' line 3,
'templates/ot_happyday/html/mod_virtuemart_product/default.php' line3
add
Code:
vmJsApi::jPrice();
'templates/ot_happyday/html/com_virtuemart/virtuemart/default_products.php' line 2,
'templates/ot_happyday/html/com_virtuemart/category/default.php' line 27,
'templates/ot_happyday/html/com_virtuemart/productdetails/default_relatedproducts.php' line 22
add
Code:
require(JPATH_SITE . DS . 'modules' . DS . 'mod_virtuemart_product' . DS . 'helper.php');
vmJsApi::jPrice();
'templates/ot_happyday/html/mod_virtuemart_product/single.php' line 78, 'templates/ot_happyday/html/mod_virtuemart_product/default.php' line 91 & line 166 replace
Code:
<?php echo JHTML::link($product->link, JText::_('COM_VIRTUEMART_PRODUCT_DETAILS'), array('title' => $product->product_name,'class' => 'product-details'));?>
'templates/ot_happyday/html/com_virtuemart/virtuemart/default_products.php' line 117 replace
Code:
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_happyday/html/com_virtuemart/category/default.php' line 349 replace
Code:
echo JHTML::link($product->link, '<span>'.JText::_('COM_VIRTUEMART_PRODUCT_DETAILS').'</span>', array('title' => $product->product_name,'class' => 'product-details'));
'templates/ot_happyday/html/com_virtuemart/productdetails/default_relatedproducts.php' line 83
Code:
<?php echo JHTML::link($product->link, JText::_('COM_VIRTUEMART_PRODUCT_DETAILS'), array('title' => $product->product_name,'class' => 'product-details')); ?>
with
Code:
<?php echo mod_virtuemart_product::addtocart ($product);?>
Last edit: 11 years 2 months ago by Nguyen Mai.
Please Log in or Create an account to join the conversation.
Time to create page: 0.185 seconds