eperinelli
Forum Replies Created
-
that’s correct, that parameter is missing
i’ve filed a ticket on the help desk 5 days ago, but no solution yet
ops there’s no more
const SHOW_SLIDER_TO = "editor";
in my version of the plugin, i’ve opened a ticket with the support…
thank you rwilki i was hoping for a more ortodox solution, but if there’s no other way…
cheers
Hi everybody,
i’m using WP 3.6.1 and Revolution Slider 3.0.95, if i try to control the plugin with a user that’s not an admin i get the message:
You do not have sufficient permissions to access this section.
obviously i set “Author, Editor and Admin” in the Global Preferences, but looks like the setting is ignored
this is a relative problem, since i’m using “User Role Editor”, if you can tell me the ID of the capability of Revolution Slider i can add it to my custom User
Forum: Plugins
In reply to: GPP Slideshow workaroundhi dungey
i find i can position the caption setting the “top:” and “left:” properties of the “.flex-caption” class
unfortunately i need to show not only the caption, but also the description of the image, any idea?
Forum: Plugins
In reply to: Fluid NextGEN Slideshowhi langlais,
i hado no luck with NextGEN, so i ended up using this plugin:
https://graphpaperpress.com/plugins/gpp-slideshow/
it’s very simple and it does not offer all the NGG features, but it’s perfectly fluid
cheers
Forum: Plugins
In reply to: NextGen Slideshow: Need Prev/Next arrows, how?hi CarolinElisa
if you need transitions maybe you should try another plugin (lightbox? monoslideshow?) the second is commercial, but you can integrate it with NextGen
look for them on the web
good luck!
Forum: Plugins
In reply to: NextGen Slideshow: Need Prev/Next arrows, how?hi carolineelisa
follow the link in my post, you need some PHPing, but i couldn’t find an easier solution to the problem
cheers
same problem here, it doesn’t show images in a 3.0.5 WP installation and the Atahualpa 3.6.4 theme
i’ve checked the auto generated WP thumbnails and they are in their directory
Radu, could you help?
hi zingming,
i can confirm the bug is solved, here is the resulting page:
https://www.dadcrown.com/contact
thank you and goodbay
i’ve been talking too soon: ie7 doesn’t stop, but text is stripped out…
with this code:
<table style="text-align: left; width: 100%;" border="0" cellspacing="2" cellpadding="2"> <tbody> <tr> <td style="vertical-align: top; height: 44px; width: 234px;"></td> <td style="vertical-align: top;"></td> </tr> <tr> <td style="vertical-align: top; height: 70px;"></td> <td style="vertical-align: top;"><strong>DAVIDE DE CARLI</strong><br> Owner & Designer<br> d.decarli AT dadcrown DOT com</td> </tr> <tr> <td style="vertical-align: top; height: 70px;"></td> <td style="vertical-align: top;"><strong>BEATRICE VICENZI</strong><br> Associate & Administration<br> b.vicenzi AT dadcrown DOT com</td> </tr> <tr> <td style="vertical-align: top; height: 70px;"></td> <td style="vertical-align: top;"><strong>GIOVANNA DE GIROLAMO</strong> Communication & Design g.degirolamo AT dadcrown DOT com</td> </tr> </tbody> </table>
it shows only the email address, not the text above
thank you zingming, now it’s working fine, i’ve also updated the plugin
just in case you’re interested:
https://www.dadcrown.com/splash
goes online today
cheers
eugenio
Forum: Plugins
In reply to: NextGen Slideshow: Need Prev/Next arrows, how?looks like i’m learning PHP the hard way…
i’ve used a dirty solution, modifying the GALLERY CAROUSEL TEMPLATE and fetching the titles of the gallery and the list of the images “by hand”
i don’t understand how the variable “$current” is valorized, looks like i can list the pictures in multiple galleries but not display all of them throught the “$current” value…
i’m a bit ashamed of my code, but just in case…
<?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?><?php if (!empty ($gallery)) : ?> <?php var_dump($current) ?>$current <!-- PRIMA COLLEZIONE !! --> <div class="collection-list list-1"> <?php /** TITOLO **/ ?> <strong><?php /** RACCOLGO LA GALLERIA **/ $galleryFirst = nggdb::find_gallery( 2 ) ; echo($galleryFirst->title); ?> </strong> <?php /** RACCOLGO LE IMMAGINI **/ $imagesFirst = nggdb::get_gallery( 2 ); ?> <?php /** SCORRO LE IMMAGINI **/ foreach ( $imagesFirst as $image ) : ?> <ul> <li id="ngg-image-<?php echo $image->pid ?>" class="ngg-thumbnail-list <?php if ($image->pid == $current->pid) echo 'selected' ?>" > <?php if ( $image->hidden ) continue; ?> <a href="?pid=<?php echo $image->pid ?>" title="<?php echo $image->alttext ?>" > <?php echo $image->alttext ?> </a> </li> </ul> <?php endforeach; ?> </div> <!-- SECONDA COLLEZIONE !! --> <div class="collection-list list-2"> <?php /** TITOLO **/ ?> <strong><?php /** RACCOLGO LA GALLERIA **/ $galleryFirst = nggdb::find_gallery( 3 ) ; echo($galleryFirst->title); ?> </strong> <?php /** RACCOLGO LE IMMAGINI **/ $imagesFirst = nggdb::get_gallery( 3 ); ?> <?php /** SCORRO LE IMMAGINI **/ foreach ( $imagesFirst as $image ) : ?> <ul> <li id="ngg-image-<?php echo $image->pid ?>" class="ngg-thumbnail-list <?php if ($image->pid == $current->pid) echo 'selected' ?>" > <?php if ( $image->hidden ) continue; ?> <a href="?pid=<?php echo $image->pid ?>" title="<?php echo $image->alttext ?>" > <?php echo $image->alttext ?> </a> </li> </ul> <?php endforeach; ?> </div> <!-- TERZA COLLEZIONE !! --> <div class="collection-list list-3"> <?php /** TITOLO **/ ?> <strong><?php /** RACCOLGO LA GALLERIA **/ $galleryFirst = nggdb::find_gallery( 4 ) ; echo($galleryFirst->title); ?> </strong> <?php /** RACCOLGO LE IMMAGINI **/ $imagesFirst = nggdb::get_gallery( 4 ); ?> <?php /** SCORRO LE IMMAGINI **/ foreach ( $imagesFirst as $image ) : ?> <ul> <li id="ngg-image-<?php echo $image->pid ?>" class="ngg-thumbnail-list <?php if ($image->pid == $current->pid) echo 'selected' ?>" > <?php if ( $image->hidden ) continue; ?> <a href="?pid=<?php echo $image->pid ?>" title="<?php echo $image->alttext ?>" > <?php echo $image->alttext ?> </a> </li> </ul> <?php endforeach; ?> </div> <div class="bottom-collection"> <div class="collection-element"> <div class="pic"><img title="<?php echo $current->alttext ?>" alt="<?php echo $current->alttext ?>" src="<?php echo $current->url; ?>" height="250" width="790" /></div> </div> </div> </div> <?php endif; ?>
No idea anybody?
Where can I find documentation on how the plugin works internally?