How adding image to template joomla 2.5 myStore?

Change your online store into modern look with myStore eCommerce VirtueMart Joomla template - discussion forum.
GK User
Fri Aug 31, 2012 5:34 am
I have added but not work.

Joomla 2.5 not work
Code: Select all
<img src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/IMAGE_NAME.jpg" border="0" alt="ALT. TEXT" width="100" height="100" />



Joomla 1.5 work.

Code: Select all
<img src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template;?>/images/IMAGE_NAME.jpg" border="0" alt="ALT. TEXT" width="100" height="100" />
User avatar
Senior Boarder

GK User
Fri Aug 31, 2012 10:22 am
Where are you entering this code in?
User avatar
Platinum Boarder

GK User
Fri Aug 31, 2012 12:30 pm
i enter code in Joomla 1.6 HTML module on my localhost.
User avatar
Senior Boarder

GK User
Mon Sep 03, 2012 4:55 pm
:?:
User avatar
Senior Boarder

GK User
Tue Sep 11, 2012 11:51 am
I believe custom_html module does not execute php calls. So try using one of the below modules.

Flexi Custom Code
http://extensions.joomla.org/extensions ... ules/15251

Sourcer
http://extensions.joomla.org/extensions ... ntent/5051

See you around...
User avatar
Platinum Boarder

GK User
Fri Sep 21, 2012 4:54 am
If I want to insert images within the PHP file for mystore template. How insert it?

joomla 2.5 not work. it's not display image.
Code: Select all
<img src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/IMAGE_NAME.jpg" border="0" alt="ALT. TEXT" width="100" height="100" />


thank you.
User avatar
Senior Boarder

GK User
Fri Sep 21, 2012 8:31 am
Try this inside sources or inside php files.
Firstly add below inside php tags usually at top if its not available.
Code: Select all
$app= & JFactory::getApplication();

Then add your image as below
Code: Select all
<img src="<?php echo JURI::base( true ); ?>/templates/<?php echo $app->getTemplate(); ?>/images/IMAGE_NAME.jpg" border="0" alt="ALT. TEXT" width="100" height="100" />


See you around...
User avatar
Platinum Boarder


cron