Add Muffin Builder to custom post type
Hello,
I created a new custom post type.
How can I add/activate the muffin builder to it?
For the visual composer I have options.
/wp-admin/admin.php?page=vc-general
But for the muffin builder I can't finde anything.
Best regards,
Elec
I created a new custom post type.
How can I add/activate the muffin builder to it?
For the visual composer I have options.
/wp-admin/admin.php?page=vc-general
But for the muffin builder I can't finde anything.
Best regards,
Elec
Comments
because we do not offer code customizations, we can not give you solution of how to do this. But we recommend to have a look on includes/content-single.php file to check how it was made and hope this will help you a lot.
Thanks for understanding!
I finished a new custom post type with the muffin builder and it works great.
But it only works in the original path:
/betheme/functions/meta-cities.php
And is called in /betheme/functions.php with:
if( ! isset( $post_types_disable['cities'] ) ){
require_once( LIBS_DIR .'/meta-cities.php' );
}
Is there a way to put the meta-cities.php in the child-theme:
/betheme-child/functions/meta-cities.php
And to call it in the betheme-child/functions.php by
if( ! isset( $post_types_disable['testimonial'] ) ){
require_once( LIBS_DIR .'/meta-testimonial.php' );
}
???
Thanks and best regards
Perhaps just change the LIBS_DIR to the path to the child-theme?
Did you work your custom code in your child theme?
I want to know since soon I'll face with the same problem.
Thanks