« See all FAQs for Sabai Discuss - Q&A forum plugin for WordPress
How can I style question pages with Visual Composer or Divi Builder?
By default, our plugin removes any content added by other plugins (via the the_content WordPress filter hook) to our plugin pages in order to avoid possible display conflicts.
Therefore you will first need to disable this feature by adding the following line of code to wp-config.php:
define('SABAI_WORDPRESS_DISABLE_REMOVE_FILTERS', true);
above where it says:
/* That's all, stop editing! Happy blogging. */
Then, using a text type component of your editor (e.g. Text Block in Visual Composer or Text Module in Divi Builder), insert the %sabai%
placeholder to where you would like the content of our plugin to be displayed, which will be replaced with the actual content of our plugin in the frontend. For example:
<p>My custom content</p> %sabai% <p>My custom content</p>
Also make sure that you are using version 1.3.24 or later of our plugins.