22359 comments found.
Hi AJ, I updated the theme and updated Wordpress as well, but now when I view the site on a Mobile phone, the Header Aside Content is not formatted correctly and a dropdown timer that I created as well. The logo is not centered as well. I checked the settings and from what I can see, the settings are correct. I am not using a child theme. How can I get everything to look correctly after updating? Thanks
Here’s a screenshot of the error.. http://updated.chiroxtrav.com/downloads/total-mobile.png
Thank you for your patiene over the weekend.
Since I didn’t see it previously I am not 100% sure what you wanted it to look like. Do you have a screenshot of what it used to look like?
One thing I do recommend is maybe tweaking the mobile menu toggle style: http://wpexplorer-themes.com/total/docs/mobile-menu-toggle-styles/
So rather then having the toggle on the right side of the page you can use the fixed topbar style or the Navbar style which will leave more room in the header for your header aside content.
The logo shouldn’t be centered by default, but it can be done via some custom CSS: http://wpexplorer-themes.com/total/snippets/center-logo-for-mobile-devices/
- AJ
Hi AJ, no problem. Here is the way its supposed to look.. http://updated.chiroxtrav.com/downloads/total-error2.PNG
Oh yes actually several updates ago I removed the CSS that removed the floats of the header aside on mobile due to the large amount of requests. Sorry for the confusion and issue on your site! If you go to Theme Panel > Custom CSS and add the following it should fix it for your site:
@media only screen and (max-width: 959px) {
/* Center logo */
#site-header #site-logo {
float: none;
display: block;
text-align: center;
width: 100%;
max-width: none;
}
#site-logo-inner {
display: block;
}
#site-header #site-logo img {
display: inline;
float: none;
}
/* Remove header aside float */
.header-two-aside {
float: none;
text-align: center;
}
}
I still recommend checking out the various mobile toggle menu styles though! When using the mobile toggle style you have right now with the icon on the right the theme adds a padding to the left side of the header to give room for it so the header has 80px padding on the right side shifting things over.
- AJ
Hi there,
I have a question: does Total have the native option to split a single post up into different web pages? For my blog, I’ll publish long posts so I need to activate the multiple pages view into a single post.
I tried pasting the <!-nextpage-> code into the text mode editor view, but nothing happens, the post hasn’t split up into multiple pages.
How can I activate this option? I’d like to prevent the usage of an external plugin to do so.
Thanks in advance,
Mauro.
Hi Mauro,
Yes Total does support the nextpage function. I just tested locally to double check and make sure there isn’t any bugs, when using nextpage you should see some links like this: http://cl.ly/2B04081p1b1C
They don’t have much styling added to them. I will add default pagination style to these in the next update!
Make sure when adding the nextpage link you do it in “text” mode it will not work in visual mode – http://cl.ly/3H0V0b0r3F3E
- AJ
Hi AJ,
I checked again and now everything works. Maybe it was a cache problem, but I’m not sure about that because before writing the comment here in the support section I tried to empty all caches on browser and WordPress. What do you think about insert a button with the URL for every page? Just to create a temporary custom style while you add this function (and I really thank you about that).
Mauro.
Hi Mauro,
Glad it’s working!
Sorry I don’t understand what you mean by “what do you think about insert a button with the URL for every page”. Can you please explain or share an example? Thanks!
- AJ
Hi AJ,
I was wondering about replacing the simple page number on the bottom left (the number automatically added using the <!-nextpage-> tag) with the usage of buttons added with the shortcode, linking a page of the post to every button.
But doing this I don’t know how to hide the multipage number created using the <!-nextpage-> tag.
Actually, I’m not able to give you an example because I’m not working on my website, I’m sorry.
I hope I’ve been clear with my explanation.
Thanks,
Mauro.
Oh ok. So if you want to hide the default buttons you can add this CSS to your site at Theme Panel > Custom CSS:
body .page-links { display: none; }
That will hide the default links.
- AJ
Awesome, as usual!
Many thanks, AJ! I’m everyday happier about having bought your theme!

