Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • hexa6on

    (@hexa6on)

    I have the same problem. 🙁

    Been looking for hours for a solution. Have you found one, by chance?

    I’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>&raquo; Read full article&hellip;</p>'); ?>
    			</div>
    			<?php endwhile;?>
    			<?php posts_nav_link(' — ', __('&laquo; Newer Posts'), __('Older Posts &raquo;')); ?>
    		</div>

    hexa6on

    (@hexa6on)

    Got the same problem. Please help!

    Thanks!

    hexa6on

    (@hexa6on)

    check your “&” symbols. They’re not in the right places…

    Thread Starter hexa6on

    (@hexa6on)

    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.

    Thread Starter hexa6on

    (@hexa6on)

    Hmm! I deactivated Lightbox2 and installed the Slimbox plugin. It magically fixed the problem. o_O

Viewing 6 replies - 1 through 6 (of 6 total)