Discussion on Total - Responsive Multi-Purpose WordPress Theme

Discussion on Total - Responsive Multi-Purpose WordPress Theme

Cart 58,048 sales
Recently Updated
Well Documented

WPExplorer supports this item

Supported

22359 comments found.

It appears that in the latest (May 31, 2019) update there is a bug that is messing with the “Left Social/Right Content” layout of the “Top Bar.” All of the other top bar layouts seem to be behaving as normal. Just wanted to report this.

Hi,

Can you try clearing your site and browser cache? There has been some updated CSS for the topbar positioning and it seems like maybe your site is loading old CSS so it’s not working correctly. If you have cleared all cache and still have issues please share the URL so I can inspect and see if there are any child theme edits causing the issue as I’ve tested locally and can’t recreate the problem myself, thanks!

- AJ

Hi, I’m getting an error message when logging into paid support saying that email is already being used without a field to correct. Just updated to 4.9.1 and having difficulty with the responsive image grid. After I updated and cleared cache, images would not display. I recreated image grid and now hides images on mobile. Everything functioned before. Thank you!

Hi AJ, thank you for your response. I believe my old username is “sparked”. Look forward to the update.

Ok Geoffry I did find your old username and removed it so you should be able to log into the support now again ;)

- AJ

ps: By the way in the near future I’m actually replacing the theme lightbox with a new/better script that won’t have custom skins – http://fancyapps.com/fancybox/3/ (just a heads up if you want to have a look at how it works)

Thank you AJ!

In the latest version of Total, the top bar in the Chrome browser is displaying the social media icons in a bulleted list rather than in a horizontal row. http://thoughtleadershipleverage.com It looks correct in the Edge browser.

Nevermind! I cleared Chrome and things are displaying fine now. Thanks. :)

Recent comments slider or carousel Is it possible to display comments in a slider or carousel or similar. I can’t find anything in the WP Bakery tools but just wondered if there was a way to show the latest comments on the website in this way?

Hi AJ, Thanks for your positive reply. Our use would be to show comments (reviews) on from our portfolio posts and ideally would be an auto revolving slider type view of those comments that we could display on a different pages. So much like what you offer for different post-types already but just for comments. Hope you can do something like that one day, it’d sure be a great feature to an already fantastic theme! Matt

Hi Matt,

It’s a cool idea. Comment queries work very differently in WordPress to standard post queries. I thought pretty hard on this to see if it would be possible to add a setting to the current Testimonial modules so that you could grab a list of comments and while possible it would add a significant amount of bloat so it’s not worth it.

So my other thought would be something like a child theme modification where anytime someone adds a comment on a portfolio item it actually gets stored as a testimonial as well in the testimonials post type this way they can be accessed. Doing this means you could also hook into the comment form to add a “rating” field on your portfolio items.

Now…if you are using the Portfolio Comments simply so that people could submit ratings maybe instead you’ll want to try out my front-end testimonial submission form plugin instead for Total – https://wpexplorer-themes.com/total/docs/testimonials-form/ – this way instead of having the comments field on portfolio items you can have a separate form on your site that you can provide to your clients.

- AJ

Thanks for reply. Yes I saw the option for testimonials and the submission form plugin, but we need to use comments on individual portfolio items rather than site wide testimonials i.e. for us portfolio post types work as individual ‘gardens’ and people comment on the individual portfolio post (garden). Your idea of using the children theme to store portfolio comments as testimonial as well could work for us if that was possible.

Hi Aj, I wanted to create ACF gallery manual and use your lightbox option with your documentation. But I see console errors and lightbox doesnt show any pictures. Can you check it? Url: https://beyin.demosayt.ml/qalereya/

Hi,

