• Resolved DeltaDude

    (@deltadude)


    Hi

    I’m playing with your free version and I am finding it very good. i notice that your website says that it works with Divi but I notice on the free version that the Divi Builder doesn’t show on any property pages. Does it appear in the pro version?

    Thanks
    Mark

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can but you need to go playing around with your theme.
    In your child theme create a functions.php file and added the below snippet:

    function my_et_builder_post_types( $post_types ) {
    $post_types[] = 'properties';
    
    return $post_types;
    }
    add_filter( 'et_builder_post_types', 'my_et_builder_post_types' );

    And thats it, the builder should load on the property pages now.

    Plugin Author Estatik

    (@estatik)

    Hi there!
    The given answer is correct. Thank you, WillOfTheWeb!
    This piece of code will enable Divi builder support as for standart post type. The builder will work, but all the features added with builder will appear in the tab Description.
    Also, please, note that there is a shortcode [es_single id=’ID’] in plugin for creating a single property page where ID is a listing ID. On this page Divi builder can be used as well.
    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Divi Builder’ is closed to new replies.