• Hi,
    I’m having issues with this plugin. I don’t know if it’s a compatibility issue between the two or an issue with the plugin. Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi caludia84,
    which kind of issue?

    Thread Starter caludia84

    (@caludia84)

    The plugin gives me several options to display the images in a gallery (masonry, carousel, slider) but it doesn’t matter which one i choose, the result is always the same. It displays the thumbnail images in just one column and it has a zoom effect.
    When i click an image it sends me to the multimedia library or the image itself and not in a lightbox.

    Hi claudia84, to exclude the default customizr gallery you should put this in your child-theme functions.php:

    add_filter('tc_gallery_bool', '__return_false');

    and this in your child-theme style.css (for the zoom effect and other stuff):

    .gallery-icon img:hover {
      -moz-transform: none;
      -webkit-transform: none;
      -o-transform: none;
      transform: none;
      -ms-transform: none;
      -moz-box-shadow: none;
      -webkit-box-shadow: none;
      -o-box-shadow: none;
      box-shadow: none;
      -ms-filter: "progid:DXImageTransform.Microsoft.gradient(enabled=false)" /* IE 8+ */;
      filter: none !important; /* IE 7 and the rest of the world */
    }

    Hope this helps.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Customizr compatible with WP Canvas Gallery Plugin’ is closed to new replies.