virtuemart themes

VirtueMart themes and Joomla Templates

virtuemart package

What people are saying...

"A client wanted to update their VirtueMart look - thankfully I found the themes here. My client got the look they wanted that met their time frame and I have one more really grateful client."
Michael Duvoir

Your Account



Advanced Search





Lost Password?
Forgot your username?
No account yet? Register

Download Area
Show Cart
Your Cart is currently empty.
Home VirtueMart Help Frequently Asked Questions
Frequently Asked Questions
If you have a question that is not answered here, please feel free to send an email to info@poweredbyvirtuemart.com.

There is text on top of the Add to Cart image buttons (and other submit buttons)?

Using a text-editor open the file /product_details/includes/addtocart_form.tpl.php

Old Line 38:
<input type="submit" class="" value="add-to-cart ?>" style="padding-top:3px;" title="" />

to

New Line 38:
<input type="submit" class="" value="" style="padding-top:3px;" title="" />

When I click on the Add to Cart button nothing happens?

The easiest solution is to turn off the Ajax cart function.

Admin > Site > Configuration > Use Ajax to add, update or delete products from the cart? No

The shipping method step sends me back to my frontpage?

This is a common problem with customized templates. A solution for this was provided by Iain of www.aspirems.com

Open Administrator/Components/com_virtuemart/html/checkout.index.php and edit Line 96 from this:
$basket_html .= '<form action="'. SECUREURL.basename($_SERVER['PHP_SELF']) .'" method="post" name="adminForm">
to this:
$basket_html .= '<form action="'. SECUREURL.basename($_SERVER['PHP_SELF']) .'?page=checkout.index&redirected=1&option=com_virtuemart" method="post" name="adminForm">
It fixes the issue, so then it works now irrelevant of the Template.

The theme.css file isn't loading or none of the graphics are showing and the theme doesn't look right?

This seems to be a file permission error. Make sure that the folders and files /components /components/com_virtuemart /components/com_virtuemart/fetchscript.php have file permissions of 755, not 777. This should correct the issue.