22385 comments found.
Hello, i purchased your theme and i’m really happy with it, good job !
I know it’s actually possible to choose how many products must be displayed on the shop page (thanks to option: Change WooCommerce Columns).
Is it possible to show 4 products / row for desktop and 2 products / row for mobiles ? If not, would you give me any advices with css ?
Thank you very much.
Great, I’m glad you like it 
There isn’t any built-in functions yet to choose the columns on mobile in the Customizer but it’s very easy to do via a little code in your child theme – http://wpexplorer-themes.com/total/docs/child-theme/
Here is a sample snippet: https://wpexplorer-themes.com/total/snippets/change-woocommerce-columns-custom-columns-mobile/
So the code you would need to add to your child theme’s functions.php file would be this:
add_filter( 'post_class', function ( $classes, $class = '', $post_id = '' ) {
if ( ! $post_id || ! in_array( get_post_type( $post_id ), array( 'product', 'product_variation' ) ) ) {
return $classes;
}
$classes[] = 'span_1_of_2_tp';
return $classes;
}, 50, 3 );
This would make your shop 2 columns from tablet portrait mode and smaller.
- AJ
If you have any issues with the code, let me know!
I purchased this product and it is great! I have an issue with getting Youtube videos to work with autoplay.. Is it possible to do?
Hi,
Great, I’m glad you like the theme 
Yes it’s possible to auto play but it depends how you are adding the videos.
Example:
- Standard video added to post: https://wpexplorer-themes.com/total/docs/insertembed-videos-custom-parameters/
- When using lightbox videos: https://wpexplorer-themes.com/total/docs/get-embed-urllink-youtube-video/
- AJ
I can’t fine setting for silder https://cl.ly/3E2d0h311R3E please help me
Hi,
If you don’t see the page settings double check in the “screen options” to make sure it’s enabled – https://cl.ly/poQb
But also you can always place the slider on the page itself if you prefer as mentioned in the docs – https://wpexplorer-themes.com/total/docs/adding-sliders-top-pages/
- AJ
Hi AJ – I was looking at my licenses for Total at your support site today and noticed that all say supported until January 25, 2018. Is that accurate? Do you have a time frame for how long you will be supporting/updating this theme? : )
Hi,
The way the support license works on ThemeForest is you get 6 months (unless you extend it to 12 months) with your initial purchase. If you have multiple license of the theme, it’s based on the most recently purchased license. So for example if you buy a new license today it will extend support for ALL your licenses 6 months or if you don’t need any more licenses if you extend support for the theme – https://wpexplorer-themes.com/total/docs/renew-support-license/ – again it renews for all the items.
The theme will be supported and updated for as long as possible. This is one of my main sources of income so I put a lot of work into updates/support and a ton of money into marketing to keep the theme going. As long as customers are buying the theme and renewing their support license then my business will be profitable and I can keep the theme going.
Now, support license is not for updates. Updates are always included. The license is mostly for submitting private tickets since it’s expensive to hire a support staff and I need a way to balance things out so I’m not just loosing money helping people for free. I always provide free support here in the comments, but of course it still takes time and resources so I do kindly request that customers keep an active support license if they are using the theme and more importantly asking questions.
- AJ
Thanks for the response AJ. I was confusing the support license duration with how long you would support the theme as a whole, probably because I saw it was the same date for all of my licenses. But I get it now and do appreciate you breaking it down for me. This is a great theme that gets better all the time and I appreciate the great job you do at supporting it, so I’m happy to hear you plan on keeping it going for as long as possible. Many thanks, Angela.
how did this theme like shoot up the leaderboards within a day 
Because it’s a great theme 
Hi AJ, i can’t figure out why the background and border on my Mobile Menu icon disappeared and/or where to set it. In your documentation it shows where to go to select the toggle icon and set the icon’s color, but not the color of the background. https://wpexplorer-themes.com/total/docs/mobile-menu-toggle-styles/
Thanks so much for the help!
Hi,
In Total 5.5 I switched to a slimmer more modern hamburger menu without a background and border. This was highly requested, almost on a daily basis. Of course if you want it is possible to add a background and border with some CSS, which I can assist with if needed.
- AJ
New Version lacks options:
I have a strange problem with the customizer. It seems like it randomly looses options. Nothing has been changed in the Customizer Manager. For instance the newest version does not have the Logo Icon Option anymore? Is that intentional?
And furthermore sometimes there are further options for the sticky header and sometimes its just a checkbox (CSS3 Shrink etc.)? What is going on?`
Thanks in advance 
Hi,
No options have been removed in the last update. Can you make sure there isn’t any plugins installed breaking the Customizer?
- Logo Icon Option: You should see this under Customize > Header Logo Icon. But it’s ONLY when you are using a text logo. As soon as you select an image logo the option is removed of course, if you are using an image logo then you should place any icon you want on the image itself. See here: https://cl.ly/pn6q
- Whenever you select a header style that has a menu under the header (so a full-width menu such as header style two) the header is no longer sticky only the menu becomes sticky – https://cl.ly/pnOm
Notice how one says “sticky header” and the other says “sticky menu”?
I’ve put in many checks in place in the Customizer so when selecting different options it shows/hides options that aren’t available to prevent confusion.
I hope these videos help explain a bit better 
- AJ
hello in the new version of total theme its add a WPBakery Page Builder plugin rather than visual composer, why? how can i use visual composer as in the past ?
thank you
Hi,
It’s the same exact plugin, the developers just renamed their plugin – https://codecanyon.net/item/visual-composer-page-builder-for-wordpress/242431 – as you can see on the plugin page it says “formerly Visual Composer”.
Everything should look and work exactly the same. Sorry for the confusion, unfortunately it was out of my control 
- AJ
thank you
Hello AJ,
Can I please ask you your opinion :
I’m trying a plugin to lazy load images (called “Crazy Lazy”), knowing that most of my images below the fold are in Slider/Grid/Carousel modules, in blog posts.
So I wonder wether the response time doesn’t actually deteriorate if 5-6 images must load at the same time when the visitor scrolls below the fold.
Thanks in advance,
Michel
Hi Michel,
If you have a fast server or CDN that is delivering the images even loading 40+ images under the fold shouldn’t take long at all.
If you are writing standard blog posts (I would actually recommend not using things like sliders/carousels inside blog posts, since readers usually just want text with static images – see popular sites like Buzzfeed and how they do it). I wouldn’t even recommend using a page builder ever for a blog – blog posts should be very standard (headings, paragraphs, pictures). Enabling a page builder for a blog is just added bloat imo.
More importantly if your images are in sliders, grids, carousels it’s possible the lazy load function won’t work properly and will break the sliders/carousels due to how these modules work. It may require adding extra javascript to your site to re-trigger the modules every time an image is loaded which may actually cause things to render a bit strangely.
- AJ
Thanks indeed, AJ.
Actually my blog posts are not “standard” ones : they are short illustrations of company cultures, sometimes with about 5 images that would take up much space (also compared to text), so the slider is ideal – example : https://culture-officer.fr/5592
And Templatera helps me nicely to make posts.
It seems that the lazy load plugin doesn’t create problems with the slider and grid modules, but I follow your advice and remove it – I haven’t noticed load improvement with it anyway, and WP Supercache could also make it useless.
Thanks again,
Michel
Hi AJ,
Good day!
The blog page and single post pages are not responsive on tablets and mobile phones. Only full-screen layout style is displaying responsive posts (without any padding), with rest all the layout styles, the posts and page are non-responsive.
I am using a right sidebar layout for my blog page and single posts page.
Can you please help?
http://bit.ly/2Fx5WLp http://bit.ly/2FwJcuLThankyou
Hi,
Please double check your settings under Customize > Layouts. I see a few issues. On very small devices you have the width set to 20% which is very small – https://cl.ly/pmws
And on tablets the content + the sidebar widths are fixed so they are not responsive. The content area is set to 680px and the sidebar to 250px. For a truly fluid layout you should use percentages.
If you want to use fixed pixels that is fine but right now you have 680+250 which is 930 but your main container is only 921px – https://cl.ly/pn9a
- AJ
Thank you
It worked!
Hi, help please – how open images from Post media element in lightbox? “Post media” shows a gallery and post thumbnail images.
Hi,
I will look at adding the option for the upcoming update. I plan on releasing 4.6 later today. Good idea!
- AJ
Just finished adding the setting – https://cl.ly/pmwD
I look forward to it! Thank you
After updating to the latest version recently we have encountered problems with Social Share. Firstly it vanished from our portfolio post types which are using a dynamic template using Templatera to override the default content layout, that template has the social share element added to it. We’ve managed to get it back up and working now, but there is no Facebook option? There used to be but it has changed to LinkedIn, which now appears twice?
I also understand there are supposed to be Social Share settings in the Customiser under General Theme Options but on ours there are no Social Share settings present?
We are using Jetpack and have their social share settings turned on for other post types.
Example portfolio post type would be http://quietgarden.org/gardens/walford-grange/
Thanks for your help.
Hi,
The bugs with the social share module (double tweet and missing facebook) have been fixed for upcoming Total 4.6 which I intend on releasing today. Sorry for the troubles!
Total includes built-in support for JetPack’s social sharing so if it’s enabled the theme’s built-in share functions are disabled to slim things down so your site is better optimized.
If you are using JetPack for other post types I would recommend using it also on the portfolio for consistency which can be done via a shortcode – https://wordpress.org/plugins/jetpack-sharing-butttons-shortcode/
- AJ
Thanks AJ. As ever Total continues to be a great adaptable theme!
How can I change the order of people in a team? See screenshot. http://bit.ly/2FsanXD
Thanks in advance for your answer
Hi,
Please have a look here: https://wpexplorer-themes.com/total/docs/reorder-post-types/
If you have any issues or follow up questions let me know.
- AJ
Best support and theme ever and very detailed documentation. I gave 5 stars.
Thanks for the rating! I’m glad you like the theme, if you need anything else or have any suggestions let me know 
Hello WPExplorer,
Nice work on the theme and updates thumbs up
Please would be great if theme can have it’s own Theme Panel rather than use the WordPress default customization panel that have to load page content while editing theme options. It kind of slows down editing and saving.
The header section should go beyond just changing background color to also selecting if we want the background to be transparent.
CSS (eg btn-big, btn-small, btn-large, etc) short-code would really help for users who want to make Main Menu buttons…I tried your method of creating it in page and copy when creating menu but all I got was lots of code displayed.
I do hope to see these updates especially the Theme Panel feature in your coming update.
Cheers
... Maybe I am wrong, but I think Custom CSS isn’t suppose to show the site css code but a blank editor to write my own custom CSS?
Hi,
- The theme used a Theme Panel about 3 years ago but we changed it to the Customizer which is much better and doesn’t add extra bloat and customers were requesting the switch on a daily basis. Most people prefer the Customizer.
Using a custom panel actually causes more slowness on the actual site due to loading extra functionality that is already available in core WP.
If the Customizer is slow, you may want to consider switching to a better hosting solution or try disabling plugins to see if things are slowing you down. Where is your site hosted?
Also if you are using the customizer and you have a very large homepage, just create a new empty page call it whatever you want and use that to open the customizer – https://cl.ly/po5A (this test site is actually on crappy hosting so it is a bit slow, but I can show you a video if you want on our WPEngine host showing how fast the customizer is).
- The header is transparent by default, unless you add a custom color. So I’m not sure what you mean.
- I don’t have any articles showing how to add buttons to the menu using a shortcode, can you share the link? If you want a button in your main menu this is the easiest way – https://wpexplorer-themes.com/total/docs/header-one-menu-button/
- Yes the Custom CSS panel should be blank by default like this – https://cl.ly/pn91 – nothing should be in there except your custom code. However, on some demos we’ve added a little CSS to tweak some things specifically for that demo so if you imported a demo you may have some CSS in there which you can remove if you want. Normally it’s only a very small amount like 1-10 lines.
- AJ
Hello AJ,
Contrary, it is the WP customizer that becomes slow when it has to load the Revoluton slider along side site content just to effect site wide customization, I want to believe this is not a live page builder scenario so better to have the theme’s own customizer like other wordpress themes do.
- I use a premium shared hosting so that could not be the problem.
- From your base demo, I can see a menu with white background, so I don’t know what you mean that by default it comes with a transparent background – check buildfire.com and messagegears.com for what I mean.
- In Customizer > Sticky menu does not have option to select menu color. Eg I specify header menu color white, when switching to sticky, no option to change menu color resulting in not seeing the menus.
- In Customizer > Menu > Styling Menu, option to set menu opacity not there but its available in sticky menu (this won’t allow to have such effect like seen on buildfire.com) unless hardcode into Custom CSS. No option to also apply opacity to dropdown menus and contrary to the screenshot you sent of a blank CSS page this is what I have after installing Total theme – https://prnt.sc/itu46b
- When opacity is applied to sticky menu, it seems to move the menu to back making the Button to have an overlay on it and makes it move to the back of the opacity color used.
- On page design, under “Slider option” at the bottom, would be best to have a drop down to select already created sliders.
- Opacity only works when slider is active.
- No option to set font-weight.
I found myself moving back and forth the Custom CSS and Customizer screen. In my opinion, I think more needs to be done to the customizer options and also better to have it standalone, loading a page with revolution slider in customizer is a very fustration experience. Live preview is best for page design and not entire site customization. in Total theme, I saw a very fantastic theme with good layout but my experience so far is not fun at all.
- You can always open the Customizer while viewing a blank page from the user toolbar so it loads faster. I’ve been developing themes for over 10 years and I know my way around code and optimization and using the WP customizer is the best way to setup theme options.
Of course, I could consider adding a secondary panel in the dashboard for those that don’t like the customizer but every customer I’ve asked said it’s not needed. I have a slack group with customers that have purchased over 25 licenses and none of the top customers like the idea and no other customer has requested it lately so I don’t believe it’s worth it at this point. Also WordPress makes improvements to the Customizer on almost every update so when WP updates themes using the Customizer get instant benefits 
- The header in Total by default is transparent, but there is nothing behind it. What you are looking to do is to have the header placed on top of your content. You can do that with the Overlay Header function – https://wpexplorer-themes.com/total/docs/overlay-header/
- I’m not sure what you mean by:
In Customizer > Sticky menu does not have option to select menu color. Eg I specify header menu color white, when switching to sticky, no option to change menu color resulting in not seeing the menus.
The sticky menu is exactly the same as your standard menu which you can customize at Appearance > Customize > Header > Menu. If you set your menu links to black here they should still be black when the menu is sticky. If you made your menu links white then they will be white on sticky.
- To have a layout like buildfire.com – you need to use the Overlay Header as mentioned above so that your header goes over your content which is what you want. Simply making the header transparent doesn’t automatically make the content below it go under the header, the header must be set absolutely over the content.
- Sorry I don’t understand what you mean by:
When opacity is applied to sticky menu, it seems to move the menu to back making the Button to have an overlay on it and makes it move to the back of the opacity color used.
- Regarding:
On page design, under “Slider option” at the bottom, would be best to have a drop down to select already created sliders.
The issue is if a customer wants to use a 3rd party slider plugin (not included with the theme) or add a shortcode that is NOT a plugin it won’t allow it. Having a simple fields allows more options. You could add HTML to this field if you want or any shortcode. A dropdown is more limited.
*No option to also apply opacity to dropdown menus and contrary to the screenshot you sent of a blank CSS page this is what I have after installing Total theme – https://prnt.sc/itu46b
This looks like a bug that was fixed many versions ago and was only around for like 2 days before it was patched, looks like you got unlucky
You can just remove this code and save the Custom CSS.
- “Opacity only works when slider is active.” – What opacity are you referring to?
- “No option to set font-weight.” – For what? There are font weight options for many functions in the theme, what are you looking for exactly? If you are looking to tweak your menu font weight go to Customize > Typography
I found myself moving back and forth the Custom CSS and Customizer screen
You don’t have to do this because you can alter your custom CSS at Customize > Additional CSS.
Also if your homepage is very slow to load instead create a blank page with nothing so you can launch the customizer from there 
- AJ
Hello AJ,
Thanks for the help, most are clear to me now … but for others they say a picture says a thousand and one words 
- Sticky Header settings without option to set color: https://prnt.sc/iu3s2z
- Menu without option to set opacity: https://prnt.sc/iu3r79 I had to use custom CSS #site-header{background-color: rgba(255,255,255,0.0); font-weight:700;} to achieve it https://prnt.sc/iu3vk7
You can also see the button as shown, that is Adding Menu Class menu-button https://wpexplorer-themes.com/total/docs/header-one-menu-button/ but if I need this https://prnt.sc/iu3wmd what class should be called? I tried the method you suggested sometime ago, Create a page, Add button and copy the code but it did not work, all I got was a messed up button.
Hi,
The Overlay Header by default makes your links white if you select the white style – https://cl.ly/qJ9P – the overlay header always overrides the default colors set for the header menu so if in the customizer you made the menu links black but enable white text for the Overlay header it will be white but then on sticky it will show black. Example:
So your customizer shouldn’t have white links unless you set your default header to a solid color as well, otherwise your pages without the Overlay (404, search, archives…etc) you won’t be able to see your white links. So if you set your links to white here – https://prnt.sc/iu3r79 – then under Customize > header > general add a background color.
There isn’t a built-in classname for this – https://prnt.sc/iu3wmd – but you can just create your own classname like “menu-outline-button-thin” and then add some CSS for that. If you need help with the custom CSS let me know, I can provide it 
- AJ
The link color when sticky is whatever you enter at Customize > header > Menu. Here – https://prnt.sc/iu3r79 – it has nothing to do with the “opacity”.
The way the Overlay Header works (I assume you are using it since you haven’t share the live URL for me to look) it places a dynamic classname that is added/removed so when the header is sticky it uses the styling settings defined here – https://prnt.sc/iu3r79 – as opposed to the styles for the Overlay.
Video example: https://cl.ly/qJej
Make sense now?
- AJ
It would be great if you can assist with the outline button CSS.
Example code:
.menu-outline-button-thin > a > span.link-inner {
border: 1px solid #fff;
border-radius: 0;
}
Result: https://cl.ly/qLcR
- AJ
Hello AJ, Thanks a lot. A quick one here… https://cl.ly/2X3v1x3E2K20 from the screen recording It shows when on sticky no option to change the link color from the default white as seen here https://cl.ly/3g0R1g3A0l15 . Am I getting it wrong? Because the default menu link is set to white and background in sticky is white but no where to state that when moving to sticky link color should change.
Would have loved sharing the page but you will only see the under construction and I can not post my admin log in here.
Cheers
Hi,
Sorry if my previous explanation didn’t help. The reason your links are white when the header is sticky because you made them white in the Customizer settings under Customizer > Header > Menu. As shown in the screenshot you sent me previously: https://prnt.sc/iu3r79
There are NO options to alter the colors when the header becomes sticky. The sticky header takes on the default header color settings defined in the Customizer so if you make your links white in the Customizer when the header is sticky your links will be white. If you make them black in the customizer the sticky header will have black links.
If you are using the header overlay function – https://wpexplorer-themes.com/total/docs/overlay-header/ – you do NOT have to make your links white in the customizer in order to have white links over your background image, because they will be white by default as per the style setting – https://prnt.sc/iu3r79.
The way to think about it is the sticky header will always look exactly like your normal non-overlay header. So for example if you go to a 404 page or search page on your site that’s what your header will look like sticky.
Example we have an overlay header on this demo homepage – http://totaltheme.wpengine.com/modern-agency/ – and it has white links, but as you can see on pages without the overlay it has gray menu links – http://totaltheme.wpengine.com/modern-agency/about/ – as defined via the Customizer.
Hopefully this makes better sense now!
- AJ
I understand your explanation but just a point of note:
I think developers/users of your theme should be able to specify different background color while scrolling into sticky menu instead of inheriting the transparent value of “Menu” which is default to white if set in “General” as clear, and also specify the menu link color. From my research on various themes that start with a transparent background this option has been provided. ref: buildfire.com, sendpulse.com, campainmonitor.com for few examples
My initial transparent background might require me to use white for my menu links due to the kind of background image used and we know dark BG Image over white looks fantastic when implementing transparent… but if I now require lets say dark-blue while in sticky menu I can not do that because the color can not be controlled in sticky menu which is inheriting from “General” background color settings. If in “General” the background color is specified as dark-blue it affects the transparent.
Please It would be appreciated if you can just implement this and make an update to your theme. Cheers
Hi,
Thank you for your patience (I had to leave town and just got back – it’s not typical for me to do this).
To be honest I’m not quite sure you are understanding my explanation so I will try again. Basically there is no reason to have a bunch of extra options that simply add a more bloat to the theme because of how the Overlay Header (transparent header works). If you were to set for example “blue” links in the Customizer it will NOT affect the transparent header, the header will still have white links because it’s based on the style you choose when enabling it here – https://cl.ly/qnxZ – when using a transparent header almost always you would want either white or black links which is why it works via a custom class and CSS in the theme targeting the transparent header only (leaving the sticky header set to whatever is in the Customizer).
Making the links white in the Customizer so that it looks good on the transparent header as you did is not needed, whatever you set in the customizer is for your standard header, the Overlay header will always inherit styles based on the selected value in the page settings and the theme’s CSS.
So if you want a dark blue for your sticky header all you need to do is change the value in the Customizer. Your transparent header will should white if you selected white for your header style – https://cl.ly/qnxZ
I hope that makes better sense now.
- AJ
Hi, I have purchased Total themes from you last October 17, 2017… I already have installed it… but after having some issues recently with my hosting account, I need to delete and re-install it again… Now, when I was trying to activate my WPBakery Page Builder license, it brings me to support.wpbakery.com/licenses page and tells me that “No Licences Found”. Can you assist me how I can resolve this problem?
Sorry, don’t mind this comment… wrong post… it’s intended for another theme, not yours… My mistake, my apologies.
Hi, what “related posts” shortcode for using in single post template?
In version 4.5.5 I added the ability to display related items by using &related=1 in the advanced query like this – https://cl.ly/plpk
- Aj
Thank you very march, working perfectly!
we have version 4551 and when using customize > general > social sharing we have facebook and twitter on, but set it to visible on desktop only. that setting is not working and will still show the bottom fixed icons on mobile phones. also not working if I set it to “hidden on phones.
Hi,
This is AJ the theme developer.
The visibility setting for the social sharing is being removed because it’s actually not possible to make it work well along with the vertical social sharing option (since it requires extra tweaks to the body tag as well to offset on mobile).
If you want to disable the social on mobile it’s best to use CSS. Which social style are you using? Vertical or Horizontal?
- AJ
thanks for replying, I am using the vertical social share and only wanted to display on large format computer screens, desktop only.
Hi,
This would be the correct CSS for that:
@media only screen and (max-width: 959px) {
.wpex-social-share.position-vertical { display: none; }
body.wpex-share-p-vertical.wpex-docready { padding-bottom: 0; }
}
body.wpex-share-p-vertical #site-scroll-top { margin: 0; }
If you have any issues with that, please let me know!
- AJ
Why do I constantly keep getting prompt to update the theme even when it is up to date? https://prnt.sc/iizvtu Please help resolve.
Hi,
No other customer is having this issue and I double checked my updates API and it is correct. This is sounds like a transients issue. Whenever an update is available it gets cached (to prevent extra checks to the server that checks for updates) and after updating the theme WP will clear that cache. However, it seems like yours may not have cleared for some reason. If you click the check again button does it fix it? https://cl.ly/plUE – or if you log out and back in?
Also did anyone edit the Total functions.php file at all? If the version number in the functions.php file where it says:
define( 'WPEX_THEME_VERSION', '4.5.5.1' );
Is incorrect then it will continue showing the update notice because this is how the theme checks the active version number.
- AJ
I need to make the lightbox close icon much bigger on mobile. Can you help with the CSS please? I’m using the minimal skin.
The icon is actually a background image so to make it bigger you would either have to create your own X icon and upload it to the site or use CSS to transform the icon into a code based icon such as a font-awesome icon.
Do you have a mockup of what you want to do?
Hi, I have an error on the Demo Importer page: “We could not locate any demos. Most likely your server is blocking outgoing connections so the demos can not be accessed from your site. Please double check your server settings with your web host. If outgoing connections are enabled but you are still getting this error please wait a few minutes and refresh the page to try again.” I’ve sent a message to my hosting support first but they tried with and without firewall activated and they said to talk with you.
Thank you!
Hi Mojo,
The demos are working correctly can you access this URL? http://totaltheme.wpengine.com/demos.json/
This is the URL used to grab the data needed for the demos. Make sure your server can access this URL (if you can ask your webhost).
The theme just uses the wp_remote_get function to access this URL – http://totaltheme.wpengine.com/demos.json/ – and if it returns an error it’s either because your firewall is blocking me or our firewall is blocking you.
Another thing…I see your support license has expired which means you purchased the theme at least 6 months ago. Can you make sure your theme is up to date?
- http://wpexplorer-themes.com/total/changelog/
- http://wpexplorer-themes.com/total/docs-category/updates/
I actually added a fallback so if you can’t access out server it will try accessing github – https://raw.githubusercontent.com/wpexplorer/total-sample-data/master/demos.json – which doesn’t block anyone so you should be able to view the demos from this URL. If not then the server is having some issues.
By the way…the theme does ‘cache’ the response, so it’s possible that even though they disabled the firewall the theme was returning a cached response and you may need to disable the firewall and refresh the page a couple times.
- AJ