Hi.
I use Shop Made Simple.
In the shop, you can upload items. For these items, you can upload images.
You can show this image in the template with the tag {$pimage}.
You can also add multiple images to a item. But... How do you use the other images you upload.. Is there a tag for them?
Shop Made Simple: use multiple images
-
- Forum Members
- Posts: 23
- Joined: Mon Dec 03, 2007 9:32 pm
Re: Shop Made Simple: use multiple images
weaselweasel,
There is no separate tag for this. At least not as part of the module.
If you've added multiple images, the images will be shown on the product detail page (if using the supplied template).
Duketown
There is no separate tag for this. At least not as part of the module.
If you've added multiple images, the images will be shown on the product detail page (if using the supplied template).
Duketown
-
- Forum Members
- Posts: 23
- Joined: Mon Dec 03, 2007 9:32 pm
Re: Shop Made Simple: use multiple images
That's the thing... If they are shown in the original template... There must be a tag or something that calls for the images to appear, right?
Re: Shop Made Simple: use multiple images
weaselweasel,
I noticed the problem. Working on a new version of ShopMadeSimple.
For now (I hope you are a bit handy with php).
Change in action.fe_product_list.php on line 161+162:
into:
So $params to be changed into $sendtodetail.
Duketown
I noticed the problem. Working on a new version of ShopMadeSimple.
For now (I hope you are a bit handy with php).
Change in action.fe_product_list.php on line 161+162:
Code: Select all
$onerow->prodname = $this->CreateLink($id, 'fe_product_detail', $detailpage!=''?$detailpage:$returnid,
$row['prodname'], $params, '', false, false, '', true, $prettyurl);
Code: Select all
$onerow->prodname = $this->CreateLink($id, 'fe_product_detail', $detailpage!=''?$detailpage:$returnid,
$row['prodname'], $sendtodetail, '', false, false, '', true, $prettyurl);
Duketown