Home › Forums › Air WordPress Theme › How to Place PageBuilder Modules Above the Portfolio
- This topic has 9 replies, 3 voices, and was last updated 7 years, 5 months ago by
SeaTheme.
-
AuthorPosts
-
March 15, 2017 at 2:10 am #12321
I would like to put Page Builder Modules above the Portfolio. How do you do that?
March 15, 2017 at 2:21 am #12323Hi,
There are 2 solutions:
1.
Please find functions/interface/interface-hook.php:

Find line 95
add_action('airtheme_interface_page_content', 'arnold_interface_pagebuilder', 20);
update as:
add_action('airtheme_interface_page_content', 'airtheme_interface_pagebuilder', 9);2.
Use flex CSS:
Please paste the custom css code to “Appearance > Customize : Additional CSS”.page-id-1025 #content_wrap {display: flex; flex-direction: column;} .pagebuilder-wrap{order: -1;} @media(max-width:767px){ .container-masonry { width: 100%; } }the 1025 is page ID, how to find it: https://seatheme.net/forums/topic/how-to-find-wordpress-postpage-id/
Cheers!
March 15, 2017 at 3:35 am #12324I so greatly appreciate this response, but I’m afraid I don’t know where to find “/functions/interface/interface-hook.php”. How do I locate that file?
March 15, 2017 at 3:57 am #12325Actually, I put the code directly into the functions.php file and it worked. Is there a way to control what content is above AND below the portfolio?
March 15, 2017 at 4:01 am #12326This reply has been marked as private.March 15, 2017 at 6:29 am #12327Please use the code in child theme
function ux_child_remove_parent_function() { remove_action('airtheme_interface_page_content', 'airtheme_interface_pagebuilder', 20); add_action('airtheme_interface_page_content', 'airtheme_interface_pagebuilder', 9); } add_action( 'init', 'ux_child_remove_parent_function');December 3, 2018 at 12:39 am #17116Hi there,
Can you please tell me how to do this in the Arnold theme?
If I load a child theme will I have to recreate my website again? I had to do it again after importing demo data so I don’t want to do the whole thing a third time!
Cheers,
TessaDecember 4, 2018 at 4:15 am #17140Hi, please refer this post (solution2): https://seatheme.net/forums/topic/how-to-place-pagebuilder-modules-above-the-portfolio/#post-12323
ps: it will not necessary if install the child theme. you don’t remove the main theme.
Cheers
December 9, 2018 at 8:01 pm #17203Hi again,
Line 95 is not the same as in that post, and I just wanted to make sure that it’s for Arnold since the changed code says ‘airtheme’?
So I can install the child theme and it won’t affect the content I’ve already loaded?
Cheers,
TessaDecember 10, 2018 at 12:47 am #17204Please refer solution2, it is custom css, it isn’t necessary to change template file.
https://seatheme.net/forums/topic/how-to-place-pagebuilder-modules-above-the-portfolio/#post-12323 -
AuthorPosts
- You must be logged in to reply to this topic.