Sorry about this, my docs may have been a bit outdated because you are using “lightbox-group” and it should be ””wpex-lightbox-group” (with the prefix”.

Now…if you are using ACF I actually added in Total 4.9 the ability to display your ACF gallery via the Image Grid module like such: https://cl.ly/8fbedc

And if you want to do it manually you could always insert the Image grid on a page then in text mode copy the shortcode to place in your template like such:

<?php echo do_shortcode( '[shortcode_here]' ); ?>

- AJ

I noticed the same thing as pixldigital. Most all Total updates had little visual affect on my websites in the past, but I lost custom font sizes and WPBakery elements with this update. I noticed the update version was a huge leap too from 4.8.5 to 4.9.1? I restored to an earlier version via my hosting provider until I have time to update all of my Total WordPress websites. So this involved some major changes/updates?

Hi,

This is AJ the theme author.

Sounds like you simply needed to install and activate the new Total Theme Core plugin. More info on the changelog for 4.9 here: https://wpexplorer-themes.com/total/changelog/ – as many functions have been moved into here such as the Total WPBakery modules.

Unfortunately there isn’t really a good way for me to warn customers about this new plugin besides the changelog and the noticed in the WP admin (themeforest doesn’t give us your emails so we can’t send out an email notice) but it was a required change.

Now, I will be releasing 4.9.2 later today with a couple other small fixes if you wanted to wait for that: https://wpexplorer-themes.com/total/upcoming-update-changelog/

- AJ

Awesome, thanks AJ! I’ll tackle this later in the week.

If you do have any issues let me know. I’m here to help!

The theme disables some default WPBakery elements like VC Gallery. How do I restore it?

Hi,

You can re-enable this via a child theme like such:

add_filter( 'wpex_vc_remove_elements', '__return_false' );

This will restore all unsupported modules: https://cl.ly/660682

You could also only restore the gallery if you prefer like this:

add_filter( 'wpex_vc_remove_elements', function( $elements ) {
    $key = array_search( 'vc_gallery', $elements );
    if ( false !== $key ) {
        unset( $elements[$key] );
    }
    return $elements;
} );

But I would recommend you check out the Total lmage Grid module instead which has way more options and better design: https://cl.ly/248b3c

- AJ

Hi! Just a small question. I’ve build a custom manual header. This is oke, but I only want to show that one on desktop, not on mobile. On mobile I want to show the standard one. How is that possible? Thanks! Edwin

Hi Edwin,

This is AJ the theme author. This wouldn’t be possible using the Total “Header Builder” functionality because the way it’s coded it actually “removes” functions from the theme when you have it enabled to keep things optimized and prevent confusion (such as hiding all the normal header options in the Customizer).

To do what you want isn’t hard but it will require some coding via a child theme. You’ll want to insert your custom header template via theme hooks – https://wpexplorer-themes.com/total/docs/action-hooks/ – then you will want to use a little CSS to show/hide the header you want when you want it.

I can help with the code if needed, just let me know.

- AJ

Hi

I wanted to know if there was a way to change the order in which portfolio categories are displayed. The current order is based on the amount of elements contained in each category.

Unfortunately there is no built-in way in WordPress to order taxonomy terms (like portfolio categories). But there are some nice 3rd party plugins that allow you to do this. For example this plugin: https://wordpress.org/plugins/taxonomy-terms-order/ (which has been tested and works well with the theme).

- AJ

update is causing technical difficulties

HI,

This is AJ the theme author. I’d be happy to help but I need to know a bit more information. What issue or error message are you having exactly?

- AJ

Hi AJ

How are you doing today? Hope all is well with you. This is more of a heads up just encase it’s a theme update related challenge instead of my sever. All is well after a logout/ login to the WordPress Admin panel.

I received the following error today when updating Total from 4.8.5 to 4.9.1.

“Since WordPress 5.2 there is a built-in feature that detects when a plugin or theme causes a fatal error on your site, and notifies you with this automated email.

In this case, WordPress caught an error with one of your plugins, WPBakery Page Builder.

Error Details

An error of type E_COMPILE_ERROR was caused in line 173 of the file /home/mywebsite.com/wp-content/plugins/js_composer/js_composer.php. Error message: require_once(): Failed opening required ’/home/mywebsite.com/wp-content/plugins/js_composer/include/classes/core/interfaces.php’ (include_path=’.:/opt/cpanel/ea-php72/root/usr/share/pear’)”

Hi AJ

To answer your question this error didn’t happen with the 4.8.5 update.

It does appear that everything is working fine on my site and that the functions.php file was updated because it has the following at the very top.

/** * This file loads all the needed files for the theme to work properly. * * DO NOT : USE AN ILLEGAL COPY OF THIS THEME * DO NOT : EVER EDIT THIS FILE * DO NOT : COPY AND PASTE THIS FILE INTO YOUR CHILD THEME * DO NOT : COPY AND PASTE ANYTHING FROM THIS FILE TO YOUR CHILD THEME BECAUSE IT WILL CAUSE ERRORS * YES : USE HOOKS, FILTERS & TEMPLATE PARTS TO ALTER THIS THEME VIA A CHILD THEME * * Theme Docs : https://wpexplorer-themes.com/total/docs/ * Request Support : https://wpexplorer-themes.com/total/docs/how-to-request-support/ * Theme Snippets : https://wpexplorer-themes.com/total/snippets/ * Using Hooks : https://wpexplorer-themes.com/total/docs/action-hooks/ * Theme Support : https://wpexplorer-themes.com/support/ (valid purchase & support license required) * * @package Total WordPress Theme * @subpackage Templates * @version 4.9.1 */

The error I’m speaking about only came up once right after the 4.9.1 update completed and then never came back again.

Security, hmm. I did add an htaccess file to both the wp-content/themes folder and the wp-content/plugins folder for security since the 4.8.5 update. In the htaccess file is the following.

”<FilesMatch “\.(php|php\.)$”> Order Allow,Deny Deny from all </FilesMatch>”

Bill

Hi Bill,

Yes this code in the .htacccess file could cause the issue since it could deny access from WordPress.

Now because of how updates work when ever a theme or plugin is updating it can generate errors if the page is refreshed before the update is fully complete (which maybe is what happened) but usually WordPress places a “Maintenance mode” so the site can’t be accessed during this time to prevent any warning triggers. It’s possible Maintenance mode isn’t working correctly on the server as well.

Now, I wouldn’t really worry too much about it, if everything still works correctly and the updates finish just fine, maybe it’s best to keep your security code in place and not mess with things. But if you do have an outdated site you wanted to test on you could always try removing the code to test and see if it helps.

- AJ

Thanks AJ

Makes sense to me to leave as is because all seems to be working fine. I think I’ll remove the htaccess code during the 4.9.2 update when it comes out as a test for curiosity sake. Hmm, could put the site in maintenance mode manually via the functions.php file in the child theme as well. Then just comment the code out after the update.

Have a good afternoon AJ and thank you again for your assistance.

Bill

Been getting this error from RevSlider ever since the the May 30 update: Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 32768 bytes) in public_html/wp-content/plugins/revslider/includes/output.class.php on line 4814

