Shape 5

Joomla Templates => eMercantilism - January 08 - Club => : 107727gb November 13, 2008, 10:46:04 AM



: quick view cart 'cartback.jpg' disappeared after Joomla patch from 157 to 158
: 107727gb November 13, 2008, 10:46:04 AM
Hi There,

I updated my Joomla 1.5.7. to joomla 1.5.8 (patch). Everything works fine but the quick view cart "cartback.jpg" has disappeared on my frontpage (position advert3). I checked with my Joomla 1.5.7. backup. The cartback.jpg was back immediately.

Any Idea's? Strange problem. You need my admin?

Regards,
Gabriel


: Re: quick view cart 'cartback.jpg' disappeared after Joomla patch from 157 to 158
: jonahh November 13, 2008, 11:59:18 AM
Could you post a URL of where this is occurring?

Thanks,


: Re: quick view cart 'cartback.jpg' disappeared after Joomla patch from 157 to 158
: 107727gb November 25, 2008, 04:29:47 AM
Problem with the cartback is solved. Thank you Jonah.

in case anyone has problems with the dissappearance of the Virtuemart checkout images (I had with the 1.5.7. to 1.5.8. Joomla patch) You can edit this very easy in your code.

Go to components/com_virtuemart/themes/default/templates/checkout/checkout_bar.tpl.php  and edit somewhere around line 31. This is the original code:

echo '<table style="background: url( '. VM_THEMEURL .'images/checkout/checkout'. $step_count.'_'.$current_step .'.png ) top right; background-repeat: no-repeat; height:115px;text-align:center;" border="0" cellspacing="0" cellpadding="0" align="center">
  <tr>';

Just change it to this one:
echo '<table style="background: url('. VM_THEMEURL .'images/checkout/checkout'. $step_count.'_'.$current_step .'.png ) top right; background-repeat: no-repeat; height:115px;text-align:center;" border="0" cellspacing="0" cellpadding="0" align="center">
  <tr>';

If this doesn't work you can also try this one:
echo '<table style="background: url( \''. VM_THEMEURL .'images/checkout/checkout'. $step_count.'_'.$current_step .'.png\' ) top right; background-repeat: no-repeat; height:115px;text-align:center;" border="0" cellspacing="0" cellpadding="0" align="center">
  <tr>';

Both solutions must work.

Bye,
Gabriel