• Great plugin JJcoder, thanks.

    I wonder how I can do as this guy>> https://contauto.com.br/

    He used the code without wordpress, and get the words between <a>example</a> to show a description under the images “example”

    `<li class=”jcarousel-item-horizontal”>
    <a href=”novos/novofordfiestahatch_geral.html”><img src=”img/sr_carros_novofordfiestahatch.jpg” width=”230″ height=”74″ border=”0″ alt=”” /></a>
    <br />
    <a href=”novos/novofordfiestahatch_geral.html” class=”carrossellink”>Novo Ford Fiesta Hatch</a>
    </li> `

    I thought that description field in NextGen must be good for this, but I don’t know wich archive I should change to insert this idea inside from template, I saw the skin but only has CSS code there.

    How I can do the same idea using the plugin? Because I’m remaking the site with wordpress.

    Thanks

Viewing 1 replies (of 1 total)
  • Thread Starter Luiz Aquino

    (@luizaquino)

    I find this code line maybe there is something I can do here, what you think?

    archive>>> jj_ngg_jquery_carousel.php

    // if alt isn't a url make it the alt text to backwards support nextgen galleries
            elseif($image_alt != '')
            {
              $image_description = $image_alt;
            }
    
            if($use_url)
            {
              $output .= "<a href=\"" . esc_attr($image_alt) . "\">";
            }
    
            if($image_description != '')
            {
              $image_description = "alt=\"" . esc_attr($image_description) . "\" ";
            }
            else
            {
              $image_description = '';
            }
    
            $width_d = '';
            $height_d = '';
            if($width != '' && $height != '')
            {
              $width_d = " width=\"" . $width . "\"";
              $height_d = " height=\"" . $height . "\"";
            }
            $output .= "<img src=\"" . $image->imageURL . "\" " . $image_description . $width_d . $height_d . " border=\"0\" />";
    
            if($use_url)
            {
              $output .= "</a>";
            }
            $output .="</li>";
    
          }
          $output .= "\n  </ul>";
          $output .= "\n</div>";
        }
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: JJ NextGen JQuery Carousel] How I can put some text under image’ is closed to new replies.