audios89
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Older/newer category posts not workingYes, I did take it too literally. Sorry I need to brush up on my PHP knowledge I guess. It works good now. TYVM
Forum: Fixing WordPress
In reply to: Older/newer category posts not workingThanks for the help alchymyth. I gave that a shot but recalling older posts with the navigation still yields the same page with the same posts. Here is what the top of my code looks like now:
<?php /* Template Name: Cat_body */ ?> <?php get_header(); ?> <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts('category_name=body&paged=' . $paged); ?> <?php query_posts('category_name=body'); ?>
Might this have anything to do with the fact that I am using the Google XML sitemaps plugin?
Forum: Fixing WordPress
In reply to: Older/newer category posts not workingThanks, I do use query_posts, but right at the start of my category template, immediately after:
<?php get_header(); ?> <?php query_posts('category_name=body'); ?>
Here is right before and after my loop on the same category template page:
<!-- Pagination --> <div class="ngg-clear"> </div> </div> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <hr> <div class="single"> <div class="datecomrap"> <h2 class="date"> <?php the_time('M'); ?><br /> <span style="font-size:2em; font-weight:bold;"><?php the_time('d'); ?></span><br /> <?php the_time('Y'); ?> <!-- if you don't want the comment count left of the post, erase from here ... --> <h2 class="commy"> <?php comments_popup_link(__('0'), __('1'), __('%'), '', __('--')); ?></h2> </div><!-- end datecomrap -->
This code is based off of the wordpress classic theme if that helps at all.
Forum: Fixing WordPress
In reply to: Help with the_meta(); on main indexbump
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Compact Album Box’s AdjacencySo it’s actually really easy, just put more than 1 gallery in a single album.
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Album & Gallery title displayAh, that worked. So simple, I guess the most obvious solutions are sometimes the most difficult!
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Album & Gallery title display@infected. Thanks for the input, although even with a 0 in both said columns, I still get this stacking issue. Those 0 values are affecting the gallery layout itself, and not the album(s) layout.
You can see that on this page: https://www.leydigproject.com/?page_id=34
the problem is pretty obvious. I am unsure of how to fix this. Sorry, don’t have any idea about getting the album titles to appear above atm. Any other ideas? Thanks
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Album & Gallery title displayInfected, I apologize for hijacking threads like this, but on the screenshots you posted, I was wondering how to get multiple compact albums to line up with one another like that. When I enter the code to add one on my page they always stack on top of one another. What do I need to do in order to make them adjacent like this? Many thanks!