bopgun
Forum Replies Created
Viewing 2 replies - 1 through 2 (of 2 total)
-
If you go to the plugin folder nextgen-gallery/view/gallery.php
Step 1: Find the code:
_________________________________________________________<!-- Thumbnails --> <?php foreach ( $images as $image ) : ?> <div id="ngg-image-<?php echo $image->pid ?>" class="ngg-gallery-thumbnail-box" <?php echo $image->style ?> > <div class="ngg-gallery-thumbnail" > <a>imageURL ?>" title="<?php echo $image->description ?>" <?php echo $image->thumbcode ?> > <?php if ( !$image->hidden ) { ?> <img title="<?php echo $image->alttext ?>" alt="<?php echo $image->alttext ?>" src="<?php echo $image->thumbnailURL ?>" <?php echo $image->size ?> /> <?php } ?> </a> </div> </div>___________________________________________________________
Step 2: Replace above code this the following code<!-- Thumbnails --> <?php foreach ( $images as $image ) : ?> <div id="ngg-image-<?php echo $image->pid ?>" class="ngg-gallery-thumbnail-box" <?php echo $image->style ?> > <div class="ngg-gallery-thumbnail" > <a>imageURL ?>" title="<?php echo $image->description ?>" <?php echo $image->thumbcode ?> > <?php if ( !$image->hidden ) { ?> <img title="<?php echo $image->description ?>" alt="<?php echo $image->alttext ?>" src="<?php echo $image->thumbnailURL ?>" <?php echo $image->size ?> /> <?php } ?> </a> <span><?php echo $image->alttext ?></span> <span><?php echo $image->description ?></span> </div> </div>______________________________________________________________
Note:
This is the code to add the description
<?php echo $image->description ?>This is the code to add the title
<?php echo $image->alttext ?>Forum: Plugins
In reply to: [WooCommerce] Hide product in frontendAH, but you can’t then use the product in the backend for a guest order! Any ideas on that one?
Viewing 2 replies - 1 through 2 (of 2 total)