618 comments found.
Pre-sale : if create template with posts bloick, we can set query each page in same template ?
Hello, By post block, if you are referring to post grid, then it’s query can be controlled by the template. However, this is independent of the post/page where it will be added.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Hi, I have a pre purchase question. Is it posible to use this plugin to set a default template for a post type? Just from the regular WP admin page instead of looking for it in the wpbakery backend editor. Thanks.
Hello, You can set a default template under WPBakery Page Builder -> General Settings, for a required post type.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Hi, I like your plugin. I have one mayor problem though. It seems the templates are rendered out-site of the page they are placed on.
For example, I have a template called template-01 and a page called page-01. The template has a custom heading to display the post/page title. But it displays on page-01 with title template-01.
The same goes for everything else on the template. I have a post grid on it with a custom query. It grabs the ID from the template and not from the page.
Is there a way to fix this or am I doing something wrong 
Cheers.
Hello, The templates are added as post types and hence when the shortcode is dependent upon the post id, it uses the template id instead. This issue is on our list to be checked in future so that instead of template id, the respective post id can be used.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Hi Rohan,
Thank you for your quick reply. Is there a workaround for this at this moment? The only solution I see at this moment is coding a custom template to avoid templatera or for using the alternative for WPBakery. And that would be a shame.
Do you also have a timepath when this feature you mentioned would be implemented?
Hello, At present, we have added the work around suggested by “lonetraceur” on previous page onto our list, so that it can be checked in future. Since the issue is similar, you can take the website backup and check the same at your end.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Hi, does this have the capability to allow content pieces to be shared across multi-sites within the same install when using WP multisite?
Hello, Unfortunately, it does not have a functionality to share the templates across multi-sites. The templates can be created and used within the same site.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Hey There, I wanted to share a little tweak I made to the code that would make templatera infinitely more powerful. Literally added two very short lines of code to public function outputShortcode()
An extra line in the shortcode_attr called calling_id and a simple php str_replace().
Below is the whole function with both added lines:
/**
* Frozen row shortcode hook.
*
* @param $atts
* @param string $content
*
* @return string
*/
public function outputShortcode( $atts, $content = '' ) {
$id = $el_class = $output = '';
extract( shortcode_atts( array(
'el_class' => '',
'id' => '',
'calling_id' => get_the_ID(), // NEW EDIT Get the ID of the calling page.
), $atts ) );
if ( empty( $id ) ) {
return $output;
}
$my_query = new WP_Query( array(
'post_type' => self::postType(),
'p' => (int) $id,
) );
WPBMap::addAllMappedShortcodes();
while ( $my_query->have_posts() ) {
$my_query->the_post();
if ( get_the_ID() === (int) $id ) {
$output .= '<div class="templatera_shortcode' . ( $el_class ? ' ' . $el_class : '' ) . '">';
ob_start();
visual_composer()->addFrontCss();
$content = get_the_content();
# NEW EDIT - Substitute the tag '#templatera_calling_post_id#' for the value of $calling_id
$content = str_replace('#templatera_calling_post_id#', $calling_id, $content);
echo $content;
$output .= ob_get_clean();
$output .= '</div>';
$output = do_shortcode( $output );
}
wp_reset_postdata();
}
wp_enqueue_style( 'templatera_inline', $this->assetUrl( 'css/front_style.css' ), false, '2.1' );
return $output;
}
Now, you can use the tag #templatera_calling_post_id# in any shortcode to use the ID of the calling post, NOT the templatera post ID.
So, for instance, in templatera, you could use a shortcode like this: [post_title id="#templatera_calling_post_id#'] to return the post title (if you’ve coded that shortcode), rather than the templatera title.
As you can imagine, it means that this quick edit would enable you to reuse a templatera template on many pages, while keeping each individual post content. I have this running alongside ACF and many other plugins and it all works perfectly.
Hello, Thanks for sharing it with us. We have forwarded it onto our development team, so that it can be checked further.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Big suggestion… allowing this to allow you to create headers/footers as templatera sections and then tick box enabling to overwrite the theme’s footer/header.
Hello, Thank you for the suggestion. We will add it onto our list to check it during the plugin revamp.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Hi, does WPBakery play nice with the Custom Post Type UI plugin?
I am unable to apply WPBakery Templates to either existing or new posts which are custom post types (CPT plugin is CPT UI, theme is Total).
In WPBakery General Settings “Default template for post types” uses the new template I created. In the Edit Template page the custom post type listed under “Post types” is ticked.
I do not need the WPBakery features when editing post content so in “Role Manager” only “page” is ticked.
In contrast standard, non-custom posts work fine, i.e. existing and new posts use the WPBakery template I created.
Potentially I could
“delete existing post content”as you suggest and apply the template one by one for all existing custom posts. But still it would not solve the issue of brand new posts not using the template that they should be.
Hello, For the default template to be applied, the editor should selected for the post type under the role manager > post types. If there is still any issue, then please use support.wpbakery.com and share your temporary website credentials so our support team can investigate your issue and help you out.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Thankyou for your prompt reply, Rohan. For every role in the role manager, the custom post type is already selected. As this does not work I will contact support directly as suggested.
Rohan, I found a solution, so in case this helps anyone else…
To apply a WPBakery template to a custom post type created by the plugin Custom Post Type UI you do not need to select the post type on WPBakery’s Template editing page or General Settings page or Role Manager page. In fact, doing so seems to have no effect.
Instead, copy the ID number of the WPBakery template into the CPT UI input box labelled “Dynamic Singular Template ID”. And that’s it.
For example, given a post ID for the WPBakery template of 1234 (find this ID in the URL when you are editing the WPBakery template) go to CPT UI’s Edit Post Type screen. Near the bottom, in the ‘Total Theme’ section, set the Dynamic Singular Template ID to 1234.
Now all your posts in that custom post type will be using the WPBakery template.
And to clarify, on no WPBakery page is my custom post type selected or ticked.
If this proves to be a valid solution, Rohan, it may be worth expanding on this method in the WPBakery FAQ and in the brief description under the Dynamic Singular Template ID text field itself.
Hello, Thanks for sharing it with us.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
your latest version is breaking my site. I can’t use your template, and can you hide your .css in a footer or something? How is it that your plugin is ruining the site…can’t save changes in the backend, doesn’t remember changes and messes with the site template.
you have a plugin conflict with VC Super Bundle
https://codecanyon.net/item/super-bundle-for-visual-composer/20374176Hello, Please use support.wpbakery.com and share your temporary website credentials so our support team can investigate your issue and help you out.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
When I am on the WPBakery Page Builder and I click on the Template button to access my template library and insert one into the page, it does not pop open. I have to deactivate the Templatera plugin so that it works again. Is this normal?
Hello, Please make sure that you are running the latest version of templatera. If there is still any issue, then please use support.wpbakery.com and share your temporary website credentials so our support team can investigate your issue and help you out.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
The template doesnt display correctly the elements I use of “Ultimate Addons for WPBakery Page Builder” but they do work on a regular page. You can see the example here. Page that the tab elements works ok is https://www.fabulosaestereo.com/programacion/ and then the same tab elements are in this page using Templatera and the tabs load incorrectly https://www.fabulosaestereo.com/pagina-de-prueba/. This only happens with elements from “Ultimate Addons for WPBakery Page Builder”. I use version Versión 3.16.23.
Hello, The page: https://www.fabulosaestereo.com/pagina-de-prueba/ does not seem to display the element. Can you please use support.wpbakery.com and share your temporary website credentials so our support team can investigate your issue and help you out.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Hi, what do you mean by “the page does not seem to display the element”? I enter and I see the Tab Element in the page with all the information displaying in bad format. Here’s the printscreen. https://prnt.sc/jo2n6v
Also, I try to use your support site but under my account doesnt show the Templatera plugin although I purchase via CodeCanyon.net so I cannot create a ticket for it.
If you give me a support email I can send you the wordpress access or write me directly to jorge@webztudio.com and I will send it.
Hello, When we visit: https://www.fabulosaestereo.com/pagina-de-prueba/ it shows: https://prnt.sc/jodw1n without any tab element. Since the plugin is purchased via codecanyon, you should import the license into your WPBakery account. To do so, you can login into: support.wpbakery.com/login If you are not sure about the login details, then use the reset password option and use the email id associated with your codecanyon account. Once logged in, navigate to licenses page and click on “import it” option at the bottom of the page. It will then prompt you to login into codecanyon to complete the import. You can then open a ticket to share the details, so that our support team can guide you with it.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Hi Rohan, the page was set as “private” and that’s why you couldnt see it. You can try again and let me know. I will try to open the ticket also in the other support site. https://www.fabulosaestereo.com/pagina-de-prueba/
Hello, Do share your WordPress login details via ticket, so that the support team can check the issue further.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Good afternoon. If the template is created in Ultimate Addons then on pages where css Ultimate Addons is not connected, the appearance is not correct. So it should be?
Hello, It depends upon how the elements of ultimate add-ons render the content. If they can load their styles when added via template shortcode, then they will render fine.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Thank you, then what can be the solution? Or your product will not work correctly with other extensions like Ultimate Addons except the shortcodes of the WPBakery itself?
Hello, The solution will be to make the rendering of custom elements independent of the page/post id, so that they can render well even when added via third party shortcodes such as templates.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Your changes file in the fresh download is displaying “09.03.2017 – ver 1.1.12” Your Updates section of the Items Details page is also displaying “09.03.2017 – ver 1.1.12” as the most recent update. But, elswhere you are saying that the Last Update was just this last month: 12 April 18. Are these talking about different things or do you need to update things?
Hello, In last version we had not made major changes and hence it was not added to the changelog. The only change which was made was to make it compatible with the latest page builder version. The update was released on 12th April 2018.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Hello, thanks for your plugin. I bought it last year and everything worked fine in this time. But since few weeks I try everything to make it works again. I do not understand why, it does not work anymore. When I edit a template the changes are not effective elsewhere. The basic function is no longer operational. Is my The7 Dreamtheme can be not compatible today after update ? Can you help me ? Thank you.
Hello, Please make sure that you are running the latest version of templatera which is 1.1.12 along with the latest version of WPBakery Page Builder which is 5.4.7.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Hello, thanks for your rapid answer, everybody is up to date thats the problem 
In fact I can create, edit and save a template. I add it on every pages, but if I change the template in a page, change isn’t available in others pages…
Hello, Please make sure that the template is added via add element -> templatera, for the changes to be reflected on the respective pages.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
I just bought this plugin which was exactly what I was looking for but apparently Advanced Custom Fields do not work with this setup at all. I assumed this would just work as they are also just elements in Visual Composer. Is there any way to get this to work?
Hello, Please use support.wpbakery.com and share your temporary website credentials so our support team can investigate your issue and help you out.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Is there anything clear for the multi-site support?
Hello, The add-on can be used on multi-site setup. However, a template from one site cannot be used by another one.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
After all these comments I still haven’t figured out if Templarata can be used to style and update the same element but with different content (like old school css does). Can anybody please give me clarification on this one.
I’m still trying to figure out how I can use WPBackery on many pages and change the design/look/css without having to edit every single page. Any suggestion would be highly appreciated.
Hello, You can create a new template and add the element in it. On the required pages, you can add this template via templatera element. Now, when you make the changes to the original template, it will be reflected onto the pages where the element is added. Please note that the element content cannot be edited on the respective pages and can only be edited via the template.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Hello, there is yet a solution to can get the id of the post, not the id of the template? Thanks.
Hello, Apologies, we did not understand the question quiet well. Can you please open a ticket via our support portal: http://support.wpbakery.com to explain the question in detail, so that our support team will be able to guide you with it.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Hi, is it possible to set default templates for a multisite network?
Hello, You can set default templates for the respective post types under general settings of the plugin.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
I have created a template of a Row which includes a Testimonial Slider. On some pages the template has the styles which I set in the template on others it only has partial styles? I am using The7.io theme. Please help.
Hello, Please use support.wpbakery.com and share your temporary website credentials so our support team can investigate your issue and help you out.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Thanks, but I can’t sign in as it’s not accepting my license for Templatera. I do not have a license for WPB as it was part of the theme.
Hello, Please drop us a message via our profile contact form along with the login details, so that we can get back to you.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.
Hi, please is there provision to manage investors profile and show progress on your platform? Working on a project where clients are to invest and see their investment progress on their dashboard. need a template for this function.
Hello, Unfortunately, we do not have such a functionality in templatera. The add-on allows you to create an manage the page builder templates.
Knowledge Base ·
Official Support ·
Facebook ·
Twitter
Don’t forget to join our newsletter. Be first to get news and inside secrets from WPBakery team.