22369 comments found.
Hi AJ. I hope you’re well. I think you have answered this before but I can’t find it anywhere! I need to add some inline css to the page title text (the final word of each heading is in a different color). But, I think the heading text is sanitized and the span style is ignored. How can I overcome this?
For example – Eye level is the best level
Sorry – the code has been stripped out!
“Eye level is the best <span style="color: #808080;">level</span>”
Hi,
The main issue is you should never modify the actual page title because this is also used for your meta tags (for SEO) and it can cause issues in the WordPress admin.
If you must have a styled last word there are better ways of doing that.
One solution is using the theme’s Custom Title field, but using the [span] shortcode instead. See here:
1) Span Shortcode: https://totalwptheme.com/docs/span-shortcode/
2) Custom Title: https://a.cl.ly/6qu4yBW4
If you are doing this to a lot of pages, it may not be a good idea.
If you can share the page in question perhaps I can suggest the best solution.
- AJ
Oh, sorry I made 2 mistakes in my reply!
1. The [span] shortcode doesn’t accept a ‘color’ parameter, instead you would use a classname. Ideally your colors would be in the color palette – https://totalwptheme.com/docs/color-palette/ – then you can use the classname like such:
[span class="has-palette-ID-color"]
If you just want to use blackscale colors, the theme has some options though built-in: https://totalwptheme.com/css-framework/text-color/ – so you could use wpex-text-gray-600 which is similar to 808080.
2. The text needs to be defined in a param. So this is the proper usage:
Eye level is the best [span class="wpex-text-gray-600" text="level"]
Of course the theme’s Custom Title field will allow HTML though if you really prefer that’s totally fine 
- AJ
Awesome! Thank you AJ! I noticed my support has expired – I need to purchase a new license – 33 purchased so far!!
No worries about the support, I’m always here to help 
Thank you for all the purchases, customers like you have allowed me to keep the theme supported and updated for so many years!
- AJ
Hi,
I’m having trouble updating WPbakery. I’m getting a message that I need to purchase a license on WPbakery, even though this should be included with the Total theme.
WordPress and the Total theme are up to date. I’ve also tried disabling WPbakery in the Theme Settings, clearing my cache, re-enabling WPbakery in the Theme Settings, and then updating. This hasn’t worked either.
I’d like to know how I can update WPbakery.
Thanks
Hi,
This is Aj the theme author.
If you recently updated the theme from a very old version, this could be a cached warning in WPBakery. You can simply disable WPBakery (or even delete the plugin) then go to Appearance > Install Plugins to update it.
Total has built-in code to prevent those notices, but if your theme was very outdated (prior to the new code added in the theme) it’s possible that before updating the theme those notices got cached. It’s also possible that those notices can show up if the theme was temporarily disabled. Disabling WPBakery temporarily should clear that up.
Additionally, make sure that you have WPBakery Theme Mode enabled in the Theme Panel. If this is disabled, the theme will assume you are using your own custom plugin license as noted in the docs: https://totalwptheme.com/docs/activate-wp-bakery-page-builder/
Let me know how I can be of further assistance!
- AJ
ps: It’s also a good idea to compare your current theme version with the changelog here: https://totalwptheme.com/docs/changelog/. If the theme license isn’t properly registered or if there are server-related issues you may not see the update notifications in the dashboard, which can make it seem like everything is already updated even when it’s not.
Hi AJ, deleting the WPBakery Plugin and than reinstall it does the trick. Thanks for your support!
Glad it was an easy fix!
Hey there AJ,
I think i found an issue that i want to share with you! The issue is with Total’s Polylang language switcher on taxonomy archives.
When using [polylang_switcher] (Customizer > Topbar), switching from the default language to another language on a taxonomy term archive always links to the language homepage (/en/), even though the translated term exists and get_term_link() returns the correct URL.
Polylang resolves the translated term correctly, but the switcher marks it as no_translation and Total falls back to the language home instead of the translated taxonomy URL.
Pages and CPT archives work fine. The issue only affects taxonomy archives.
It looks like the switcher needs to handle is_tax() and rebuild the URL via pll_get_term() + get_term_link() instead of relying only on pll_the_languages().
Thanks for the great work on Total, it continues to be a TOTAL WIN for our projects 
Hi,
As you mentioned the shortcode uses the core pll_the_languages function, which is the Polylang function recommended for displaying their language switcher anywhere. So if there is an issue with their function you’ll want to report it to them so they can fix it.
Now, I was testing locally and I notice that if the category doesn’t have any translated posts it will redirect to the homepage, but as soon as you add a post it does work correctly.
I recorded a quick video: https://a.cl.ly/X6uyPEov
This issue is also reported here: https://github.com/polylang/polylang/issues/174 – which unfortunately was tagged “wontfix”.
I think this is perhaps the same issue you are having. In which case the code provided by cfaria on Gihub seems to work well:
// Allow polylang redirection to existing terms even if there are empty add_filter( 'pll_hide_archive_translation_url', '__return_false' );
But it’s not something I would add to the theme as it’s un-intended plugin behaviour.
If this is not the issue you are having, you may need to reach out to Polylang for further troubleshooting.
- AJ
Hello!! I am having trouble with both the Woocommerce added to cart pop up and your Off Canvas Cart. Both of them close after only a couple of seconds. Is there a way to force these to stay open until the customer closes them?
BTW, this is a sample of a product page that I’m having trouble with: https://dogsofcourse.com/events/virtual-nose-work-camp-winter-2026/
Hi,
This is Aj the theme author. I hope you had a nice weekend!
By default it should remain open like on my demos – https://totalwpthemedemo.com/bolt/product/black-shoe/
When inspecting your site, I don’t see the theme’s Off Canvas cart enabled, so I’m assuming you’ve temporarily disabled it.
In terms of the cart auto closing, my only guess is that a 3rd party plugin is creating a conflict.
I can see that you’re using a custom setup for your product variations, including a custom AJAX add-to-cart button and a custom popup when items are added to the cart. This setup may be causing the conflict.
The theme’s Off-Canvas Cart is configured to automatically open when an item is added to the cart or when the cart button is clicked, and it only closes when the user clicks outside of the off-canvas area. It’s possible that another script is triggering a focus change or an external click event, which could cause the cart to close automatically. That’s likely what’s happening here.
- AJ
ps: I noticed in your custom CSS you have some code that looks like this:
button {
margin-bottom: 20px !important;
}
This adds a bottom margin to all buttons, so it’s going to break certain layouts, such as buttons on the cart/checkout pages. I’m not sure where you wanted that bottom margin specifically, but it would be a good idea to target only that button and not all site buttons. This code can also break buttons used for elements like sliders, carousels, close buttons (like on popups, mobile menus), etc. If you would like I can assist with tweaking this code, I just need to know which button you want to target.
Thanks AJ, I’m going to bring in my dev to look at it, but if he can’t pin it down, I may be back! Thanks as always for being so thorough on your response.
Hi AJ, I have just installed this theme and when i try and edit the page using the button (or text in top bar))Edit with wpbakery page builder) i get directed to a page saying “sory this page does not exist”. If i disable the plugin, total theme core, this issue goes away. Is there any easy fix for this or an older version that still works?
Hi,
It sounds like you may be experiencing an issue with max string length on your server. Can you try the fix suggested here: https://totalwptheme.com/docs/fix-backend-issues-on-godaddy/
I’ve personally only experienced the issue with shared (not the managed WP) Godaddy servers (hence the doc article name) but it can definitely happen on any server.
- AJ
Hi AJ,
This fix worked, thank you!!
Josh
Glad it was an easy fix Josh, I hope you had a nice weekend!
Let me know if there is anything else I can assist with.
- AJ
On my check out screen, for the pulldown for states and countries, the words disappear because they are white. How do I change them so you can see them?
https://miningrecord.comI entered 2 support tickets and have not heard back from you
Sorry for the delayed reply.
I’ll respond both here and on the latest ticket.
I can see that you’ve already added some custom CSS to address the issue. I made a small tweak to it to also include a background color, since it wasn’t very clear which option was currently selected.
The root of the issue is that, by default, WooCommerce applies a blue background with white text to select fields on hover. In Total, that blue background is replaced with the site’s accent color to better match the design. In your case, the accent color is set to white, which results in both the background and text being white.
I’ll be adding a fix for this in the next theme update (thanks for bringing it to my attention). The text color should be pulled from the “On Accent” color instead, which will prevent this type of issue.
That said, there is another configuration issue on your site, which is that both your Accent and On-Accent colors are currently set to white (see here: https://a.cl.ly/Kou2XygQ)https://a.cl.ly/Kou2XygQ). The On-Accent color is used for text displayed on top of accent-colored backgrounds, so this setup can lead to white text on a white background in other areas as well. If you’d like to keep white as your accent color, I recommend changing the On-Accent color to a contrasting option such as black or dark gray.
Based on your site though, I would say your Accent color would be better set to orange though (#FF7F00) which you are using as an accent color in various places.
– AJ
Hi! I and running into a strange issue with Total Theme + WPBakery. On my homepage (hudzenphoto.com/home), if the total theme core plugin is deactivated, the header and footer loads, but all WPBakery and Total elements show as raw shortcodes like [vc_row], [vc_column], [vcex_heading], etc. If the plugin is activated, only headers load. Pages without those elements load fine. I tested shortcode registration and both return false: shortcode_exists(‘vc_row’) → NO shortcode_exists(‘vcex_heading’) → NO So it seems the plugins are active but their shortcodes aren’t registering on the frontend. Setup: Total 6.5 + Total Theme Core 2.5 WPBakery 8.7.2 WP latest, PHP 8.1 (also tried 8.3) Memory 512M HostGator Tried already: reinstalling both plugins, disabling all others, resetting permalinks, clearing cache, switching PHP versions. No relevant fatal errors in debug. Sometimes activating Total Theme Core even causes a 503. Has anyone seen Total/WPBakery shortcodes fail to register like this?
Hi,
This is Aj the theme author.
Since you aren’t seeing anything in the error logs most likely there is function running that is taking so long to complete the site ends up timing out. When this happens nothing will be recorded in the logs.
And since the issue only happens on the homepage, it would suggest that it’s being caused by the elements specifically added to the /home/ page.
One possibility is the site might be getting stuck in an infinite loop, which is causing it to crash. This can happen if, for example, you add a Post Cards element and create a custom card that shows the full post content (or set the excerpt to -1, which also shows the full content). If that same element is also set to display pages and ends up pulling in the homepage, it can keep loading itself over and over again resulting in an infinite loop.
But really, it could be any function that is simply taking way too long to process.
The best way to troubleshoot is to copy the content from the page into a new page and delete each element 1 by 1 to see which causes it to break.
I see your support license has expired so you can’t open a private ticket, however, if you create an admin account for me using the email wpexplorer.noreply[at]gmail dot com I can do a password reset, log-in and at least see how things are setup and hopefully spot the issue without needing server access. If you do this, please reply here and let me know so I can check that email as it’s generally not a monitored email. Thanks!
- AJ
Hi Aj, Thank you so much for getting back to me! I followed your instructions, and it looks like most of the issues are resolved. I believe the main culprits were the “Featured Image” and “Image Banner” elements, although both are still causing some trouble. For example, when I change the image size to thumbnail in the element settings, the entire page either doesn’t load or shows a 503 error. Another issue is that the logo in the header doesn’t load fully. I’ve created an admin account for you — please check your email. Thank you!!
Hi,
I tried using the password reset but I’m not getting the email (checked SPAM).
Now, based on what you’ve said, it sounds like there is an issue processing images, more specifically cropped images – if selecting a size is causing issues.
When inspecting your site it appears that images are being “optimized” through a 3rd party plugin as they are using javascript to lazy load and they are linking to a CDN (sp-ao.shortpixel.ai). My guess is that whenever you switch image sizes it’s trying to re-generate and save that image on the CDN (shortpixel) and timing out or it’s crashing as it tries to load it.
Can you try disabling any image optimizing plugins to see if you still have issues?
Which, by the way, using JavaScript to lazy load images is old-fashioned. Modern browsers can do this on their own, so adding JavaScript actually slows things down instead of speeding them up.
In regards to the logo being cropped off, this is an issue with the image itself being cropped by that shortpixel plugin. See here: https://a.cl.ly/z8u2jZer – it seems like shortpixel is cropping the original images. My guess is this is some sort of “optimization” for images that are larger than their “rendered” size, but it’s simply cutting the image in half, not actually resizing it properly.
My personal recommendation would be to disable the Shortpixel plugin completely. If you want to optimize your site images you can temporarily install a plugin that will optimize and convert them to webP format then remove the plugin after it runs. For future images you upload to your site you can optimize them prior to upload using a free service such as this – https://tinypng.com/
Then, if you need a CDN, because the server is slow or you want to limit server usage, you can use a free CDN such CloudFlare.
That’s just my personal preference. I would rather have my images optimized once and not constantly running and/or paying for a service – which in most cases is simply unnecessary.
From what I can tell, your site is currently on HostGator, which depending on the plan could be a budget solution. I don’t personally recommend that hosting, although if you are going to use it, you should at least make sure you are on the WordPress specific plan. The WordPress hosting plan also supports CloudFlare built-in according to their docs – https://www.hostgator.com/help/article/cloudflare-cdn-overview
If you are currently paying for shortpixel, it may be worth instead switching to a better hosting solution that doesn’t require any extra image optimization services. These are the hosting services I’ve used and recommend: https://totalwptheme.com/docs/recommended-services-plugins/#toc-hosting
Let me know if you have any questions or concerns!
-AJ
Thank you so much for your help and advice AJ! It’s very helpful!!
Hi AJ
Just experimenting with a YouTube video background:
https://shorturl.at/XyxwWI notice when the video first loads, the channel name is overlayed in the top left, and the YouTube logo bottom right. Both fade out after a couple of seconds.
But, for some reason, it doesn’t seem to do it every time I try. Weird.
Screenshot:https://ibb.co/Kjtd7YZF
(The company logo is supposed to be there, but not the YT logo).
Has it always been like this? I thought YT backgrounds were distraction free?
Thanks
James
Hi James,
Yes, that’s expected behavior with YouTube videos.
Because it’s a YouTube embed, those UI elements are controlled by YouTube and can’t be fully disabled. WPBakery loads the video inside an iframe, so we don’t have control over what YouTube chooses to show.
YouTube sometimes shows those overlays only on initial load or before the video is fully cached, then fades them out. From what I understand there is no way to reliably hide them :/
The only way to guarantee a completely clean video background is to use a self-hosted video.
That’s generally recommended anyway, since YouTube can throttle playback, change behavior, or force new UI at any time. With a self-hosted video, the behavior is fully under your control and only impacted if the site itself has issues.
AJ
I have an active theme license that up to now was also used on the development website. The development website (i.e. Subdomain and separate WP installation) have now been deleted completely. The live website however still shows “Invalid: Already in Use”. On my account page I cannot change the old URL to the correct URL of the live website. Please advise how to solve this problem. Regards HH
HI,
This is AJ the theme author.
If you log into the site here – https://my.totalwptheme.com/ and click on the License Manager at the top of the site you can then un-register your license from the site it’s registered to.
I had a look and because you have logged into the site before I was able to locate your license and unregister it for you so you don’t have to. You should be able to properly use it on the live site now.
The license manager won’t automatically un-register a license as that would require constantly pinging your site to see if it’s currently live or not – this puts strain on both of our servers and can also cause issues on sites that are in the process of migrating servers or performing server updates. Licenses need to be managed manually.
Additionally, the reason you may not have seen a duplicate license error in the past is because the theme didn’t make these checks in the past and they were recently added in the last update as I discovered there were quite a few sites illegally distributing the theme with a license manually coded into the theme which in the past would have worked. I added additional checks so the theme will validate the license every so often to ensure it’s properly registered to the current site.
Let me know if you have any issues now or if there is anything else I can assist with!
- AJ
Hi AJ, thank you very much for the fast response and helping out. The problem is now solved. Regards Hermann
Hello AJ,
I’m using the footer builder to combine a dynamic template together with footer widgets for my site’s footer.
Since my site is multilingual and I’m using Polylang (free version) for translations, I wanted to ask if there is a way to assign different dynamic footer templates per language.
Specifically: On my default language (EL), I’d like to use the original dynamic template. On my secondary language (EN), I’d like to use a different version of that template, which I’ve translated using the “+” option in Polylang.
I’ve already tried implementing this via an add_filter in functions.php, but I’m not sure if I’m using the correct hook or if this approach is supported.
Is this kind of language-based template assignment supported, or is there a recommended workaround for achieving this?
Thank you in advance for your help.
Best regards
Hi,
The Dynamic Templates are translatable by default via the included wpml-config.xml file, which Polylang uses as well. If you check your Polylang settings you should see it’s enabled for translation: https://a.cl.ly/X6uyLg05
I just tested and it’s working correctly: https://a.cl.ly/NQuGm2wx
- AJ
.
Hi again,
You’re right. I just noticed that we hadn’t properly assigned the GR to EN translation.
Thank you, and sorry for the inconvenience.
Hi;
Every time I try to download the plugins, I get the following error message:
Download failed cURL error 28: Connection timed out after 10000 milliseconds
I also can’t finish importing the base template; I get an error there as well.
Thanks.
HI,
This is AJ the theme author.
These errors would suggest that your server is not allowing outgoing connections – you will need to reach out to your webhost so they can fix the issue.
Regarding the Base demo – this is a fairly large demo and often errors are caused by server limitations as well. Please double check the server recommendations in the main Theme Panel under “System Status” on the bottom right – https://my.totalwptheme.com/
If you would like any extra help with setup or installation you can also submit a private ticket here – https://my.totalwptheme.com/ – and I can log into the site and help you get everything up and running.
I do want to mention that the Base demo is the basic theme without ANY customization so it’s not really useful to import that specific demo as the only thing that is imported that might be useful would be specific page layouts that you may like which you could just use the demo inspector to copy/paste into your site without having to deal with importing all the sample data and then having to delete stuff you don’t want (pages, images, menus, widgets, etc). See here: https://totalwptheme.com/docs/demo-page-inspector/
The demo importer is more useful for highly customized demos that make use of Customizer settings and dynamic templates to create unique layouts and designs different from the “base” (default) theme design. For example: https://totalwpthemedemo.com/biz/ or https://totalwpthemedemo.com/consultative/
The Base demo also includes a WooCommerce shop which will import a lot of images and products which you would have to delete after importing. So depending on the site you are creating this may also just add extra work for you.
The base demo is provided mostly just to show all the different default parts of the theme and standard design before making any changes via the customizer, theme settings, templates, etc.
Let me know if you have any questions and how I can be of further assistance!
- AJ
Hi AJ, I hope you’re well! I installed the Testimonial Submission Form for Total plugin and I’m getting an alert that it is incompatible with currently enabled WooCommerce features. I’m not sure which features those are (they don’t say) and whether it’s going to be a problem or not. Do you have any idea what they are talking about and whether it will be a problem? Best, Alice
Hi Alice,
That sounds like a WooCommerce bug.
I’ve seen that notice before with other plugins that have nothing to do with WooCommerce. Basically, WooCommerce has a system built-in to detect if a plugin is a WooCommerce add-on and if so, it checks the version to see if it’s defined as compatible with the current version of WooCommerce. It sounds like WooCommerce thinks the plugin is add Woo-addon (which it’s not) – maybe there is another plugin with a similar name that is.
You should be able to dismiss and ignore that notice.
That said, collecting testimonials on your own site is generally not recommended, as there’s no way to independently verify them. Instead, it’s usually better to link to reviews on third-party platforms such as TrustPilot, Yelp, Google Reviews, or Facebook.
- AJ
Thanks AJ. I’ll look into TrustPilot since I’m looking for reviews from users who have actually used our online spreadsheet. Best, Alice
Hello, I purchased the Total – Responsive Multi-Purpose WordPress Theme on ThemeForest.
WPBakery Page Builder was included with the theme at the time of purchase, however the plugin is now asking me to activate a license.
I understand that bundled plugins are licensed under the theme license and do not require a separate WPBakery license, but I would like clarification on:
• How to correctly use WPBakery without purchasing an additional license • Whether the license notice can be ignored or safely dismissed • How plugin updates are handled through the theme
This question is about licensing included with the theme, not about custom support.
Thank you for your clarification.
Hi,
This is AJ the theme author.
Total includes code to hide those notices from WPBakery that ask for a license, if you are seeing those notices then your theme is very outdated or you have disabled WPBakery Theme Mode in the Theme Panel which allows you to add your custom WPBakery license: https://totalwptheme.com/docs/activate-wp-bakery-page-builder/
If WPBakery Theme Mode is disabled in your Theme Panel you probably just have to enable it to suppress the WPBakery notices.
Otherwise, if Theme Mode is enabled and you see the notices, likely your theme is outdated. What you will want to do is temporarily de-activate WPBakery and update your Total theme, then you can proceed with updating the bundled plugin.
Here are the related docs:
- https://totalwptheme.com/docs/changelog/
- https://totalwptheme.com/docs/update-theme/ (if your theme is very outdated it’s important to read the extra precautions on this guide)
- https://totalwptheme.com/docs/update-plugins/
- https://totalwptheme.com/docs/bundled-product-license/
The reason you temporarily disable WPBakery, is because the plugin may cache those notices to activate a license and it can prevent the plugin to be updated through the theme’s system. This is only required when your theme is significantly outdated and so the relevant code doesn’t exist in the theme or if for some reason the theme was temporarily de-activated while WPBakery was enabled, allowing that notice to come through.
If you have any questions, issues or you want some help updating your site, let me know so I can further assist!
- AJ
Hello, I am working on a site olm-consulting.com and I have an activate license but cannot find where it was purchased, I would like to open a support ticket. I tried using the customer’s Envato email address to login but they don’t have a password saved anywhere, when I tried to reset the password they did not receive any emails. Can you please help me identify to which email the license is registered with and how can I open a support ticket? Thanks
This is AJ, the theme author.
To open a private support ticket, you’ll need to log into my support site with an account that has an active support license. Typically, unless the theme was purchased within the last 6 months, the support license won’t be active – so even if you can log in, you would not be able to submit a ticket.
My support site is not affiliated with Envato, so simply purchasing a license won’t automatically create an account. Your client would have needed to log into the support site previously using the “Continue with Envato” button so that an account could be created.
If they did do this, then using the reset password link should work. Sometimes, WordPress emails like this end up in the SPAM folder, so please be sure to check there as well.
Additionally, while ThemeForest requires an active support license for private tickets, I’m happy to help all customers right here in the comments. So if you prefer not to renew your support license or you can’t access an account that has an active support license, just let me know what you need help with, and I’ll assist you here.
Of course, renewing your support license is a great way to help support the project and ensures I can keep the theme updated and improved for years to come. 
- AJ
Hello AJ, and thanks for the detailed reply. I helped this customer by Total theme in 2017
I don’t know if she is still paying for support (she doesn’t know unfortunately) but the License panel for the theme is saying that it’s active.
Anyway, I have this gallery on the site with 100+ images on it, it’s getting extremely slow and difficult to make changes at this point and I think it’s something to do with the pre-bundled WPBakery page builder. When I load the page in the editor I can see about 50 or so admin-ajax.php requests in an instant and 90% of them fail after some time with a 503 error. This website doesn’t contain problematic plugins as far as I know and is basically a blog so I don’t understand why all these requests would fail, server limits are quite high for a shared hosting and all the other websites on this hosting plan are doing just fine (server resources are not taxed).
It takes the images in the gallery widget a good few minutes to full load, then selecting images takes another good few minutes to full load and some images don’t load so it’s hard to tell if it worked or not.
I’ve recently updated all plugins, theme and Wordpress but the issue still persists.
I’m not sure what to do at this point. Thanks
Hi,
The license itself is valid forever and is separate from the support license. While support is provided for a limited period and can be renewed every six months, the license to use the theme remains valid for the lifetime of the product. Offering lifetime support for a one-time $59 purchase simply isn’t sustainable, which is why Envato uses a renewable support system.
That’s why, in the Theme License panel, your license will always display as active, even if the support period has expired.
Can you share the URL with the gallery so I can see how it was created?
I suspect that the Gallery is using the WPBakery’s “Media” or “Masonry Media” Grid element and not the theme’s Image Gallery – WPBakery’s element, unfortunately does use AJAX and so it can get very slow to load and in general loading with AJAX isn’t a good idea because it adds extra stress on the server, regardless of how many images can display. On the other hand, the theme’s Image Gallery uses PHP to render the images, which means it’s static and cacheable. It will be much faster.
If this is the case, you can switch quickly to the theme’s Image gallery by using the text editor and copying the ID’s over. I made a sample video to show you: https://a.cl.ly/llupbwZe – I would suggest perhaps doing this on a new draft test page first and then tweaking the Image Grid element accordingly, because the design will of course change when swapping elements.
Additionally, if you are showing 100’s of images, this is never a good idea anyway in terms of site loading (regardless of AJAX). There are some ways you can help mitigate issues (enabling pagination, organizing into smaller pages by category, etc) but in general I would avoid it.
Not to mention, that most people will never go to a website and browse 100’s of images. It would make way more sense to put maybe 20 ish images (the ones they like the most) then have a button that goes to a 3rd party site like Instragram where the user can then view all the images. This keeps your site fast and it also encourages users to follow you via social media.
Additionally, assigning 100’s of images in WPBakery is not very efficient because of how the builder is coded. This is why I recommend either using a Gallery management plugin – https://totalwptheme.com/docs/real-media-library-integration/ – or u sing the theme’s Image Gallery metabox – https://totalwptheme.com/docs/using-post-gallery-image-galleries/
If you wish to do the later (use the theme’s Image Gallery) it’s actually not hard to also copy and paste the list of images over, but it requires some knowledge of editing code in the browser. I created a sample video: https://a.cl.ly/d5udkbvN – as you can see, I copied the comma separated list of image ID’s then inspected the Image Gallery form in the browser and inserted the list inside the hidden input value attribute, then saved the page.
Let me know if you have any followup questions or issues,
- AJ
Hello again AJ and thanks for the detailed reply.
Here’s a screenshot that should provide all the information you asked about: https://snipboard.io/mFzRaZ.jpg
Basically, I followed your advice and places the IDs inside the Image Gallery metabox, saved the post but I don’t see anything different on the page. How is that Image Gallery loaded? Maybe I need to turn some setting on for it to appear?
This is the page I’m talking about: https://olm-consulting.com/clients/
It’s just a bunch of logos so the image sizes are relatively small and that’s why it shouldn’t be a problem with loading speed especially with cache.
I just didn’t understand how moving to the Image Gallery metabox would solve this since I tried that and nothing changed.
Thanks!
Hi,
Sorry for the delayed reply, I don’t know why ThemeForest didn’t alert me of this new reply! Glad I saw it though as I was looking for a reply from someone else.
What you would do is edit your previous Image Grid element and choose to display items from the post gallery using the on/off switch – https://totalwptheme.com/docs/using-post-gallery-image-galleries/#h-display-your-image-gallery
Of course I would recommend you have a backup just incase. One good idea would be to duplicate the Image Grid where you currently have them all manually selected and then remove the images and then enable the Post Gallery toggle. Then save the page and compare both grids and make sure they look the same, then delete the old Image Grid.
The reason I suggest this is that WPBakery handles gallery images differently than the Metabox. In WPBakery, when you add or remove images from the Image Grid, it sends a request to WordPress that includes all currently selected images. This triggers a separate response for each image (those are the admin-ajax requests you see), which can be very slow to process. It’s fine for a few images, but not for a large number.
The Post Gallery, on the other hand, is coded differently and doesn’t send these extra requests. The initial gallery load uses PHP to loop through the images and display the thumbnails (not ajax) and when you click to add/remove images it doesn’t have to send extra requests to WordPress. You will notice the difference, since clicking the “Add/Edit Images” button in the theme’s Post Gallery metabox only opens the media library, it doesn’t not pre-load and select the images assigned to the gallery – which is what WPBakery does. As a result, it handles large image sets much more efficiently and performs significantly faster.
- AJ
Amazing, thanks AJ! That worked 
Awesome!
Hello i installed theme and activated license, but can not find the *Demo Importer” Button im my Theme Panel – what i am doing wrong???
Hi,
The demo importer is located under Theme Panel > Demo Import. If you don’t see it, then you’ve probably disabled it in the main Theme Panel or you have not enabled the included Total Theme Core Plugins (Appearance > Install Plugins).
Here is the link to the docs as well for the demo importer as it may have some extra useful information: https://totalwptheme.com/docs/importing-sample-data/
Let me know if you still have issues or if I can help with anything else,
- AJ
Hello AJ,
The Carousel Portfolio has stopped working on my site. It loads nothing and in the frontend editor I can’t even edit it, only on the backend editor.
When I edit it, it suggests using the new Cards widget, but I can’t find all instances of the carousel portfolio across my site. Also the Cards widget is not loading the portfolio categories, the search returns nothing.
Anyway, I’d rather have the Post Carousel working again. Thanks.
Best regards, Jorge
HI Jorge,
I hope you had a nice weekend,
This element should still work, regardless of the suggestion to use the newer element. I’ve double checked to ensure there isn’t any issue in the latest version of the theme.
If you can use the Portfolio Carousel element (aka add it to the site) this means that the Portfolio post type is still enabled in the Theme Panel as this element is removed from the site if you have disabled the Portfolio Post type.
If the issue was only with the carousel it may suggest a javascript error on the site, however you mentioned the portfolio categories don’t display either. This suggests that more likely there is a conflict with custom code on the site or a 3rd party plugin that is un-registering or excluding the post type from the front-end.
Can you share a link to a page that has the carousel so I can at least inspect the code to see if the items are being added to the HTML?
If you review all your custom code and 3rd party plugins and can’t locate the issue I can log into the site to see what’s going on. I see your support license is expired so you can’t submit a private ticket. You can either renew your support license or you can tell me the URL and create an admin account using the wpexplorer.noreply [at] gmail dot com email and I can reset the password, log in and have a look. You will need to let me know if you do this though so I can check that email as well as so you can let me know what the URL is – thanks!
- AJ
Thanks AJ! Check your mail for the admin password. The problem with portfolio categories affects the new cards widget but not the carousel. The carousel is in the /info and /photos pages. By the way I just loaded one of those and saw the carousel appear and disappear. Let me know if I should renew support for this.
I’m looking right now and I can see that your site is not loading the carousel CSS file so they aren’t rendering. Trying to figure out why that’s the case. Then I will look into the issue with the cards (I assume you mean the new Term Cards element).
I will keep you posted!
- AJ
Thanks! I can’t even access the carousel when editing through the front end. I appreciate the support. If at some point I need to renew my support because the problem gets too involved, let me know.
I did some tests by adding a little code in the total theme core plugin to ensure the carousel CSS is being enqueued and it is. But it never gets actually added to the HTML. So it seems like perhaps a 3rd party plugin is removing the script. Perhaps there is a plugin that removes any CSS that has the name ‘owl-carousel’ potentially to prevent conflicts. Have you tried disabling plugins on your site to see if doing so fixes the issue? You have many plugins and the site is live so I didn’t want to disable anything to test, but it’s going to be the next step.
I will keep looking around to see if I can spot the problem, but I think disabling the active plugins may be the only way to truly test.
Oh, and I did review your custom plugin that has some snippets and none of those would cause this issue.
But I do clearly see the carousels HTML added to your site, but since the required CSS file ‘wpex-owl-carousel’ is not loading you just can’t see them.
Regarding the Portfolio Categories, I couldn’t find any page on your site using the Term Cards element, so I tested it on a random page and it’s working as expected: https://a.cl.ly/P8uPKpXj – so I’m not able to recreate the issue. Can you explain how I can recreate the issue and preferably link to a page that has the element that isn’t working so I can look – thanks!
- AJ
For the Term Cards, I wasn’t able to pick a specific term (a portfolio category). Can you? Not a big problem since I won’t be using them for now.
For the carousel, if I clear the cache, reload and quickly scroll to it, I can see it with styling and everything. Then on page load it gets hidden. Makes no sense to me, I’ll check plugin conflicts but this site has been running like this for years.
update: I added the following code in you custom functions plugin:
// Force enqueue carousel CSS
add_action( 'wpex_hook_outer_wrap_after', function() {
wp_print_styles('wpex-owl-carousel');
}, 9999 );
This will force the file to load always so your carousels work, the downside is that the css file is loaded on every page and not dynamically only when a carousel exists (default behaviour). Now, the file is very small though so it’s not really a concern. If you wish you can comment out this code and try disabling plugins to truly test why it’s not working as expected or simply leave this code.
- AJ
Thanks!!! Let’s leave the fix as-is, life’s too short
Also I just left a review, I thought I had done it in the past.
I saw that, thank you so much for the review!
Let me know if there is anything else I can assist with 
- Aj
I am very disappointed in your lack of response to my inquiry about a Total theme I was having some issues with. I purchased a license and still have a month of support left on it, so why hasn’t your staff answered my question? I might have to reconsider purchasing any other Total licenses.
Hi there,
This is AJ, the theme author.
I’ve replied to all your support tickets,
Here are screenshots of all my replies:
Could you take a quick look and make sure my replies aren’t ending up in your spam folder?
I’m usually pretty good at replying promptly, if you ever don’t see a response within 48 hours, please leave me a comment here so we can get the matter resolved ASAP.
Thanks so much!
AJ
Hi! I need loop in next/prev buttons on portfolio single page. Now if you are in last, only show prev button, but i need show next button and go to the first (loop). Is this possible? thanks
Hi,
This is Aj the theme author.
By default the core WordPress next/previous functions don’t loop and it actually requires some complex code to make this possible. So, the default prev/next links that show up in the portfolio single post design can’t allow for this.
However, if you create a dynamic template – https://totalwptheme.com/docs/dynamic-templates/ – for your portfolio items and use the theme’s Next Previous element instead of the default links inserted at the bottom of the page which does include the ability to enable looping.
Here is a video from this demo – https://totalwpthemedemo.com/nick-miller/ – showing how I created the dynamic template and added the next/prev links: https://a.cl.ly/mXuOvy76 (notice in the video how I’ve disabled the default next/prev at the bottom as this is always inserted regardless if a dynamic template is used or not).
If you want to quickly create a dynamic template you can also use the theme’s demo inspector took on any theme demo that is using a custom portfolio template (Biz, Nick Miller, Nouveau, Victor Bros) to copy/paste the template onto your site and then tweak it to your liking: https://totalwptheme.com/docs/demo-page-inspector/
Creating a dynamic template will allow you to also control your portfolio item design globally so you can make other tweaks in the future if wanted. Plus, it will allow you to not have to use any page builder on the actual portfolio items (you can use Gutenberg/Classic editor only) keeping everything slimmer, faster and easier to add/manage your portfolio items.
- AJ
Hi I have an old version of the theme (4.6), and I still have a “Twitter” icon in the tools of the social medias (top and also bottom of the site) Is there a way to replace it with the “X” icon ? Thanks in advance Philippe
Hi Philippe,
The best solution is to update your theme to the latest version: https://totalwptheme.com/docs/update-theme/ – which uses the new X icon by default.
Otherwise you can use custom CSS to replace the icon targeting the element and using an inline SVG as a background-image on the element. This would be a customization outside the scope of support.
If you need any help updating your theme or have any issues updating let me know! For security reasons it’s also important to keep your site always up to date.
- AJ
AJ, I have an issue. The Elementor sticky nav won’t work with the Total theme. I know because I changed themes and it worked. Any idea how to fix this?
Hi,
Because you can insert a sticky nav in so many different ways I need to know exactly how to recreate the issue so I can troubleshoot. Are you able to share the live URL?
If you rather share privately, please open a ticket: https://my.totalwptheme.com/
Thanks!
- AJ
Go to https://theminingrecorddev12292025.hosting.pinbn.net/, I created the header which is just the nav, it will be below the top bar which is part of your theme. The top bar is sticky and I made the header part sticky, you can see here https://www.loom.com/share/b57013d06858402185abb3e249c5ad5a
Hi,
The menu is sticky, but it only becomes sticky when it hits the top of the browser. Because your top bar is also sticky your menu becomes sticky while it’s beneath it. You would need to offset the top bar from the Elementor nav sticky function. The problem is that the Elementor offset option only allows a fixed pixel value and your top bar is responsive so it won’t work correctly.
But…The way everything setup is a bit out of the ordinary and not ideal
I can see you setup the Elementor menu using the a custom header (I believe using Elementor Pro’s theme builder). So there is no point in having the top bar enabled when you should just add the code you currently have for the top bar inside the custom header and make the whole thing sticky.
You could also instead use the Total Header Builder instead of the Elementor Pro theme builder and make the whole thing sticky using the options available on the Header Builder page: https://a.cl.ly/yAumJz1d – which is probably the best way to setup your custom header and also make it sticky. The only real reason to use Elementor’s theme builder for a custom header would be if you need different headers for different pages, which is not very common.
Now, it also appears that you have enabled the Transparent Header functionality – https://totalwptheme.com/docs/overlay-header/ – I can’t tell if you enabled it globally in the Customizer or on a per-page basis. But it’s currently not doing anything as it looks like I need to add a fix so that it can work with the Elementor Pro theme builder. I added this to my todo list, but if you were to keep it enabled and then I fix the issue your site will break when updating to the patched version of the theme. Same goes for if you were to swap to the Header Builder and leave the transparent header functionality enabled as it will push your content under the custom header.
All that said, your header (including the top bar and menu) is quite large on this site. I would probably not recommend making it sticky as it takes up a lot of real estate and makes it harder for users to actually browse/read the site. If anything you would disable the sticky on the top bar and only make the menu sticky. Users know what website they are on so there is no need for the logo to remain sticky, the purpose of a sticky header is simply to make browsing to other pages easier.
- AJ
I change back to the header builder and I can’t make it full width? https://theminingrecorddev12292025.hosting.pinbn.net/
Also when you scroll the background changes, where is that coming from?
AJ?
Hi,
Thank you for your patience, I hope you had a nice weekend.
Elementor changed how their builder worked a while back and removed the ability for Full-Width rows using javascript. In order to support this without breaking sites that were updating to the latest version of Total is that I added a new option at Theme Panel > Elementor Container Compatibility that’s enabled for new installations but for anyone updating the theme it would need to be enabled manually.
Your site appears to have this option disabled. Enabling this option will allow Elementor’s new container system to work correctly with the theme and your header will display full-screen by default with it’s content centered.
Please enable the option, then check other parts or your site to ensure they still display correctly.
Enabling this option, will also ensure that your theme’s Site Widths: https://totalwptheme.com/docs/customize-your-layout-widths/ – work correctly with the latest version of Elementor.
Alternatively you can just add this custom CSS to your site:
body:not(.wpex-e-con-compat) .header-builder-inner:has(.e-con-full) { width: 100%; max-width: none; }
Under Theme Panel > Custom CSS for a quick fix without enabling the new Elementor Container Compatibility option.
I do see that your site is making use of the theme builder for pretty much each section of the site and if you enable the option, you may need to also go into the Customizer to adjust the site widths as your site layout will change a bit when enabling that option. So perhaps adding the CSS is the best fix here.
I will be adding this CSS in the next theme update as well, so thank you for bringing that to my attention!
I think you figured out the background changing as I see your site has been updated. This would be from the Transparent Header functionality which you had enabled, which by default swaps the header styles so you can have an effect like this: https://totalwpthemedemo.com/biz/
- AJ