da_moma
Forum Replies Created
-
Forum: Plugins
In reply to: NextGen Gallery “Image Browser” rescaling – and how to remove it?Teratoma please ignore my question I found the answer but thanks again for your post it was very helpful.
Da_Moma
Forum: Plugins
In reply to: NextGEN Gallery ? How to limit which pics are shownI am sorry I found the answer myself. I feel bad like I wasted your space here and I am sorry.
Here was what I did to resolve this:
Code was:
<?php include(TEMPLATEPATH."/sidebar1.php");?> <div id="slideshow"><?php if (function_exists("nggSlideshowWidget")) { nggSlideshowWidget($galleryID,$Width=710,$Height=170); } ?>
I changed this by adding =1 where indicated below and that gave me what I was wanting.
<?php include(TEMPLATEPATH."/sidebar1.php");?> <div id="slideshow"><?php if (function_exists("nggSlideshowWidget")) { nggSlideshowWidget($galleryID=1,$Width=710,$Height=170); } ?>
Blessings,
Da_MomaForum: Plugins
In reply to: NextGen Gallery “Image Browser” rescaling – and how to remove it?This is a good post thank you. By chance would you happen to know how to limit which images are shown instead of all images being show by the slideshow?
Forum: Plugins
In reply to: NextGEN Gallery Slideshow for headerI figured it out myself after 2 days of trial and error.
For anyone else who uses this template you just do this:1) Open up page.php
FIND
<div id="main"></div>
REPLACE WITH
<div><?php if (function_exists("nggSlideshowWidget")) { nggSlideshowWidget($galleryID,$Width=710,$Height=170); } ?> </div>
2) Open up the index.php
FIND
<div id="main"></div>
REPLACE WITH
<div><?php if (function_exists("nggSlideshowWidget")) { nggSlideshowWidget($galleryID,$Width=710,$Height=170); } ?> </div>
It worked for me, I have no idea if this was the right way or not but it works! ??
Now I need to find out how to shoot the slideshow to the right a tad…
Forum: Plugins
In reply to: NextGEN Gallery Slideshow for headerAnyone Please?
Forum: Fixing WordPress
In reply to: How to keep recent posts from Showing on Home Pageesmi Hi,
I edited the header.php thank you again so very much!
I am doing the site map with a widget – ordering by pages.I am really liking how wordpress is working out, I know I have a ton to learn but so far it is nice.
Thank You again,
Da_MomaForum: Fixing WordPress
In reply to: How to keep recent posts from Showing on Home PageAwesome that worked thank you so much esmi!!
But now I have two Home links on the top nav bar how do I remove the first one?
Thank You
Da_Moma