4images Modifications / Modifikationen > Mods & Plugins (Requests & Discussions)
more random images?
BartAfterDark:
Hi,
Is there anyway to show more random images on any page of the site?
- Lars
KurtW:
Hi,
look here:
http://www.4homepages.de/forum/index.php?topic=4259.15
Search function from this forum is also a good way to find a answer :wink:
cu
Kurt
Sunny C.:
Wie bewerktstelligt man das?
Ich möchte mehrere Random Images anzeigen lassen und zwar so :D
--- Code: --- {if random_image}
<div id="left_outer">
<div class="left_inner_float">
<div class="left_inner">
<div class="module_menu">
<div>
<div>
<div>
<h3>Zufalls Cover</h3>
<ul class="menu">
{random_image}
{random_image}
{random_image}
{random_image}
{random_image}
{random_image}
{random_image}
{random_image}
{random_image}
{random_image}
{random_image}
{random_image}
{random_image}
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{endif random_image}
--- End code ---
Aber es wird immer das gleiche ausgegeben, wie funktioniert das? Das jedes zufällig ausgegeben wird?
Rembrandt:
--- Quote from: Sumale.nin on April 08, 2010, 08:59:24 PM ---...
und zwar so
--- End quote ---
ich verstehe jetzt nicht warum du das unbedingt so haben möchtest, viel freude wirst du damit nicht haben:
in der page_header.php suche:
$z<=5 gibt die anzahl der bilder an.
$random_image = (defined("SHOW_RANDOM_IMAGE") && SHOW_RANDOM_IMAGE == 0) ? "" : get_random_image();
$site_template->register_vars("random_image", $random_image);
unset($random_image);
ersetzte es mit :
for ($z=0; $z<=5; $z++){
$random_image = (defined("SHOW_RANDOM_IMAGE") && SHOW_RANDOM_IMAGE == 0) ? "" : get_random_image();
$site_template->register_vars("random_image$z", $random_image);
unset($random_image);
}
in der home.html kannst du jetzt {random_image1} {random_image2} {random_image..N} schreiben.
batu544:
Rembrandt,
For me.. it returned the same image for 5 times..
Thanks,
batu544
Navigation
[0] Message Index
[#] Next page
Go to full version