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

    Hi,
    I am planning to use a transparent menu throughout my page as I am using a slider in the page builder. Is there way to set it as a default option for all pages and even custom post types that include the option?

    Also, I’ve added the page builder to a custom post type following some of the codes shared in the forum but I noticed that the portfolio settings metabox shows when using this code:
    `add_filter(‘avf_builder_boxes’, ‘avia_register_cpt_meta_boxes’, 10, 1);

    function avia_register_cpt_meta_boxes($boxes) {
    if( !empty($boxes) ) {
    foreach($boxes as $key => $box)
    {
    // Use Name of CPT you want to use. The name taken from register_post_type function for example
    //
    // Can duplicate just the following line to add more CPT
    $boxes[$key][‘page’][] = ‘webinar’;
    $boxes[$key][‘page’][] = ‘event_room’;
    }
    }
    return $boxes;
    }`

    #521592

    I guess for the second part, is there a way to disable portfolios since I will not be using it anyway?

    Thanks!

    #523069

    Hey!

    Try this CSS out.

    .header_bg { display: none !important; }
    #header * { border: 0px !important; }
    

    As for the custom post types, you shouldn’t have to do any editing if your using the latest version of the theme. The layout builder should be displayed on them automatically. Make sure your using the latest version, 3.3.2.

    Best regards,
    Elliott

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