Search

Change Language

Friday, April 8, 2011

Showing Product Image on Virtuemart Cart Page

Edit 4 files to show product thumbnails in shopping cart and the checkout process: 1. basket_b2c.html.php 2. ro_basket_b2c.html.php 3. basket.php 4. ro_basket.php Files 1 & 2 are in:  /components/com_virtuemart/theme/templates/basket Files 3 & 4 are in: /administrator/components/com_virtuemart/html basket_b2c.html.php and ro_basket_b2c.html.php are themplates files used to display...

Getting Virtuemart Product Attributes Use Radio Buttons

Replace the complete code of the file:components/com_virtuemart/themes/default/templates/product_details/includes/addtocart_advanced_attribute.tpl.phpwith the following:  <?php if( !defined( '_VALID_MOS' ) && !defined( '_JEXEC' ) ) die( 'Direct Access to '.basename(__FILE__).' is not allowed.' ); foreach($attributes as $attribute) {          ...

Showing Attributes in Product Browse page (Virtue Mart)

in home/administrator/components/com_virtuemart/html/shop.browse.php // Add-to-Cart Button       if (USE_AS_CATALOGUE != '1' && $product_price != ""          && !stristr( $product_price, $VM_LANG->_('PHPSHOP_PRODUCT_CALL') )          && !ps_product::product_has_attributes(...

Showing Addtocart in Browsepage (Virtuemart)

In administrator/components/com_virtuemart/html/shop.browse.php, look for these lines (400-404): // Add-to-Cart Button if (USE_AS_CATALOGUE != '1' && $product_price != "" && !stristr( $product_price, $VM_LANG->_('PHPSHOP_PRODUCT_CALL') ) && !ps_product::product_has_attributes( $db_browse->f('product_id'), true ) && $tpl->get_cfg( 'showAddtocartButtonOnProductList'...

Pages 91234 »