• Resolved goldmanas

    (@goldmanas)


    Is there a change I can list all my galleries? Kinda like a galleries gallery. When user clicks on the thumbnail, then he goes to the gallery it self.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Well, if you use any plugin like gallery by supsystic, you can always create a page named galleries and put all galleries shortcodes to that page.

    Plugin Author supsystic

    (@supsysticcom)

    Hello,

    Yes, you are right.

    Also you can activate Display only first image option (you can find it on the Main tab->Gallery Type section). After saving changes – add galleries shortcode to your page.

    If you want to display the galleries in one line, please follow next steps:

    1. Go to the Appearance menu at WordPress Dashboard and open Editor
    2. In the right list find footer.php and open it
    3. In this window before string
      <?php wp_footer(); ?>
      you need to enter the code below:
    <script> 
    (function($) { 
    $('.grid-gallery.one-photo').each(function() { 
    var $this = $(this);
    $this.css({ 
    display: 'inline-block',
    width: $this.data('width') + 'px',
    margin: $this.data('offset') / 2 + 'px' 
    })
    }).wrapAll($('<div>').css('text-align', 'center'));
    })(jQuery);
    </script>

    Don’t forget to save your changes by clicking on “Update File”.

    Plugin Author supsystic

    (@supsysticcom)

    Hi, @goldmanas

    Have you solved your issue?

    Best regards.
    Supsystic team

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Listing all galleries’ is closed to new replies.