• Resolved l3reezer

    (@l3reezer)


    How do I get shortcodes from other plugins I have in my posts to work when making a post grid of them with content included in the lay-out? The actual text just ends up appearing instead

Viewing 1 replies (of 1 total)
  • Plugin Author PickPlugins

    (@pickplugins)

    Thanks for your post,

    Temporary we have removed this feature to avoid some conflict

    Can you please add following code to your theme functions.php file and let me know the result.

    
    function post_grid_filter_grid_item_content_extra($content){
    
        return do_shortcode($content);				
                        
      }
    
    add_filter('post_grid_filter_grid_item_content','post_grid_filter_grid_item_content_extra');
    

    Regards

Viewing 1 replies (of 1 total)

The topic ‘Allowing shortcodes from other plugins?’ is closed to new replies.