Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1182195

    Hi

    We use Enfold 4.6.3.1 with CM Tooltip Glossary Pro+ 3.8.20. Our website uses a page as footer. This is an ALB page, which contains two color sections. On term single pages of CM Tooltip Glossary the content of the footer is erroneously displayed outside the wrap_all container. The template of the term single page corresponds 1:1 to the page.php of Enfold.

    As it seems, the problem arises in the method compile_post_content of the class AviaBuilder. What do we have to do to ensure that the footer is displayed correctly on the term single pages?

    Thanks a lot!

    #1182975

    Hi

    I was able to solve the problem by adding the “glossary” post type to the array of ALB supported post types.

    add_filter('avf_alb_supported_post_types', function( array $supported_post_types ) {
    	$supported_post_types[] = 'glossary';
    	return $supported_post_types;
    } );

    Kind regards

    #1183068

    Hi blende64,

    We’re glad that you have resolved it.
    Let us know if you need further assistance.

    Best regards,
    Nikko

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.