Hi,

This is just a general server error. Looks like your server may have a pretty low memory limit for PHP which you’ll want to increase to at least 256MB – https://wpexplorer-themes.com/total/docs/increasing-memory-limit-to-php/

- AJ

WP Bakery Editor broken?

I just updated the WP Bakery plugin, and after completing the update, my front page was broken. It displayed the slider, the sidebar, the menus – but the visual editor elements were just displaying as code. (As opposed to the photo grids, post grids, etc.) The horizontal lines between sections, added by the editor, were appearing as they should have, though.

Do you know if there’s any kind of issue with that new version? Did I just get a corrupt download, possibly? Unfortunately I panicked and restored a previous version of the site before taking a screenshot, so I can’t show you what was happening.

I’m not sure if I have a question here. Maybe a heads-up? Unless you think it really could be a corrupt download and you suggest I try again.

Hi,

Sorry for any confusion with the update as there is no better way for me to let you guys know of the change besides the important notices on the changelog: https://wpexplorer-themes.com/total/changelog/

All you need to do to fix the issue is install and activate the newly bundled “Total Theme Core” plugin.

Let me know if you have any questions about this or followup issues.

- AJ

Hi

After I did the update, some elements not showing correctly and its like codes. please see here:

https://www.aldahil.com/services/

not sure what happned?

Hi,

Sorry for any confusion with the update as there is no better way for me to let you guys know of the change besides the important notices on the changelog: https://wpexplorer-themes.com/total/changelog/

All you need to do to fix the issue is install and activate the newly bundled “Total Theme Core” plugin.

Let me know if you have any questions about this or followup issues.

- AJ

When I try to activate the Total Theme Core, I get: “Error: Current PHP version does not meet minimum requirements for Total Theme Core”

What PHP version is required?

I set a minimum requirement on the plugin to 5.6.37 which is pretty low as WordPress recommends 7.3+

I just updated the plugin on the server to change the requirement to 5.6.20 which is the minimum WordPress requirements – can you try deleting and re-installing the plugin?

Although I would highly recommend if possible upgrading your server to at least PHP 7.0 not only for security reasons but the speed difference is huge.

- AJ

I was able to upgrade to PHPc 7.1, which is the latest my hosting service has. It now works fine.

Hi AJ, hi Adrian, checking my new site in dev with 4.9 on Google Insights. Just saying wow. It is really fast now: Desktop: 96 ! and mobile 70 – 80!

Nice! I’m glad to hear that ;)

- AJ

HI AJ, on my second website I can see a problem after the update.

If I try to switch trough the lightboxes in the customizer the only one that works is the DEFAULT one. If I try to use for example the flat dark, the white one, the dark or the metro ones they seem to be broken. https://www.robertorizzo.com/18345/dipinti/due-ritratti-di-gatti-in-3-d/ Moreover the latest update broke the before/after image effect. Now there’s just a blank spage instead of the image: https://www.robertorizzoart.net/hand-painted-rock-kestrel/ https://www.robertorizzo.com/17604/sassi-dipinti-rock-painting/ritratto-sasso-dexter/ Another important thing:the image carousel animation doesn’t work anymore after update. The images are blocked and don’t scroll automatically: https://www.robertorizzoart.net/galleries/rock-painting-art/

