|
View:
New views
7 Messages
—
Rating Filter:
Alert me
|
|
|
ConditionalI use a lightbox effect on my G2 site (which uses Smarty). When this
lightbox effect is called, i want to display only certain stuff. How would i write this using smarty? Thanks for any help Chris -- Smarty General Mailing List (http://smarty.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php |
|
|
Re: ConditionalUsing <div style="display:none;"></div> to hidden stuff.
On 8/21/07, Chris Arnold <carnold@...> wrote: > > I use a lightbox effect on my G2 site (which uses Smarty). When this > lightbox effect is called, i want to display only certain stuff. How > would i write this using smarty? Thanks for any help > > Chris > > -- > Smarty General Mailing List (http://smarty.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > |
|
|
Re: Conditional(Sorry Scott, i sent that mail directly to you instead of the list.)
OK, check it out, what i am trying to do is when lightwindow is called, not display header and footer in the lightwindow. So, i used this <div style="display:none;"><div class="header"></div></div>. Nothing changed, the header was still shown. Is this the right way to do what i want to do? Linkage: http://www.mytimewithgod.net/wp-gallery2.php?g2_itemId=22 click on any photo and you will see Chris ----- Original Message ----- From: "Chris Arnold" <carnold@...> To: smarty-general@... Sent: Tuesday, August 21, 2007 9:54:24 AM (GMT-0500) America/New_York Subject: Conditional I use a lightbox effect on my G2 site (which uses Smarty). When this lightbox effect is called, i want to display only certain stuff. How would i write this using smarty? Thanks for any help Chris -- Smarty General Mailing List (http://smarty.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php |
|
|
Re: Re: ConditionalIf you are using a lightbox your HREF should be direct to the picture or
the script that generates the picture... Don't link back to your website then try to hide stuff... if you do so you will be wasting CPU cycles generating the header and footer, just to go and hide it.. <div class="gallery-thumb"> <a href="main.php?g2_view=core.DownloadItem&g2_itemId=23&g2_serialNumber=1" class="lightwindow"> <img src="photos/main.php?g2_view=core.DownloadItem&g2_itemId=24&g2_serialNumber=2" width="150" height="113" alt="DSC01416"/> </a> </div> Chris Arnold wrote: > (Sorry Scott, i sent that mail directly to you instead of the list.) > OK, check it out, what i am trying to do is when lightwindow is called, not display header and footer in the lightwindow. So, i used this <div style="display:none;"><div class="header"></div></div>. Nothing changed, the header was still shown. Is this the right way to do what i want to do? Linkage: http://www.mytimewithgod.net/wp-gallery2.php?g2_itemId=22 click on any photo and you will see > > Chris > ----- Original Message ----- > From: "Chris Arnold" <carnold@...> > To: smarty-general@... > Sent: Tuesday, August 21, 2007 9:54:24 AM (GMT-0500) America/New_York > Subject: Conditional > > I use a lightbox effect on my G2 site (which uses Smarty). When this > lightbox effect is called, i want to display only certain stuff. How > would i write this using smarty? Thanks for any help > > Chris > > -- Smarty General Mailing List (http://smarty.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php |
|
|
Re: Re: ConditionalThis is what i have been trying to do before, make it direct to the pic but there are many pics also not sure how to point to the script that generates the pic. Here is the code from the theme:
<div class="gallery-thumb"> <a href="{g->url params=$theme.pageUrl arg1="itemId=`$child.id`"}" class="lightwindow"> {if isset($child.thumbnail)} {g->image item=$child image=$child.thumbnail} {else} {g->text text="no thumbnail"} {/if} </a> </div> Thanks for everything. Chris ----- Original Message ----- From: "Owen Cole" <owenc@...> To: "Smarty general" <smarty-general@...> Sent: Tuesday, August 21, 2007 3:37:06 PM (GMT-0500) America/New_York Subject: Re: [SMARTY] Re: Conditional If you are using a lightbox your HREF should be direct to the picture or the script that generates the picture... Don't link back to your website then try to hide stuff... if you do so you will be wasting CPU cycles generating the header and footer, just to go and hide it.. <div class="gallery-thumb"> <a href="main.php?g2_view=core.DownloadItem&g2_itemId=23&g2_serialNumber=1" class="lightwindow"> <img src="photos/main.php?g2_view=core.DownloadItem&g2_itemId=24&g2_serialNumber=2" width="150" height="113" alt="DSC01416"/> </a> </div> Chris Arnold wrote: > (Sorry Scott, i sent that mail directly to you instead of the list.) > OK, check it out, what i am trying to do is when lightwindow is called, not display header and footer in the lightwindow. So, i used this <div style="display:none;"><div class="header"></div></div>. Nothing changed, the header was still shown. Is this the right way to do what i want to do? Linkage: http://www.mytimewithgod.net/wp-gallery2.php?g2_itemId=22 click on any photo and you will see > > Chris > ----- Original Message ----- > From: "Chris Arnold" <carnold@...> > To: smarty-general@... > Sent: Tuesday, August 21, 2007 9:54:24 AM (GMT-0500) America/New_York > Subject: Conditional > > I use a lightbox effect on my G2 site (which uses Smarty). When this > lightbox effect is called, i want to display only certain stuff. How > would i write this using smarty? Thanks for any help > > Chris > > -- Smarty General Mailing List (http://smarty.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Smarty General Mailing List (http://smarty.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php |
|
|
Re: Re: ConditionalYou're gonna have to hack the class for your "g" object to point to the
right place. If you didn't make the class, take a look at the comments and maybe there already is a method in there If you did make it, you'll have to make another method to point direct to the picture Either way you wanna get this : main.php?g2_view=core.DownloadItem&g2_itemId=23&g2_serialNumber=1 Good luck! Chris Arnold wrote: > This is what i have been trying to do before, make it direct to the pic but there are many pics also not sure how to point to the script that generates the pic. Here is the code from the theme: > <div class="gallery-thumb"> > <a href="{g->url params=$theme.pageUrl arg1="itemId=`$child.id`"}" class="lightwindow"> > {if isset($child.thumbnail)} > {g->image item=$child image=$child.thumbnail} > {else} > {g->text text="no thumbnail"} > {/if} > </a> > </div> > Thanks for everything. > > Chris > ----- Original Message ----- > From: "Owen Cole" <owenc@...> > To: "Smarty general" <smarty-general@...> > Sent: Tuesday, August 21, 2007 3:37:06 PM (GMT-0500) America/New_York > Subject: Re: [SMARTY] Re: Conditional > > If you are using a lightbox your HREF should be direct to the picture or > the script that generates the picture... Don't link back to your website > then try to hide stuff... if you do so you will be wasting CPU cycles > generating the header and footer, just to go and hide it.. > > <div class="gallery-thumb"> > <a href="main.php?g2_view=core.DownloadItem&g2_itemId=23&g2_serialNumber=1" class="lightwindow"> > <img src="photos/main.php?g2_view=core.DownloadItem&g2_itemId=24&g2_serialNumber=2" width="150" height="113" alt="DSC01416"/> > </a> > </div> > > > Chris Arnold wrote: > >> (Sorry Scott, i sent that mail directly to you instead of the list.) >> OK, check it out, what i am trying to do is when lightwindow is called, not display header and footer in the lightwindow. So, i used this <div style="display:none;"><div class="header"></div></div>. Nothing changed, the header was still shown. Is this the right way to do what i want to do? Linkage: http://www.mytimewithgod.net/wp-gallery2.php?g2_itemId=22 click on any photo and you will see >> >> Chris >> ----- Original Message ----- >> From: "Chris Arnold" <carnold@...> >> To: smarty-general@... >> Sent: Tuesday, August 21, 2007 9:54:24 AM (GMT-0500) America/New_York >> Subject: Conditional >> >> I use a lightbox effect on my G2 site (which uses Smarty). When this >> lightbox effect is called, i want to display only certain stuff. How >> would i write this using smarty? Thanks for any help >> >> Chris >> >> >> > > -- Smarty General Mailing List (http://smarty.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php |
|
|
Re: Re: ConditionalOwen Cole wrote:
> You're gonna have to hack the class for your "g" object to point to > the right place. > > If you didn't make the class, take a look at the comments and maybe > there already is a method in there > > If you did make it, you'll have to make another method to point direct > to the picture > > Either way you wanna get this : > main.php?g2_view=core.DownloadItem&g2_itemId=23&g2_serialNumber=1 > > Good luck! > > confuses me is a regular lightbox effect does not exhibit this behaviour (so i wonder why i would have to hack the "g" object class). To answer the next question (why don't i use lightbox instead of lightwindow), lightwindow supports video lightbox does not. I have taken this problem/question to the dev of lightwindow (he says, not a lightwindow problem). I have taken to the G2 forums and they say, look at lightwindow dev or use lightbox. Thanks again! Chris -- Smarty General Mailing List (http://smarty.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php |
| Free embeddable forum powered by Nabble | Forum Help |