Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter lisaferrante

    (@lisaferrante)

    Any suggestions anyone?

    Plugin Author Matt

    (@sksmatt)

    Hi Lisa,

    You can hook to the mv_gallery_to_slideshow_header filter and return an empty string. Try pasting the snippet below into your theme’s function.php file.

    function my_gallery_to_slideshow_header( $header ) {
         return '';
    }
    
    add_filter( 'mv_gallery_to_slideshow_header', 'my_gallery_to_slideshow_header');

    Kind Regards!

    Thread Starter lisaferrante

    (@lisaferrante)

    You know. I did see the other post that looks similar. Take a look at the home page. the code pops up at the top of the page. I put it at the bottom of my functions.php file. Not sure what is happening.

    Thread Starter lisaferrante

    (@lisaferrante)

    This didn’t work. What do you suggest?

    change the css to display:none; for those classes

    .gallery-to-slideshow-title {
    display:none;
    width:100%;
    float: left;
    clear: none;
    text-align:left;
    }
    .gallery-to-slideshow-caption {
    display:none;
    width:100%;
    float: right;
    clear: none;
    text-align:right;
    }
    .gallery-to-slideshow-title, .gallery-to-slideshow-caption {
    display:none;
    margin-bottom: 0;
    }

    Plugin Author Matt

    (@sksmatt)

    Hi lisaferrante,

    Make sure that code is in between PHP tags: <?php the code ?>.

    Kind Regards!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Plugin: Gallery to Slideshow] Responsive-Remove title headers’ is closed to new replies.