Skip Navigation

[Resolved] can't figure out how to use beaver builder and genesis with types

This support ticket is created 6 years, 6 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Kolkata (GMT+05:30)

This topic contains 2 replies, has 2 voices.

Last updated by Minesh 6 years, 6 months ago.

Assisted by: Minesh.

Author
Posts
#575495

Tell us what you are trying to do?

I'm trying to use beaver builder to create the content template which I got to work but I can't figure out how to remove the post meta data or post title. hidden link

Is there any documentation that you are following?

I found this video, but if I understand this, if I use a layout then I can't use a content template with beaver builder to customize how my CPT displays? https://toolset.com/documentation/recommended-themes/layouts-genesis-integration/

Even when I created a layout I don't see anywhere for setting theme options. I do have the genesis integration plugin installed and activated.

Is there a similar example that we can see?

What is the link to your site?

hidden link

#575641

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

Hello. Thank you for contacting the Toolset support.

Well - As you can see with our Docs:
=> https://toolset.com/documentation/user-guides/benefits-of-templates-for-custom-types-bb/best-practices-creating-templates-beaver-builder/

Please note that current integration of Beaver Builder and Toolset is meant for creating templates for your custom post types. Other types of usage, for example through the Layouts plugin, are not yet supported. However, this and other related features are planned for the future releases.

I need to check why its displaying still post title and few meta data on the page. Could you please make sure that you followed the best practices to use beaver builder:
=> https://toolset.com/documentation/user-guides/benefits-of-templates-for-custom-types-bb/best-practices-creating-templates-beaver-builder/

Regarding - Genesis theme, you do not need now genesis integration plugin, as Layouts now officially supported to make changes in content area. You can not edit header or footer content with layouts.
More info:
=> https://toolset.com/documentation/user-guides/layouts-theme-integration/

Here is the Doc which will help you how you can design templates using genesis theme:
=> https://toolset.com/documentation/recommended-themes/layouts-genesis-integration/designing-templates-genesis-using-toolset/

If you have any issues, please share problem URL and temporary access details.
*** Please make a FULL BACKUP of your database and website.***
I would also eventually need to request temporary access (WP-Admin and FTP) to your site. Preferably to a test site where the problem has been replicated if possible in order to be of better help and check if some configurations might need to be changed.

I would additionally need your permission to de- and re-activate Plugins and the Theme, and to change configurations on the site. This is also a reason the backup is really important. If you agree to this, please use the form fields I have enabled below to provide temporary access details (wp-admin and FTP).

I have set the next reply to private which means only you and I have access to it.

#575847

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

I checked on your install and I found that the default layout was assign was the with two column with your theme settings under section "Default Layout":
=> hidden link

I set the third option with the above setting and now it displays the full width but still its displaying the post title and post meta which is again coming from the default layout assign by genesis. Its not from Toolset, so I've added the following code to your current theme's functions.php file to remove the entry title and meta data:

add_action ( 'get_header', 'remove_post_info_genesis' );
function remove_post_info_genesis() {
    if (is_singular('service')) {
        remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
        remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );

    }
}

More info:
=> hidden link
=> hidden link

This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.