WebsiteBaker Support (2.8.x) > Templates, Menus & Design
how add image to link by page id
nps:
My code
$image_arr = array(
55 => '/media/gallerys/kelione-i-ventes-raga/thumb/kelione-i-ventes-raga-026.jpg',
56 => '/media/gallerys/kelione-i-ventes-raga/thumb/kelione-i-ventes-raga-023.jpg'
);
show_menu2(0, SM2_CURR+1, SM2_CURR+2, 0, '<div class="image_title"> <div class="imagep">
[a]<img src="'.$image_arr[55].'" alt="" border="0" width="230" height="130" />[/a]
</div>[menu_title]</div>');
how add image from array 'image_arr' in show_menu2? (55 and 56 is pages id)
BerndJM:
Hi,
if you have a closer look to the SM2 documentation (to find in the modules directory) you will see in the section
"FORMAT STRINGS"
the following:
--- Quote ---[page_id] Page ID of the current menu item
--- End quote ---
Regards Bernd
nps:
Yes, i'm found about page_id, but $image_arr is php. Try but not wirked with [page_id]. Try php variable $page_id but show parent menu id.
sky writer:
I am very interested in this functionality. Were you ever able to get the results you were after?
DarkViper:
a easy, but not the cleanest way::
save files like:
/wb/media/gallerys/kelione-i-ventes-raga/thumb/kelione-i-ventes-raga-55.jpg
/wb/media/gallerys/kelione-i-ventes-raga/thumb/kelione-i-ventes-raga-56.jpg
then use
--- Code: ---<?php
show_menu2(0, SM2_CURR+1, SM2_CURR+2, 0, '<div class="image_title"> <div class="imagep">
[a]<img src="/wb/media/gallerys/kelione-i-ventes-raga/thumb/kelione-i-ventes-raga-[page_id].jpg" alt="" border="0" width="230" height="130" />[/a]
</div>[menu_title]</div>');
?>
--- End code ---
Navigation
[0] Message Index
[#] Next page
Go to full version