Tagged: avia layout builder, bbpress, posts
Hi,
Is there a way to enable the “Avia Layout Builder” for bbPress topics and/or posts? (when creating/editing as admin)
I mean, all drag & drop functionality as when creating pages. Right now I can only use shortcodes or create a page then copy/paste the code to the forum topic or post.
Thanks.
Hi,
Forums don’t support the Advance Layout Editor. You can add this feature by hacking the theme files but we won’t provide support for this customization (i.e. we won’t answer questions like element xy doesn’t work with blg posts, etc.). If you want to add the builder to post pages open up wp-contentthemesenfoldconfig-templatebuilderavia-template-builderconfigmeta.php and replace:
array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
Replace the code with this
array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page','post','forum'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
As stated above, we won’t give support for modifications.
Regards,
Ismael
I know not all Avia Layout features works on posts & forum’s topics. I also know what can I use and what I can’t do on them (after some testings).
I can use the builder in posts and forum and topics (I added ‘topic’ to the array and it works).
thank you.
Glad Ismael could help :)
Let us know if you have any other questions or issues.