Ya encontré la solución. Pero de todas maneras voy a postear la solución a mi problema para cualquiera que tenga o llegue a tener el mismo problema. Resulta que al trabajar en local e instalar
Virtuemart éste toma como url predeterminada la url local:
Código:
http://localhost/tusitioweb/
Al final de la instalación
Virtuemart habrá tomado esa url y la dejará en sus archivos así:
Código PHP:
// these path and url definitions here are based on the Joomla! Configuration
define( 'URL', 'http://localhost/tusitioweb/' );
define( 'SECUREURL', 'http://localhost/tusitioweb/' );
Entonces solamente se cambian esas dos url por la de tu sitio, quedando así:
Código PHP:
// these path and url definitions here are based on the Joomla! Configuration
define( 'URL', 'http://www.tusitio.com/' );
define( 'SECUREURL', 'http://www.tusitio.com/' );