Could you please take a look into these?

Thanks,

Bob

Hi Bob,

*Lightbox: Oh, bummer. Thanks for the heads up on the lightbox skins. So I actually started coding the theme as I will be switching over to a better lightbox script – http://fancyapps.com/fancybox/3/ (already purchased the dev license) and didn’t have time to finish so I reset most but forgot one function :(

Replacing this file in your theme at Total/framework/core-functions.php will fix the issue with the lightbox skins: https://cl.ly/62fdc2

  • Before/After: Thanks for the heads up. Looks like my script was checking for imagesLoaded which is no longer used for the module so it won’t render. The problem was I noticed on my test site the script is loading globally from another plugin so I couldn’t see the issue :(

I fixed this up in the plugin. You can temporarily switch themes, delete the plugin and re-install it to fix this issue.

  • Image Carousel: So I actually standardized settings across carousels so slim down code and make it the same no matter the module. For some reason on the image module I had “Auto Play” enabled by default but not in the other carousels so now it’s disabled by default. Sorry about this, but I think it’s important moving forward to keep things consistent. If you edit the module to enable Autoplay will it work?

Thanks for reporting these issues! You never fail at finding them, it seems you use all the features that I tend to break, ha. Sorry about that.

If you want I can send you the updated theme and plugin via a ticket. But I will likely post 4.9.2 later today live as well and it is Friday which isn’t a huge traffic day for most people.

- AJ

Hi AJ,

I do use the content filter using a menu on a blog page. Doing that, the url gets the ?filter=category added. This works like a charm. Now I would like to do something similar with a ACF-field like ?acffield=value. Is this something I can create using some snippets or so? I have been looking in the source of the theme and found something about the filter-option in the file jquery.fancybox.js. Or do you some other possibility?

Regards, Bjorn

PS Great work on the latest update 4.9.1!

Hi Bjorn,

To do what you want is actually fairly complex. So the way the filter works is the links have a data attribute telling it what to filter like such: https://cl.ly/8fffb1 – this data attribute then looks for any entry in the grid that has the same classname.

By default this is generated in the theme via PHP by looping through all the posts on the page and grabbing any categories they are in and then looping through those categories to generate the filter menu.

If you are using the “NavBar” to create a custom filter menu – https://www.youtube.com/watch?v=ifhQ7Fb-0lE – this is done slightly different by checking the menu item to see if it’s a term and if so adding the data filter tag with it’s ID.

In order to add custom fields to a filter would require changing a lot in your child theme including overriding the whole filter links items (there are ways to do this but it’s not optimal as the theme still runs some code that can’t be removed in any other way but manually) as well as hooking into the entry classes to insert your custom classnames to be used for the filter.

Depending what you are trying to do my recommendation is always FacetWP – it’s a pricey plugin but it’s dam good. It’s geared more towards developers as usually there is coding involved but when done right it works like a charm – https://facetwp.com/ (I’m not an affiliate).

- AJ

Hi AJ, Thanks for the explanation. Seems to be a lot of work. I will find another solution for my issue. I will keep FacetWP in mind.

Will a list of shortcodes be published for the Total modules? Appreciate you’re busy, no rush.

Thanks, Paul.

Hi Paul,

Yes I will be doing this. I’m going to be doing quite a bit of updates to the docs in general and moving them to total.wpexplorer.com/docs/ as well.

If you have a local installation of the theme you could always create a temp site with WPbakery and the Total Theme Core plugin active to simply insert modules then in the “text” mode you can copy/paste them.

Also because all the shortcodes are defined inside the theme I was thinking I could write up a little script inside the theme to auto generate the list of shortcodes with their options. Just not sure where I would put this (since most customers would never use it). Thoughts?

- AJ

Sorry, late reply. Short of adding them into Theme Options, or having a separate documentation page, I’m not really sure.

Great theme! Unfortunately, the latest update broke the before/after image effect. Now it’s just a blank spot on the page. Could you please look into this?

Sorry about this another customer reported the issue and I”ve already patched it – https://wpexplorer-themes.com/total/upcoming-update-changelog/

For a quick fix you can switch themes temporarily and delete the Total Theme Core plugin, switch back to Total and re-install the plugin. Then clear the browser cache and it should be fixed.

I will be pushing out the theme update with the fix later today as well if you rather wait.

Sorry for the troubles,

- AJ

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey