Add Muffin Builder and Muffin Page Options to my own custom post type

Is it possibile do add Muffin Builder and Muffin Page Option functionality to my own post type?

I registred in the function.php my own custom post type:

#Custom Post Type Reisen + Custom Taxonomy für Filter Reisen 
add_action( 'init', 'cptui_register_my_cpts_reise', 10 );
function cptui_register_my_cpts_reise() {
$labels = array(
"name" => "Reisen",
"singular_name" => "Reise",
"menu_name" => "Reisen"
);

$args = array(
"labels" => $labels,
"description" => "Reisen",
"public" => true,
"show_ui" => true,
"show_in_rest" => false,
"has_archive" => false,
"show_in_menu" => true,
"exclude_from_search" => false,
"capability_type" => "page",
"map_meta_cap" => true,
"hierarchical" => true,
"rewrite" => array( "slug" => "reisen", "with_front" => false ),
"query_var" => true,
"supports" => array( "title", "editor", "excerpt", "trackbacks", "custom-fields", "comments", "revisions", "thumbnail", "author", "page-attributes", "post-formats" ),
"taxonomies" => array( "post_tag", "language", "reise_kategorien" ),
'menu_icon' => "dashicons-palmtree"
);
register_post_type( "reise", $args );
}



In this custom post pages I can use the Visual Composer (WP Bakery) but I miss the Muffin Builder...



Comments

  • Hi,

    What you ask for, requires files customization what in reference to Item Support Policy is not allowed. So if you want to modify files and don't know how, you should contact your web developer. Item Policy says:
    Item support does not include services to modify or extend the item beyond the original features, style, and functionality described on the item page. For customization services that will help you tailor the item to your specific requirements, we recommend contacting the author to see if they privately offer paid customisation services or checking out the great service providers on Envato Studio

    thanks
  • Ok, thanks for the answer.
Sign In or Register to comment.