The Joomla! Forum ™



Forum rules


Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.



Post new topic Reply to topic  [ 19 posts ] 
Author Message
PostPosted: Tue Oct 18, 2005 12:26 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Tue Oct 18, 2005 12:19 am
Posts: 28
Hi,

I have a site which I'm converting to Joomla.  I have hired a web designer, and all is finished, however there is a flash banner that is currently on all pages.  I only want it on the first page, the home page. 

On the other pages I would like to have, either a different Flash Movie, or if that is not possible, then just a basic banner (non-Flash). 

My thoughts on how to do this would be to have two templates...but we (me and the web designer) are stuck on how to set this up?  He says that he doesn't see any settings in the CMS to do this. 

Is there a Mod that I am needing or..??  Please help...am trying to install this tonight..

Thanks


Top
 Profile  
 
PostPosted: Tue Oct 18, 2005 2:14 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Fri Aug 19, 2005 2:39 am
Posts: 210
Location: Glendale, CA, USA
Setup your main menu as much as feasible.

Use the installer to install both templates (eg: "home Page" and "everything else").

Then go to Site-> Template Manager -> Site Templates.

Set the one you want to use for "Everything else" to the default. (click the circle next to the "everything else" template and click "default").

Assign the home page with a flash template to the menu item first on the list in the "MainMenu" (click the circle next to the "home page" template and click "assign" click the very top "mainmenu" item listed). The first item on the main menu will always become your home page.

Hope this helps. 

wr

_________________
"A fool takes no pleasure in understanding, but only in expressing his opinion." Proverbs 18:2


Top
 Profile  
 
PostPosted: Wed Oct 26, 2005 4:53 pm 
User avatar
Joomla! Intern
Joomla! Intern
Offline

Joined: Tue Aug 23, 2005 4:16 pm
Posts: 90
Location: Lima, Peru
We had a similar issue, we wanted to put an image just in the first page. Just do this:

Open your template (index.php file)

then copy this in the code:




INSERT HERE THE CODE YOU NEED TO CALL THE IMAGE, BANNER, FLASH, ETC..




That's all.

Hope this helps  ;D

David.



[quote author=windowsxp550 link=topic=12872.msg84070#msg84070 date=112959516

3]
Hi,

I have a site which I'm converting to Joomla.  I have hired a web designer, and all is finished, however there is a flash banner that is currently on all pages.  I only want it on the first page, the home page. 

On the other pages I would like to have, either a different Flash Movie, or if that is not possible, then just a basic banner (non-Flash). 

My thoughts on how to do this would be to have two templates...but we (me and the web designer) are stuck on how to set this up?  He says that he doesn't see any settings in the CMS to do this. 

Is there a Mod that I am needing or..??  Please help...am trying to install this tonight..

Thanks
[/quote]

_________________
http://www.curefans.com


Top
 Profile  
 
PostPosted: Tue Nov 08, 2005 10:00 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Sep 29, 2005 9:54 pm
Posts: 28
Location: Texas
Or just try my Flash Banner module http://developer.joomla.org/sf/frs/do/l ... ssible_1_0


Top
 Profile  
 
PostPosted: Thu Nov 10, 2005 2:11 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Wed Oct 26, 2005 8:12 pm
Posts: 10
SESupergenius wrote:


Can you please explain how to use this module to include flash into banner?


Top
 Profile  
 
PostPosted: Fri Nov 11, 2005 5:11 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Sep 29, 2005 9:54 pm
Posts: 28
Location: Texas
You just install like any other Module.  Add it where you want it in your template and make sure the module is published.


Top
 Profile  
 
PostPosted: Sun Nov 13, 2005 6:42 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Wed Oct 26, 2005 8:12 pm
Posts: 10
SESupergenius wrote:
You just install like any other Module.  Add it where you want it in your template and make sure the module is published.


hi
Thanks for your reply

What about the Flash Banner URL in module. i saw it must be .jpg file. Can you please explain what is it?


Top
 Profile  
 
PostPosted: Sat Dec 17, 2005 11:55 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Dec 15, 2005 6:09 pm
Posts: 5
Location: Vatra Dornei
Can you please explain how you module works? Because I've worked out how to show the flash banner, but I can't figure out how to show only the flash banner, without any spaces or the other banners.
Also, does your module make the flash banner act like an ordinary banner, and so it swaps with the static banners?

I'm uising Joomla 1.0.4


Top
 Profile  
 
PostPosted: Mon Dec 19, 2005 5:35 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Sep 29, 2005 9:54 pm
Posts: 28
Location: Texas
It works just like any other banner module.  You install the module just like every other module and select the place where you want to display it.  I am using the Satay method of displaying a flash file. 


Top
 Profile  
 
PostPosted: Mon Dec 19, 2005 7:23 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Aug 18, 2005 8:07 pm
Posts: 23
I have a site using a flash header image and wanted the same type thing.  I implemented it with the code below which causes the flash to display only on the front page and only if the browser supports flash...otherwise it displays a static jpg header image. 

if ( $_REQUEST['option'] == "com_frontpage" )
{
?>
data="/templates/your_template/images/Banner.swf"
width="778" height="145">
value="/templates/your_template/images/Banner.swf" />
width="778" height="145" alt="Banner Name" />

}
else
{
?>

}
?>


I hope this helps...

Art Sexton


Top
 Profile  
 
PostPosted: Tue Dec 20, 2005 12:15 am 
Joomla! Intern
Joomla! Intern
Offline

