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

    (@creativemindssolutions)

    Can you please send a URL since we can not replicate this

    Please check also that you don’t have any JS error in pages, this can cause tooltip not to appear (to do this you need to open developer consul and check for errors in Browser – ex FireBug)

    Plugin Author CreativeMindsSolutions

    (@creativemindssolutions)

    To parse terms inside shortcodes inside theme shortcodes, You will need to use red_glossary_parse($content, true) function (PRO version only) inside a shortcode function.
    In regular version only raw content is parsed, before any of shortcodes are being replaced by their equivalents. You can also try to modify add_filter(‘the_content’, ‘red_glossary_parse) with far priority index:

    add_filter(‘the_content’, ‘red_glossary_parse’, 99);

    so it could be parsed AFTER shortcodes are evaluated (need to try which number will be enough, could be 99, could be 999, depending on other filters)

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Glossary terms not working in pages’ is closed to new replies.