Where do I change the text for the Post Series box at the bottom? I’ve tried updating it in Theme Panel > General but it doesnt change on the front end.
Thanks!
Sorry I am not sure what text at the “bottom” you are referring to. This what the Post Series box looks like: http://cl.ly/1q0c013T2U0Q – it should just be a list of links to the various posts. Can you please specify the exact text you are trying to alter? Thanks!
- AJ
Hello! In the screenshot, there’s this portion that says “Post Series: Ultimate Web Design Series”
I want to change the text “Post Series” to “More in this series”, so it reads like “More in this series: Ultimate Web Design Series”
I changed it in the theme panel > general settings but it does not change on the front end.
http://cl.ly/3u1k0h3j390aOh that option changes the names in the WordPress dashboard, there isn’t any built-in option to change the text on the front-end where it says “Post Series”.
If you are using a child theme – total_child_theme – you can add this to your functions.php file in the child theme:
set_theme_mod( 'post_series_heading', 'More in this series:' );
I just added the option in the Customizer for the next update! http://cl.ly/2l190I243830
- AJ
awesome! thank you AJ!
Hi there! Skype Social link doesn’t work in Font Awesome Social Widget. Skype link format should be: “skype:<user_name>?call” but when I put such kind of a link – it doesn’t working
The theme uses the WordPress esc_url function for security reasons, which seems to strip out the skype calls. If you are using a child theme you can add this function to your child theme to fix it:
function ss_allow_skype_protocol( $protocols ){
$protocols[] = 'skype';
return $protocols;
}
add_filter( 'kses_allowed_protocols' , 'ss_allow_skype_protocol' );
I will add a fix for the next update, thank you for the heads up!
- AJ
Thnx, AJ, Its pretty works! I have also few small questions for you to ask:
1) I’ve tried using function my_search_placeholder() to customize my search placeholder text (I’ve added function text and change text in the row “return __( ‘Your custom text’, ‘wpex’ );” ‘Your custom text’ -> on ‘my some new custom text’) and after adding function my site crashes down and browser shows “HTTP ERROR 500”. Maybe I miss something. Point me please
2) Also, I wonder if you have some snippet or hook or gave me the cue: how I can add extra share button (social net vk.com) -> social share section -> single blog post?
Great!
1. Actually a recent update won’t let the search replacement filter work – I added a fix for the next update. It won’t cause a 500 error though it simply won’t work. If you are getting a 500 error it’s because there is an error in the PHP file. Please paste the full code on a gist if you want me to look – https://gist.github.com/
2. Adding a new social share link would require copying the file from partials/social-share.php to a child theme. But you can easily replace the Total share with any social sharing plugin if you want you can just find a plugin that better suits your needs. Example: http://wpexplorer-themes.com/total/snippets/replace-total-social-share-shortcode/
- AJ
Thnx, AJ, that helps me great!
Hi. I am getting this error when trying to open customizer. Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 12288 bytes) in /home/bfmagazine/public_html/wp-admin/includes/media.php on line 766
I see you suggesting that it is a server error. But i never got this error before. I have read that people have solved this issue by installing again. Is it possible to erase parent theme and reinstall without loosing changes. All my changes are in child theme.
Thank you
Hi,
This is a server-related error. You need to increase your server’s PHP memory limit – http://wpexplorer-themes.com/total/docs/increasing-memory-limit-to-php/ – if you aren’t sure how, your webhost should be able to do this for you.
Total has more options in the Customizer then other themes so your server will need more resources then others.
If you are on a low budget server increasing the PHP memory limit should fix it but if it’s a bit slow you can always go to Theme Panel > Customizer Manager and disable various options from the customer that you won’t be using at that time and it will speed things up.
Let me know if you have any questions/issues with this!
- AJ
Thanx AJ. That fixed the issue. Just to let you know. Godaddy has a page in c panel that allows you to change php limit . Editing the WP config file did not make any difference.
Oh awesome. Thanks for letting me know about that. I’ll be sure to add a comment on the documentation page!
- AJ
How to relate one post to another? I am adding a blog section of my Total site and want to be able to display related content within a blog post ….. can someone give me a quick tip on how that is done? Thanks!
Hi,
The related blog posts are based on the category it’s in. So if you put posts into the same category they should be related to each other.
But you can also alter the related query via a child theme if you prefer to use tags instead for example: http://wpexplorer-themes.com/total/snippets/related-blog-posts-based-tags/
Hi. In a boxed layout, how do you make a column to stretch or cover the full with and height within the row? Like this http://cl.ly/0e311l0b1l3v
Or like this: https://www.youtube.com/watch?v=e2wEqDtBD2E
Hi,
In order to stretch a row you have to options.
- Use the full-screen layout see here: http://wpexplorer-themes.com/total/docs/full-screen-rows/
- To make column backgrounds have the same height there is an “Equal Heights” option in the main row settings: https://www.youtube.com/watch?v=eaZB4DkXWNQ
Please let me know if you have any other questions or issues with this!
- AJ
Just FYI for others looking to do the same: (this is for the boxed layout) I added a row, split it in columns. In the row settings, Spacing Between Columns, choose 0px. Equal Column Heights, choose “yes”. then change the color on each column.
Thanks for sharing with others!
Hi, is it possible to have an bannerimage over the blogpage ? Currently my only solution would be Revolution Slider. But i want to save performance, cause i only need one Image. Maybe possible via an hook ?
The easiest thing to do is to simply setup your main blog page to use the “Blog” page template (so go to Settings > Reading and make sure it’s not set to display latests posts). This way the blog will use a standard page so you can add a featured image to it or you can use the Visual Composer to add content above it.
Or of course you can use a hook, please see here: http://wpexplorer-themes.com/total/docs/action-hooks/
ps: Also the slider field will accept html if you want to image HTML in there.
- AJ
Using Construct demo.
Upon scrolling, menu (in top) gets hidden. In order for it to show-up again I need to scroll all the way to the top.
How can I make it so that once I start scrolling upwards, it gets shown.
Thanks!
You can log into WordPress and go to Appearance > Customize > Header > Sticky Header and select your style of choice: http://cl.ly/1J1e0G0L2U2m
This will make the header “sticky” as you scroll down the page so it’s always visible.
- AJ
Works on desktop, not on mobile. Can’t see the header on mobile on scrolling.
The Construct demo uses the “Toggle” mobile menu style which can’t support a sticky header because the menu must toggle below the header and if it’s too long and the menu is sticky it would be impossible to view all items. If you select a different mobile menu style – http://wpexplorer-themes.com/total/docs/mobile-menu-styles/ – then if you go back to the sticky header settings you will see a checkbox to enable sticky on Mobile.
Make sense?
- AJ
Yup. Thanks for quick response.
1. The menu button on mobile + the actual menu on desktop isn’t vertically aligned in sticky header.
http://i.imgur.com/Vx4uWVz.png2. Is there a way to click parent page (that isn’t linked to anything, just serves as a parent page) instead of the button to show child pages in mobile (sidebar header settings).
3. Now it’d be better if the header gets hidden, not sticky on the top. Once I start scrolling upwards it should be shown. Can you add this for future requests?
Thanks!
1. It should be, can you share the URL so I can have a look?
2. Yes, but it requires custom code via a child theme since it requires various javasript edits, please see here: http://wpexplorer-themes.com/total/snippets/sidr-dropdown-target/
If you don’t have a child theme and wish to set one up see here: http://wpexplorer-themes.com/total/docs/child-theme/
If you prefer though I can make you a little plugin for the mobile menu toggle thing that you can simply install and activate – let me know! As I started making some for customer requests – http://wpexplorer-themes.com/total/extensions/
3. This is a completely different type of sticky header. You mean the header becomes sticky only when scrolling up but not down. I have seen this function on various sites lately (not a huge fan actually – well not a fan of any sticky on mobile because there is so little screen space anyway) but a couple customers have requested it so I may look into adding the setting in the future. Believe it or not, it’s actually a massive edit because there are so many choices and options for the header and customers can tweak the hell out of things so there is a lot to consider, but I do plan on including this style of sticky header as well as one that appears after scrolling past a certain location (defined by customer). Just not something I can do yet, but hopefully in the near future!
- AJ
The url is web.holandtravel.ba (I’m developing there, will move it to other domain once it’s done).
2. I’ll take a look into creating child theme tomorrow. I prefer that over a plugin. Does this hide/disable the arrow? I’d like both text and arrow to work.
3. Yup. Scroll up header appears, scroll down it gets hidden.
Any update on vertical alignment?
Sorry for the delay. The alignment has to do with the fact that you have the “shrink header” function enabled but you are using a text logo which can’t be shrunk (text doesn’t have a fixed height that can be altered since it’s standard font), this causing a little discrepancy. I’ll make sure to update things so if a custom logo is not defined this doesn’t happen.
If you are using a text logo and not an image logo please go to Appearance > Customize > Header > Sticky Header and select the standard sticky header style : http://cl.ly/1A2w1j2k1X2v
I’ll add a fix/tweak for this in the next update. Thanks for the heads up!
- AJ
I added the code for sidebar on mobile, but still doesn’t work when I click on the menu. I still have to click on the arrow.
Added child theme, and in the child theme’s function.php added the code. Hope that’s the right way.
Yes that is the correct method. Can you please share the URL so I can have a look? Thanks!
web.holandtravel.ba
Seems I haven’t activated it (actually did but returned parent theme later on).
How do I export customizer settings?
Please see here – http://wpexplorer-themes.com/total/docs/child-theme/
I am looking at the live site and it appears that the function isn’t running or your site is being cached. Can you double check?
Sorry. Works fine now. Thanks for help!
We have purchased Total theme from theme-forest and after updating this theme to its latest version, Visual Composer stopped working. A message is appearing to my dashboard that please update visual composer also and “Apply License ” button is appearing. When I click that button then this message is appearing “NO LICENSES FOUND”.
I need the latest version 4.11.2 of Visual Composer which is compatible with WordPress 4.5. VC version 4.11.1 is not compatible with Wordpress 4.5.
Thanks in advance.
M
Hi,
Are you sure your theme is updated to the latest version 3.4.0? http://wpexplorer-themes.com/total/changelog/
The theme includes the latest version of the plugin. Please see here: http://wpexplorer-themes.com/total/docs/updating-visual-composer/
The easiest way to update is if your theme is up to date simply disable the plugin then go to Appearance > Install Plugins and you should see an update available for Visual Composer. Then you can update it then re-enable the plugin.
The reason I suggest disabling the plugin is to prevent any problems with the WordPress update transients.
Please let me know if you need further help with this!
- AJ
M
Hi,
It sounds like your theme is not up to date. Please update your theme. To do that you must setup auto updates:
After you update your theme you should be able to update the Visual Composer without any issues.
When you go to Appearance > Themes your theme should be version 3.4.0 which is the latest version. Otherwise you will not be able to update the plugin.
Please let me know if you are still confused!
- AJ
M
Hi,
It’s very simple.
- De-activate the Visual Composer
- Go to Apariencia > Install Plugins
- Select to update the plugins : http://cl.ly/1G1T3F3G0F2l
- Re-enable the Visual Composer
Please let me know if you still have troubles!
- AJ
Hi, I just did it yesterday before I read your message and it worked, so thanks a lot. I have another problem after I update the theme and visual composer. When I try to add a new element, I miss some elements like: portfolio grid, staff grid, staff carousel and some more…Do you know why? Thanks for helping.
M
Hum…
First go to Theme Panel and make sure the setting called “Total Visual Composer Modules” is enabled as well as the various post types. For example if you disabled the “Portfolio” function in the Theme Panel then of course the Portfolio modules will not display.
Also go to Appearance > Role Manager and make sure all the elements are enabled.
More info here: http://wpexplorer-themes.com/total/docs/visual-composer-issues/
Thanks! I will try during this day and I will tell you what. Have a nice day!
M
Hey thanks! All the elements are visible now. One more thing. When a try to use “read more” to make short a simple text, it doesn´t work. The text keeps the same size even I put the tag. I don´t know how to fix. Thanks in advance.
M
Could you please open a new comment thread for this issue? Thanks!
Also please let me know where you are inserting the read more tag (posts, portfolio, staff, page…etc) and also where you are displaying it (archive or Visual Composer module).
If you can share a live example and screenshot that would be very helpful!
The way the theme works is it checks for the more tag and applies it if it is found. If that is not happening I do need some extra info to test myself. Thanks!
- AJ
hi there!
i just have a little fatal error ( xD) on installing the theme, first of all, i can’t install it from the wordpress uploader. i had to get into the cpanel and add it manually on the last version of wordpress and also the last version of this theme.
after that i installed the plugins that comes with the theme and here is when the fatal error comes up, and says “Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122 bytes) in /home/esteban1/public_html/wp-includes/plugin.php on line 107” and i really don’t know how to fix it. i really need your help. thanks in advance, and sorry for my bad english skills
Hi,
You’ll need to increase your server memory limit, please see here – http://wpexplorer-themes.com/total/docs/increasing-memory-limit-to-php/
If you don’t know how to do this you will have to ask your webhost to help you out.
If you couldn’t install the theme via WordPress you were probably getting the same error (but it doesn’t show it). Please see here for future reference: http://wpexplorer-themes.com/total/docs/theme-installation-errors/
- AJ
Hi again and thanks a lot for the quick answer to the previous my question and everything is corrected as you told to do. Now I would like to ask how I can add Facebook share -botton to topbar ? Best regards Sari
Hi Sari,
If you want to add social sharing to the topbar the best way would probably to install a social sharing plugin that has a shortcode so you can insert that shortcode into your Topbar “content” setting in the Customizer.
But if all you want is a facebook share button you can create your own and add it to the site as well – https://developers.facebook.com/docs/plugins/share-button
The javascript code should be added in Theme Panel > Custom Actions in the wp_head option. And the HTML would be added of course to the Topbar content setting in the Customizer.
- AJ
Hi, I used Shareaholic plug-in but I did not get Share Button making top bar? It always went to below, not on the same line as other in top bar – is it possible to get there? You can look at the www.satubarish.com site. Now share botton is below. Thanks best regards Sari
Hi Sari,
Shareaholic automatically adds the links to the end of the post. If you want to add it to the top bar you’ll need to use a shortcode. Have a look at the manual usage instructions here: https://wordpress.org/plugins/shareaholic/installation/
- AJ
Anybody else missing the “Sticky Header” menu in the Customizer? I’ve cleared both my browser and server caches after updating the theme and it’s still just the same old “Sticky Menu” option.
BTW, WPExplorer, I saw you mentioned that Visual Composer hasn’t been updated since the 7th – it was actually updated to 4.11.2.1 on 4/16, the author just failed to update the changelog on their CodeCanyon page.
If you are using Header styles 2, 3 or 4 it actually creates a sticky menu so you should now instead see a tab for Sticky menu. This was done to avoid any confusion when using those header styles.
Can you confirm if this is the case?
Ah, got it. I am using Header style 2, so I’m only seeing “Sticky Menu”.
Unfortunately the reason why I was looking for the other customizer option was that the menu is no longer sticky after updating to 3.4.0 and from the release notes I thought I needed to go update the settings to get it to stick again….
Hum. The menu should be sticky still. If it is not there could be a javascript error on the page, can you share the URL so I can have a look?
Here is an example of a live demo with the sticky menu so you can see it should be working: http://totaltheme.wpengine.com/mason/
- AJ
Got it working again. Thanks!
Hey there! I would love to see Total include the Ultimate Addons for Visual Composer plugin. I think Total is amazing in it’s functionality, but it does lack the visual flair and modern elements that other themes offer. Ultimate Addons would add most of this and really help round out Total.
Would you agree, or have any thoughts on this? I’ll keep my fingers crossed that Total includes this in the future.
Thanks.
There are many reasons why I would avoid bundling that plugin. But you are more then happy to purchase it and use it if you want to 
Whenever a plugin is bundled I must provide support and updates for that plugin. So if that plugin has any bugs, issues I must support it. It is a massive plugin and I could end up potentially spending more time and money supporting it then it could potentially increase earnings. We already get enough tickets and spend a considerable amount of money forwarding customers to the correct place for help for that plugin without even having it bundled. That’s one of the main reasons. But there are others.
For this particular plugin it’s best if customers purchase it on their own so they do have access to the direct support from the seller.
Hope this makes sense!
- AJ
ps: Total already has many custom modules included if there is a specific 1-2 things from that plugin you would like to see in Total let me know (just give me the names I can locate them, no need for urls). I may consider including modules for these things in future updates.
Thanks AJ. That makes good sense. Do you think there’s any reason it would not play nicely with Total? I think that’s one benefit to a bundled plugin; it’s been fully tested and styled to fit well with the theme.
I have many customers using the plugin I don’t see why there would be any issues if the plugin has been developed correctly. If you do have issues they should be able to fix them for you.
Total does make 1 tweak to rows – http://wpexplorer-themes.com/total/docs/why-total-tweakd-vc-rows/ – but that should have 0 affect on custom modules added by a plugin.
- AJ
Thanks, that’s good to know. I really do love Total and have been using it for more and more client projects. I may email you privately with my wishlist at some point when I’ve had a chance to try out Ultimate Addons with Total. Thanks again for your help!
If you do so, please open a ticket and request it be forwarded to me – http://wpexplorer-themes.com/support/ – all direct messages receive an auto response so you won’t be able to contact me that way. Just a heads up!
- AJ
Thanks for the tip.
I am replacing the site header with a custom page using the provided code: http://wpexplorer-themes.com/total/snippets/replace-site-header-with-page-builder-content/
Now the mobile menu will not function. I am getting the “Fixed Site Top” option to show up, but when clicked or pressed, nothing happens. Any ideas?
You will need to share the URL so I can have a look. Because the mobile menu assumes you have a header (so it can grab the links from the main navigation) it is probably throwing an error. I am guessing you are using the mobile menu alternative location? So maybe I ned to add a little fix for that. If you can share the URL to confirm that would be great!
- AJ
The site is in maintenance mode so I will need to give you an admin login. Can I pm that to you?
That would be great! http://wpexplorer-themes.com/support/
Please request that your “ticket” be assigned to “AJ” to make sure I can get back to you on this since it may likely require a theme update to fix the issue. If you want you can send temp FTP access for me to fix it on your site manually so you don’t have to wait for the next theme update.
Please also copy/paste what you wrote in the first comment or re-explain the issue in the ticket since I get so many questions I may forget. Thanks!
- AJ
I just sent you a pm with that info, but I will open up a support ticket.
If you send any PM you will just get an auto reply since it goes to an un-used email
A ticket would be best.
It has been done. Thanks for your time and support!
Great. I do have many tickets right now but I’ll try and get to you as soon as possible. Thank you for your patience!
Just bought theme and I’m not terribly happy about having to customize the theme within Appearance > Customize. It’s clunky and half the time that I click “Save & Publish” nothing happens, and when I click out it says “Are you sure you want to leave without saving changes”
Hi,
If things are getting saved and you are getting the error notice “Are you sure you want to leave without saving changes” these are server related issues. You can try contacting your webhost to see if they can be fixed. I have a troubleshooting guide here: http://wpexplorer-themes.com/total/docs/troubleshooting-customizer/
The Customzier in Total is actually one of the fastest out there, I’ve made a lot of optimizations to speed things up while working in the Customizer and using the Customizer is a lot more secure and less bloated then using a custom Theme Panel. Total actually used a standard theme panel but I removed it due to the high requests from customers.
If you are on low budget server and things can’t be sped up my recommendation is to go to Theme Panel > Customizer Manager and disable sections you won’t be editing prior to making your edits. This will greatly speed things up as it will only load options you want to edit (Typography is the largest settings and disabling it should speed thing sup significantly).
Also depending what you have on the homepage itself can make a difference. If your homepage is very large, composed of a ton of elements or is taking a long time to load that will of course slow things down.
But 99% of the time it just comes down to server resources.
Please let me know how else I can help out I would like to get things working smooth for you and maybe I can cook up some more tips or things to look into 
- AJ
Thanks for the tips! Increasing the Memory Limit in wp-config.php seemed to help tremendously.
Oh awesome. Sometimes it can help a lot and sometimes very little 
Limiting the tabs you have on the Customizer will help the most as well (Theme Panel > Customizer). And you can also try out this plugin – https://wordpress.org/plugins/hide-wp-customizer-options/ – removing the menus and widget areas could really speed things up as well if you don’t care to edit those things there.
- AJ
I am displaying a custom header with the below function but after the update it is not showing my navigation anymore. Any ideas how I can include the navigation in my header-home.php
FUNCTIONS
// Disable default header on homepage function my_disable_home_header( $return ) { // Return false on front page if ( is_front_page() ) { return false; } // Otherwise return theme var else { return $return; } } add_filter( ‘wpex_display_header’, ‘my_disable_home_header’ );
// Add new header for the homepage function my_custom_header() { // Return if not homepage if ( ! is_front_page() ) return; // Include your custom file here include ‘header-home.php’; } add_action( ‘wpex_hook_wrap_top’, ‘my_custom_header’ );
////This is what is inside my header-home.php
<?php wpex_hook_header_before(); ?>
<header id=”site-header-home” class=”<?php echo wpex_header_classes(); ?>”<?php wpex_schema_markup( ‘header’ ); ?>>
<?php wpex_hook_header_top(); ?>
<?php putRevSlider("home-header"); ?>
<?php wpex_hook_header_inner(); ?>
<!<?php wpex_hook_header_bottom(); ?>
</header><!- #header ->
<?php wpex_hook_header_after(); ?>
Could you please paste your code on a Gist – gist.github.com – because a lot is being stripped out and it’s very hard to see what’s going on.
- AJ
thanks for looking: https://gist.github.com/anonymous/710f2d88ea25f971f65065d7716d41d3
Thanks!
Oh ok, I added a new check to prevent any menu functions from being added to the site if the header was disabled (to optimize things – see framework/classes/global-object.php – http://cl.ly/3m3o343D3l1p).
Since your first function disables the header it will also disable the menu. Here is a another solution that simply removes the header and adds your own. Because technically you aren’t disabling it, you are replacing it.
function my_replace_page_header() {
if ( is_front_page() ) {
remove_action( 'wpex_hook_main_top', 'wpex_page_header' );
add_action( 'wpex_hook_main_top', 'my_custom_header', 0 );
}
}
add_action( 'wp', 'my_replace_page_header', 10 );
function my_custom_header() {
get_template_part( 'header-home' );
}
Let me know if you have any issues with that.
There are other options but I think this is best.
I’ll see about maybe adding my own function wpex_get_template_part this way you can easily override template parts via a filter like this:
function my_override_header( $part ) {
if ( is_front_page() && 'header' == $part ) {
$part = 'header-home';
}
return $part;
}
add_filter( 'wpex_get_template_part', 'my_override_header' );
That would be much better/easier. Maybe I’ll add it at least for the core site elements since adding it everywhere may slow things down a tad.
- AJ
Ok so I am adding 2 new functions and a filter in the next update. So after you update you will be able to replace the header with only this code:
function my_header_part( $parts ) {
if ( is_front_page() ) {
$parts['header'] = 'header-home';
}
return $parts;
}
add_filter( 'wpex_template_parts', 'my_header_part' );
Here are the 2 new functions being added: http://cl.ly/2Q2i2f1e421d
And I will add at least the core template parts to this function. It should make things a lot easier and less bloated for child theme replacements 
the only issue I am having now is on the home page I get two headers (custom and standard) when using the below code.
function my_replace_page_header() {
if ( is_front_page() ) {
remove_action( 'wpex_hook_main_top', 'wpex_page_header' );
add_action( 'wpex_hook_main_top', 'my_custom_header', 0 );
}
}
add_action( 'wp', 'my_replace_page_header', 10 );
function my_custom_header() {
get_template_part( 'header-home' );
}
This code:
remove_action( 'wpex_hook_main_top', 'wpex_page_header' );
Should be removing the default header. Did you edit the hook the header was added into?
I of course tested the code before sending it to you so it should be working on the latest version of the theme.
- AJ
I have version 3.4.4 and I did not edit the hook.
for some reason it is not removing the header but it is adding one in fine.
I even tried to remove the header with just the code below and it would not remove:
function my_replace_page_header() {
if ( is_front_page() ) {
remove_action( 'wpex_hook_main_top', 'wpex_page_header' );
}
}
I am looking forward to the update and appreciate all your recent changes to make this happen.
Very weird!
If you want you can tweak the parent theme to make use of the new functions 
- First open framework/core-functions.php and add the following anywhere:
/**
* Get Template Part
*
* @since 3.4.1
*/
function wpex_template_parts() {
return apply_filters( 'wpex_template_parts', array(
'togglebar' => 'partials/togglebar/togglebar-layout',
'topbar' => 'partials/topbar/topbar-layout',
'header' => 'partials/header/header-layout',
'header_logo' => 'partials/header/header-logo',
'header_menu' => 'partials/header/header-menu',
'header_aside' => 'partials/header/header-aside',
'page_header' => 'partials/page-header',
'page_header_title' => 'partials/page-header-title',
'page_header_subheading' => 'partials/page-header-subheading',
'footer_callout' => 'partials/footer/footer-callout',
'footer' => 'partials/footer/footer-layout',
'footer_widgets' => 'partials/footer/footer-widgets',
'footer_bottom' => 'partials/footer/footer-bottom',
) );
}
/**
* Get Template Part
*
* @since 3.4.1
*/
function wpex_get_template_part( $part = '' ) {
if ( $part ) {
$parts = wpex_template_parts();
if ( isset( $parts[$part] ) ) {
get_template_part( $parts[$part] );
}
}
}
Next edit framework/hooks/partials.php and locate line 64 and change where it says:
get_template_part( 'partials/header/header-layout' );
to say:
wpex_get_template_part( 'header' );
Then you can use the new method: http://wpexplorer-themes.com/total/snippets/using-wpex_template_parts/
Since this will be available in the next update you won’t have any issues after updating. This would be best I think!
- AJ
looks like I am opening up a can of worms here. made the changes and get the following error.
Fatal error: Cannot redeclare wpex_get_template_part() (previously declared in /home/paylesscoffeeand/public_html/wp-content/themes/Total/framework/core-functions.php:83) in /home/paylesscoffeeand/public_html/wp-content/themes/Total/framework/deprecated.php on line 158
Oh no I forgot to tell you something….
Open Total/framework/deprecated.php and delete the function from that file. I actually had this function in version 1, never used it, so I deprecated it. But now I am re-adding it and actually using it 
- AJ
Yea!!! that worked thanks
For those that are having issues with Visual composer – aside from the necessary steps needed to update as wpexplorer has explained (which I also did) but didn’t help. As a test, try creating a new admin account and retest. This worked for me – my original admin account still has problems but at least the new admin account that I set up allows me to use visual composer with Total and no problems. Why the original admin account got corrupted in regards to VC – I still have no clue but at least this is worth a try – at least for troubleshooting but this is NOT a theme issue for what it is worth guys.
Total fix (for me anyway) is open cmd.exe as administrator and run ipconfig /flushdns – problem solved! Thanks AJ for all the help!!
Thanks for sharing! I just responded to your ticket as well. Really appreciate it.
- AJ
Hello – My page titles are still showing after I tried to disable them globally by going to General Options>>Page Title & selecting Hidden. Is it a better practice to go to each page & disable them instead? I would like to avoid touching each page if possible. Thanks!
Hi,
The setting in the Customizer should work. I just re-tested and there isn’t any issue in the current version of the theme.
The only thing I can think of is if your pages have it set to “Enabled” rather then “Default” on the page itself: http://cl.ly/3m1d0h3l0y1E
Hiding it globally is the best and easiest solution!
If it’s not working please check the settings as mentioned above and also make sure you don’t have any child theme modifications that could be breaking that option.
- AJ
I looked in my css & child & I’m not seeing anything. I also checked & the pages are set to Default. Do you mind taking a look. I’ll submit a ticket & ask that it be forwarded to you. Thanks!
Sure thing.
I was almost done with my website design using Total, but three or four days ago Visual Composer wasn’t working. Then I had a searched on support and got some reply that I need to update Total to update Visual Composer, so I did. And Visual Composer started working again. I was deactivated Visual Composer before update my theme, after updated, I also updated VC. Then its started working again. But the incident is that, my existing design lost the responsiveness specially on multiple div area for text or icon box. Please look at my website at: https://cutoutquick.com
TIA!
Hi,
It looks like responsiveness is disabled for some reason. Log into WordPress and go to Visual Composer > General Settings and make sure this option is not enabled: http://cl.ly/0s040z2F2D2i
It was a big help, since I was waiting for your reply. Many thanks, responsiveness working now 
Great! Thank you for your patience 