Joined: Sat Oct 29, 2005 8:15 am
Posts: 79
wasexton wrote:
I have a site using a flash header image and wanted the same type thing.  I implemented it with the code below which causes the flash to display only on the front page and only if the browser supports flash...otherwise it displays a static jpg header image. 

if ( $_REQUEST['option'] == "com_frontpage" )
{
?>
data="/templates/your_template/images/Banner.swf"
width="778" height="145">
value="/templates/your_template/images/Banner.swf" />
width="778" height="145" alt="Banner Name" />

}
else
{
?>

}
?>


I hope this helps...

Art Sexton


THANKS a l00T ART!!! It really helps :)


Top
 Profile  
 
PostPosted: Tue Dec 20, 2005 8:30 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Dec 15, 2005 6:09 pm
Posts: 5
Location: Vatra Dornei
I'm sorry to say this, but it didn't help me.
I don't really need a flash header, but a flash banner, that acts like a banner, meaning it swaps with the other banners when you change the page.


Top
 Profile  
 
PostPosted: Thu Mar 16, 2006 4:08 pm 
Joomla! Intern
Joomla! Intern
Offline

Joined: Sat Oct 29, 2005 8:15 am
Posts: 79
Thanks for your help SESupergenius. :)

How can I insert more flash banners?


Top
 Profile  
 
PostPosted: Fri Mar 24, 2006 4:23 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Sep 29, 2005 9:54 pm
Posts: 28
Location: Texas
Just copy the modules (in the modules panel) and make as many as you want and just designate which pages you want the banner to show up on.  Like I have 9 different flash banners, 1 each for every main page that I have. Just make sure you don't have 2 banners on the same page, then they will double up and it will display two flash banners on the same page.


Top
 Profile  
 
PostPosted: Thu Nov 02, 2006 1:40 am 
User avatar
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Aug 25, 2006 11:48 pm
Posts: 41
SESupergenius wrote:

What's about Firefox. Your modul doesn't show flash in Firefox, whats the problem?
By the way - Cool modul - for me only working solution for flash banners.


Top
 Profile  
 
PostPosted: Thu Nov 02, 2006 9:16 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Sep 29, 2005 9:54 pm
Posts: 28
Location: Texas
I have it working in Firefox 1.5.    Which one are you using?  Maybe it has something to do with your CSS.


Top
 Profile  
 
PostPosted: Tue Aug 07, 2007 2:55 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Jul 20, 2007 12:07 am
Posts: 8
UPDATE:

Works well, however it needs the opening php tag for it to work.    I've updated the code in my post.
_______________________________________________________________________________________

Hey there-  Does the below code get placed in the index.php file?  If so, does it replace the "header" id tag that loads the current header.jpg?

Here's my header code in the index.php:

Code:
<div id="header_outer">
<div id="header"> </div>
</div>


Thanks!  Any help is appreciated!

wasexton wrote:
I have a site using a flash header image and wanted the same type thing.  I implemented it with the code below which causes the flash to display only on the front page and only if the browser supports flash...otherwise it displays a static jpg header image. 

if ( $_REQUEST['option'] == "com_frontpage" )
{
?>
data="/templates/your_template/images/Banner.swf"
width="778" height="145">
value="/templates/your_template/images/Banner.swf" />
width="778" height="145" alt="Banner Name" />

}
else
{
?>

}
?>


I hope this helps...

Art Sexton


Last edited by worked on Tue Aug 07, 2007 3:31 pm, edited 1 time in total.

Top
 Profile  
 
PostPosted: Tue Jan 08, 2008 11:03 am 
User avatar
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Tue Jan 08, 2008 10:43 am
Posts: 2
Location: Köln
A guidance for inserting Flashbanner in Joomla gives it here: German guidance! http://www.controversus.de/content/view/66/108/
Joomla und Flashbanner.
Der Joomla standard Bannermanager ist von Hause aus, bei der Auswahl von Bildformaten eingeschrängt.
Er bietet uns nur folgende Bildformate zur Auswahl, JPG, GIF, PNG. Die wir verwalten und einfügen können. Wenn wir jedoch, Flash Banner mit dem Standard-Joomlabannermager (Open Source Matters) einfügen wollen, ist ein wenig Handarbeit gefragt.

_________________
Ich möchte eindringlich raten, vor organisierter Verdummung und vor ausgeklügelter Gemeinheit als Mittel der Politik sehr auf der Hut zu sein. http://www.controversus.de/


Top
 Profile  
 
PostPosted: Sun Feb 03, 2008 10:50 am 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Sat Feb 10, 2007 1:18 pm
Posts: 2
wasexton wrote:
I have a site using a flash header image and wanted the same type thing.  I implemented it with the code below which causes the flash to display only on the front page and only if the browser supports flash...otherwise it displays a static jpg header image. 

if ( $_REQUEST['option'] == "com_frontpage" )
{
?>
data="/templates/your_template/images/Banner.swf"
width="778" height="145">
value="/templates/your_template/images/Banner.swf" />
width="778" height="145" alt="Banner Name" />

}
else
{
?>

}
?>


I hope this helps...

Art Sexton


I've used the code on localhost, but when i use the same code on a server.. it doesn't work... I get the "Movie not loaded" thing when I right-click on it... on the blank space...
NEED HELP  :-[


Last edited by Cyupa on Sun Feb 03, 2008 10:52 am, edited 1 time in total.

Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 19 posts ] 



Who is online

Users browsing this forum: No registered users and 5 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB® Forum Software © phpBB Group