• Resolved Peter Meinl

    (@peter-meinl)


    How can I get Relevanssi to index the 10Web Gallery titles, e.g. “Madagascar” in page linked above?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mikko Saari

    (@msaari)

    Looks like the 10Web Photo Gallery shortcode is only active in the front end. When Relevanssi indexes the post, the gallery shortcode is indexed as is, un-expanded. This means Relevanssi can’t see what’s inside the gallery.

    You can try adding this to your site:

    add_filter( 'relevanssi_post_content', function( $content ) {
        $bwg = BWG();
        add_shortcode( 'Best_Wordpress_Gallery', array( $bwg, 'shortcode' ) );
        return $content;
    } );

    Then rebuild the index. Does that help?

    Thread Starter Peter Meinl

    (@peter-meinl)

    Adding your filter did work. Thank you for this very quick solution.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Index 10Web Gallery Titles’ is closed to new replies.