Removing the full Schema There have a filter fl_post_grid_disable_schema in BB Post Module. You can easily disable the schema via this simple PHP code. add_filter( ‘fl_post_grid_disable_schema’, ‘__return_true’ ); Removing only Author Schema add_filter( ‘fl_schema_meta_author’, ‘__return_null’ ); Removing Publisher Schema add_filter( ‘fl_schema_meta_publisher’, ‘__return_null’ ); Removing Publish Date Schema add_filter( ‘fl_schema_meta_general’, ‘__return_null’ ); Removing Comments Schema add_filter(… Continue Reading
post module
Displays Multiple Post Types on BB Posts Module
Posts Module for Beaver Builder allows you to display any post type content from your WordPress site. Per module you select one post type content. In this tutorial I shall show how you will display the multiple post types content on single Posts Module. For example, I created a custom post type “event”. On my home page I… Continue Reading