hexa6on
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Write data on another DatabaseI have the same problem. 🙁
Been looking for hours for a solution. Have you found one, by chance?
Forum: Themes and Templates
In reply to: posts_nav_link keeps showing same postsI’m having the same problem and I tried this with no avail. Please help.
This is the page: http://www.goliathlabs.com/goliath2009/articles/
This is my code:
<div class="articles-container grid_8"> <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $args=array( 'categore_name'=>articles, 'paged'=>$paged, ); query_posts($args); ?> <?php while (have_posts()) : the_post(); ?> <h1><a href="<?php the_permalink(); ?>"> <?php the_title_attribute(); ?> </a></h1> <h2> <?php meta(subheading); ?> </h2> <div class="body-text"> <?php global $more; $more = 0; ?> <?php the_content('<p>» Read full article…</p>'); ?> </div> <?php endwhile;?> <?php posts_nav_link(' — ', __('« Newer Posts'), __('Older Posts »')); ?> </div>Forum: Fixing WordPress
In reply to: Wp_list_pages ‘include’ don’t allow sub_menuGot the same problem. Please help!
Thanks!
Forum: Themes and Templates
In reply to: Depth Attributecheck your “&” symbols. They’re not in the right places…
I went in to: wp-content\plugins\nextgen-gallery\view\singlepic.php and changed the following code to disable the slimbox effect:
From:
<a href="<?php echo $image->imageURL ?>" title="<?php echo $image->linktitle ?>" <?php echo $image->thumbcode ?> > <img class="<?php echo $image->classname ?>" src="<?php echo $image->thumbnailURL ?>" alt="<?php echo $image->alttext ?>" title="<?php echo $image->alttext ?>" /> </a>To just:
<img class="<?php echo $image->classname ?>" src="<?php echo $image->thumbnailURL ?>" alt="<?php echo $image->alttext ?>" title="<?php echo $image->alttext ?>" />Then I wrapped the NGG code in the post as follows:
<a href="http://localhost/">[singlepic id=17 w=260 h=361 mode=none float=left]</a>This is not so elegant, but I’m in a hurry…. Later on, I’ll try and figure out a way to add these type of options the NGG interface.
Forum: Plugins
In reply to: Lightbox2 – Problem static pagesHmm! I deactivated Lightbox2 and installed the Slimbox plugin. It magically fixed the problem. o_O