Viewing 3 posts - 1 through 3 (of 3 total)
-
AuthorPosts
-
August 26, 2014 at 9:23 am #309196
Hello,
Just a quick question. I would like to include multiple images in the header of a post. What would be the way to go? Can I enbale the Avia editor on the posts and use a gallery?
Thanks in advance!
A missing ‘ in the code answered by Kriesi.at
The right code is:
add_filter('avf_builder_boxes','enable_boxes_on_posts'); function enable_boxes_on_posts($boxes) { $boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio', 'page', 'post'), 'context'=>'normal', 'expandable'=>true ); $boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('portfolio', 'page', 'post'), 'context'=>'side', 'priority'=>'low'); $boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('portfolio', 'page', 'post'), 'context'=>'normal', 'priority'=>'high' ); return $boxes; }-
This topic was modified 11 years, 2 months ago by
originaltours.
August 26, 2014 at 9:32 am #309201Hey!
Yes, you can enable ALB on Posts, add this to your theme / child theme functions.php file:
add_filter('avf_builder_boxes','enable_boxes_on_posts'); function enable_boxes_on_posts($boxes) { $boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio', page', 'post'), 'context'=>'normal', 'expandable'=>true ); $boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('portfolio', page', 'post'), 'context'=>'side', 'priority'=>'low'); $boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('portfolio', page', 'post'), 'context'=>'normal', 'priority'=>'high' ); return $boxes; }Cheers!
JosueSeptember 1, 2014 at 11:36 pm #312009thanks!
-
This reply was modified 11 years, 2 months ago by
AMseptemeber.
-
This topic was modified 11 years, 2 months ago by
-
AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)
- The topic ‘Posts: multiple images’ is closed to new replies.
