-
AuthorPosts
-
July 21, 2014 at 5:00 am #293718
I tried to create a page template that I plan to use over and over and then use the “vice versa” plugin to convert it to a post because I’ll need these posts to populate using the magazine shortcode.
The problem is that after i open the post the shortcode for Layout Element 2/3 + 1/3 won’t format correctly. As seen here: http://www.directionscounseling.com/wp/uncategorized/michael-bayda/
What am I missing? How come it won’t format correctly?
July 21, 2014 at 3:27 pm #293879Hi satucker!
Can you post a link to your page where we can see how it should look?
Cheers!
YigitJuly 21, 2014 at 4:16 pm #293894It should just look like a page with a sidebar. If you log in to see the html of the page you will see that its set up to be a 2/3 + 1/3 layout but it is populating with the 2/3 content as the whole page and the content in the 1/3 section does not appear at all.
July 22, 2014 at 5:00 am #294162Hey!
Thank you for the info.
Unfortunately, the POST does not support the advance layout builder. You need to create the template on the post itself using the shortcode wand. You can actually use the advance layout builder for post but it is not advisable. Edit wp-content > themes > enfold > config-templatebuilder > avia-template-builder > config > meta.php, find this code on line 5:
array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
Replace it with:
array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page', 'post'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
If you don’t want to do this, just use the shortcode wand.
Regards,
IsmaelJuly 22, 2014 at 5:02 am #294164I did use the shortcode wand to make the 2/3 +1/3 layout. What is missing that the 1/3 version won’t show up?
July 27, 2014 at 12:27 am #296299Hi!
The content was not in a one third block at all from what I can see. It was empty. It should be:
[av_two_third first]Add 2/3 Content here[/av_two_third] [av_one_third]Add 1/3 Content here[/av_one_third]
With all of the content inside of each.
Best regards,
Devin -
AuthorPosts
- You must be logged in to reply to this topic.