stagmo
Forum Replies Created
-
Forum: Plugins
In reply to: [Feature Slideshow] [Plugin: Feature Slideshow] Description disappearingHaving the same issue. Trying to narrow down when it happens, perhaps when you open the “Posts” link in the admin panel but not sure yet.
I’m also looking for this feature. Thanks!
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Center the whole formWrap the form with:
<div style="margin: 0 auto;"> your stuff here </div>If you need a set width, do (replacing 750 with whatever you want):
<div style="margin: 0 auto; width:750px"> your stuff here </div>Forum: Fixing WordPress
In reply to: Author group posts on separate pagesThanks, I fixed it up, got it working. I replaced the:
<?php if ($posts) {and
foreach($posts as $post) {with the normal wordpress loop
if ( have_posts() ) {and
while ( have_posts() ) { the_post();and now it works perfectly. Thanks for all your help earlier!
Forum: Fixing WordPress
In reply to: Author group posts on separate pagesSince I don’t know what portion of the code would be changing anything (I tried but couldn’t figure it out) Here’s a link to the code for the template page that I’m referring to:
Now that I look at it, I wonder if I used the “single-post.php” file as a base for this one ’cause I don’t see the usual “wordpress loop”.. hmm I’ll look into that, but any insight is appreciated.
Forum: Fixing WordPress
In reply to: Author group posts on separate pagesHey, this is me (chrisvallely) again (apparently I have two wordpress accounts somehow). I had one more request before this is resolved. My parents (who I’m doing this site for) now want 2 posts to display on each page. I changed the Settings > Reading > “Blog pages show at most” to 2, but that only fixed the “homepage” blog (parents). The kids blog still only shows the most recent post from the kids and now skips the 2nd post when I go to next entry.
Any ideas? I can post more of the code if it’s not in the same section that I need to change things. I tried adding
&showposts=2to the end of the query_posts, but that didn’t help things.Forum: Plugins
In reply to: Looking for a way to disable “autop” sometimesDid you ever figure this out? It would be very useful.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Adding a new gallery variable?Okay, I found it! In case anyone else finds a need to add a variable to the gallery, the last thing you need to do is:
In nextgen-gallery/nggfunctions.php:
find the section that starts like this:// Populate galleries values from the first image $first_image = current($picturelist); $gallery = new stdclass; $gallery->ID = (int) $galleryID; $gallery->show_slideshow = false;And add a line like this that matches your variable name (mine is store_link):
$gallery->store_link = $first_image->store_link;Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Adding a new gallery variable?Still searching for a solution.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Adding a new gallery variable?Update:
I found the section in /admin/manage.php where the database is updated. I manually went in and added store_link to the gallery table. After trying this out, it now displays the value in the input box and is properly storing them in the database, but I still haven’t gotten view/gallery.php to display them properly.I’m guessing it has something to do with the $gallery classes already being instantiated or something since I made the change to /lib/image.php after activating the plugin. Does anyone know what would fix this issue. Basically it doesn’t want to recognize $gallery->store_link on /view/gallery.php but works fine on /admin/manage-images.php.