Discussion on Total - Responsive Multi-Purpose WordPress Theme

Discussion on Total - Responsive Multi-Purpose WordPress Theme

Cart 58,253 sales
Recently Updated
Well Documented

WPExplorer supports this item

Supported

22385 comments found.

How can Overlay Header be enabled for posts or CPTs using Dynamic Templates? The Total page settings are not available for Templatera templates.

I’m posting the solution I ended up using here, in case someone may want to achieve the same effect:

add_filter( 'wpex_has_overlay_header', function () {
    if ( get_post_type() == 'post' ) return TRUE;
} );
Just replace ‘post’ with your post type slug. It’s great that the theme has so many developer-friendly hooks and filters. Good theme, this one.

A small correction to the above code (which will make all non-posts not have an overlay header regardless of setting):

add_filter( 'wpex_has_overlay_header', function ( $current_setting ) {
    if ( get_post_type() == 'post' ) {
        return TRUE;
    } else {
        return $current_setting;
    }
} );

Yep, that’s the correct code ;)

You can also do it like this:

add_filter( 'wpex_has_overlay_header', function ( $bool ) {
    if ( 'post' == get_post_type() ) {
        $bool = true;
    }
    return $bool;
} );

Which I feel is a bit “cleaner” then having an “else” statement.

I’m glad you like the theme!

- AJ

I purchased support, but the system isn’t recognizing this. I am having trouble with the update to the WP Bakery after updating the theme. It does not work and the plugin indicates if you purchased the plugin via a theme, which is THIS case, that I need to request support through the theme.

Hi,

This is AJ the theme developer. I see that you have valid support and it’s working correctly here and on our own system which is showing you have support up until 09-03-2018. Are you having issues submitting a private ticket?

What issue are you having when you try and update the plugin? The most common error is that the server won’t allow access to the plugin. Have you tried deleting and re-installing the plugin?

Please let me know how I can be of help, I just need a bit more info regarding what sort of error you are having. Thanks!

- AJ

Hi AJ. You (and Kyla / WPExplorer) are doing an awesome job making developing in Wordpress a breeze. Your support is awesome and I could not be happier with the Total Wordpress theme. (I think I’m up to seven licences on my personal freelance Envato account). Our museum site made a decision to use Modern Tribes Events Calendar Pro a long time ago. (I find the plugin and their updates to be a piece of junk to be honest). We use it together with the Eventica WP theme. I would like to change the theme to Total, but I will miss event carousel and other view modes. Have you ever considered making a Events Calendar Visual Composer plugin? I have played around with the Grid Builder but not all custom fields are accessible. I find the design possibilities somehow a bit limited too. I would LOVE to see a deeper integration with this plugin. That would be TOTALly awesome. :)

HI there,

This is AJ the theme developer ;) I would actually be interested in creating a sort of extension plugin for the Events Calendar. do you have any inspiration you can send over (like the carousel you speak of so I can see it?). Sounds like a nice idea.

Lately though I’ve seen a lot more customers buying and using this plugin – https://codecanyon.net/item/modern-events-calendar-responsive-event-scheduler-booking-for-wordpress/17731780 – have you checked it out before? It definitely has a much “prettier” look then the core Events Calendar plugin and more modules to display events (you can actually log in to their demo site to test things out).

- AJ

Hi,

When I have blog pagination style set to load more, blogs from excluded categories are displayed. Also, when load more is selected the blogs are displayed in wrong date-order.

For all other pagination styles (infinite scroll etc etc) these issues don’t occur.

My blog is here: https://www.kyushujourneys.com/blog/

I’ve currently set pagination to infinite scroll (because the excluded blogs are full of duplicate content so I don’t want them indexed). I notice in this case even though layout is set to grid with 3 columns the final two blogs are not following the 3 columns layout. Not sure if this is related.

I’ve already cleared all caches, repaired my database and then restored database from backup.

Any idea?

Thanks, Simon

Hi Simon,

1. Thanks, I do see that issue and I’ll fix it right now for upcoming 4.6.1

2. I meant, I tested the load more on my test site and didn’t have issues with duplicate items.

3. Great! When you submit it just request it be sent to AJ so I can get this fixed up asap and include it in the next update.

- AJ

Sent support ticket as requested.

Sorry, forget to answer previous question. I’m not using any blog-related plugins.

Take your time, not urgent.

Fixed with 4.6.1 update. Thanks.

Another company that cannot keep their Live Preview / Demo site operational. Then can your support be like ??!!

Hi,

I hope you had a great weekend. I am sorry but I don’t understand what the question is. Are you having issues trying to access our live demos? I don’t see any issues when I check – https://cl.ly/pxFE

We actually pay for a very expensive managed dedicated server as well as we have a premium CloudFlare account to make sure it never goes down. If you are having issues accessing our live demo please let me know. Thank you.

If you have any concerns about our product or support have a look at all the amazing customer ratings – https://themeforest.net/item/total-responsive-multipurpose-wordpress-theme/reviews/6339019

- AJ

Hello, I want to attach views from the woocommerce to the child theme. Unfortunately, the changes that I make are not occasional on the frontend page. Directory structure screenshot: https://scr.hu/nlkVw3. I am asking for advice :)

Hi,

The directory structure is correct (comparing the the github repo – https://github.com/woocommerce/woocommerce/tree/master/templates/order) if you aren’t seeing the changes live can you make sure it’s not a caching issue? Be sure to clear any plugin/site/browser cache whenever you are updating the files.

Total doesn’t tweak any of those files, but even if it did, the child theme should take priority.

What are you trying to change exactly?

- AJ

Hi AJ,

I was wondering, does Total theme have a functionality like this plugin?

https://wordpress.org/plugins/wp-image-refresh/

I would prefer to use functionality/option that is native preferably, if not then I’ll check this plugin out.

Thanks Neil

Hi Neil,

What are you trying to display exactly? Because you could use the Total Slider and set the order to “random” – https://cl.ly/pxXs

But more importantly, because you are using WordPress you should either have built-in server cache or a caching plugin active on your site it’s possible using this type of plugin would not even work because your site may just show the first image that got cached. The only way to truly have a random image displayed on a cached site is v via a javascript-driven function.

- AJ

Hey,

I got this page: http://eventaholic.dk/konfirmationskoersel/

I want the background to be shown in the sides, but i want the content background to be white, so that i can see the text: https://imgur.com/a/jmo3N

Have a look at the picture. I want the blue part to be white. I have tried the boxed layout, but then it boxes the header and main menu. I dont want to box the header and main menu. What to do?

Hi,

It looks like this is the only page where you have a background image correct? If so, the best solution is to just add some CSS to the page to make the content white for this page. Like this: https://cl.ly/pxii

Example code:

body #main,
body #main a,
body #main p,
body #main h2,
body #main h3,
body #main h4 { color: #fff; }

By adding the CSS to the page directly via the page builder (http://wpexplorer-themes.com/total/docs/making-css-edits/) it will only be applied to this specific page.

Now if you wanted your site text to be white across your entire website you would add this code instead at Theme Panel > Custom CSS.

- AJ

hello, i dont want the text to change color. I want the background for the text area to change color. But in the sides, i still want to keep my own picture.

Oh…that can be done via CSS like this:

body .page-header {
    margin-bottom: 0;
}
body #main #content-wrap {
    background: #fff;
    padding: 40px;
}

You could also use the boxed layout and then some code in your child theme to move the header/footer outside of the boxed layout: https://wpexplorer-themes.com/total/snippets/move-header-footer-outside-boxed-layout/

Although the CSS is much easier, but up to you!

- AJ

Hi, is there any way the “site-logo-text” can be made H1 on just the homepage ? Thanks to anyone that can help…

Hi,

Thank you for your patience over the weekend. This is Aj the theme developer. It is possible via some custom code added to your child theme. I can give you the code needed, but first I need to make sure your theme is up to date. Can you double check and make sure you are using Total version 6.1 and you setup a child theme? http://wpexplorer-themes.com/total/docs/child-theme/

If you are up to date please replace this file – https://cl.ly/pxGm – via FTP in Total/partials/header/

Then you can add this code to your child theme’s functions.php file:

add_filter( 'wpex_header_logo_output', function( $output ) {
    if ( is_front_page() ) {
        $output = '<h1>' . $output . '</h1>';
    }
    return $output;
} );

That will add an h1 around your text on the homepage only.

- AJ

Hi AJ, no need to apologize… thank you very much for your help, your code works perfectly!

Upgraded to new version and now there are two logos on my site and I can’t figure out how t fix it. www.jim-online.com

Didn’t hear from you. Couldn’t figure it out. But hacked it with CSS display: none;

Hi,

Sorry for the delay over the weekend. Usually I don’t take the weekends off, but I had to this time. I just replied to your last comment explaining why this would happen, please check it out and if you have any follow up questions let me know!

- AJ

I just purchased this theme and it will not let me install any required plugins, I keep getting this error message. I have already tried deleting theme, reinstalling twice and still not working.

Download failed. Unauthorized

Plugin not activated. A higher version of Slider Revolution is needed for this theme. Please update the plugin.

Hi,

This is Aj the theme developer. Thank you for your patience over the weekend (I hope you had a good one). Usually I don’t take the weekend off, but I had to this time.

This error is unfortunately server related. All the plugins are inside the theme which means they are installed on your server, if they can’t be accessed it’s because your server is denying access to your own files :( If you contact your webhost they should fix this for you. But you can also re-download the theme on your computer, extract and you will find all the plugins under Total/framework/plugins so you can upload them via Plugins > Add New and selecting the zip files.

If you still have issues or any follow up questions please let me know.

- AJ

How can I change the menu of the posts, categories, tags… I need all the pages from blog to use its own menu, but I can only change the menu of the page “blog” so the other pages like posts displays the standard menu. Can you help me with this?

Hi,

Since you need something very specific you’ll need to use some custom code via a child theme. Here is a sample snippet: https://wpexplorer-themes.com/total/snippets/display-custom-menu/

- AJ

Thank you!

Contact Form 7 “Send” button isn’t showing up and the input fields are acting a little strange – instead of removing the description text, it just adds to it (like in the main message field). http://goodneighborpropertymgmt.com/

Hi there,

  • Looks like your buttons all have an orange background and color – https://cl.ly/ptNG – Please double check your button settings under Appearance > Customize > General Theme Options > Links & Buttons
  • The inputs are using standard “values” not placeholders. So you would clear the text before adding your own custom content. However, you can easily switch them to placeholders instead. I see you imported the freelancer demo, so I will fix it on the demo as well and update the sample data.

It’s very easy, please see here: https://cl.ly/puFr

Thanks for the heads up!

- AJ

Great, thank you!

On my site the posts of the last two month are not shown on the blog on mobile. On desktop things are fine. Any ideas what the issue is? See https://imwz.io/blog/

Hi,

It looks the same for me on desktop and on my iPhone. I do see you have WP-Rocket active have you tried clearing your cache? And if you are using another CDN like CloudFlare as well, make sure to clear that cache also. The only reason I can see for this happening is if you are seeing a cached version of the site.

- AJ

Yeah, in the end it was an issue with Rocket cache. Though it was turned off Varnish was somehow still loading the pages based on Rocket Cache files. After removing some of its code in wp-config and some files it caused 404s and blank pages. Now with it back on and a DreamPress Rocket bridge plugin all is fine again.

Is there a way to launch a lightbox from a button on the Revolution Slider… for example, to play a video on YouTube? I tried entering “wpex-lightbox-video” under ‘Attributes’ > ‘Classes’ as suggested on a previous post but that doesn’t seem to be working.

Actually I just added a new setting to load the script globally – https://cl.ly/puM3

If you want to make use of this function here is the updated file – https://cl.ly/pu9x – you can replace in Total/framework/classes/

- AJ

That worked… thank you!!

You are welcome ;) If you need anything else let me know. If not have a fantastic weeekend!

After updating the theme the social FontAwesome icons no longer seem to work. I had to include the FA script and font family manually before any of the icons would work, but the social icon are still appearing as flashing question marks and exclamation points (https://paperandspark.com). Any insight would be appreciated!

Hi,

When inspecting the code I see the icons are being converted from standard html into SVG’s – https://cl.ly/puTW – which could be breaking them (hard to tell).

More importantly your site is not loading the theme’s core style.css file which includes the CSS for font-icons. It looks like someone copied the theme’s style.css to the child theme and modified it and it’s missing a bunch of crucial CSS, including font icons.

I highly recommend altering the child theme to correct this and properly load the parent style.css and then add only your custom CSS to the child theme.

Looking at the site it appears to have very few if any custom CSS alterations so it should only take a couple minutes and can help prevent a lot of issues in the future.

- AJ

Hello,

Facebook is now requiring all media or business page owners to add what they describe as an “Open Graph markup tag between the ’ head ’ tags in your website’s HTML” in order for us business page owners to have any ability to edit the preview text of our page posts, a very important and basic capability. (They require this tag installation as part of their new “Link Ownership” publishing tool, which they implemented to combat fake news, etc….supposedly…eg, people mislabeling/mis-summarizing news stories.) The contents of the tag must look like this (although I changed the # at the end)—

meta property=”fb:pages” content=”12345678910111213”

As a non-developer who has permanently sworn off child themes, I’d like to believe there must be a more simple, straight-forward way to add this little tag required by Facebook to just one of the pages on my website (although I wouldn’t mind adding it to more…just not necessary). I tried putting it in a raw html module, but that didn’t work, I guess because that module doesn’t put the tag between the ‘head’ tags on the webpage. While I very much appreciate your excellent write-ups on child themes and their usefulness, the whole reason that many people buy Wordpress templates like Total is because we don’t have the time or resources to get into the muddy waters of child themes, and we can’t afford to take any risk of messing up a site that already looks the way we like it. So child themes are definitely out of the question for me, due mostly to a lack of resources—time, expertise, etc. Because every business has a FB page nowadays, and because FB is now requiring this intallation to a page owner’s website/webpage (at least for purposes of posting links to their FB page from their own website), could you please either tell me a simple way to add this to a webpage on our site, or perhaps consider adding this functionality as a straight-forward module (like, e.g., “raw html”) in an update? (Again, child themes are 100 percent out of the question for me at this point.)

Unfortunately FB imposes these things in an autocratic manner and leaves the rest of us picking up the pieces…

Thanks very much!

Good stuff. Thanks! I use WPEngine so I can copy my site to staging and then perhaps even do the initial install of Yoast there, and then I’ll look over the staging site appearance, and if no problems appear then I’ll go and do a fresh install of it on the live site (assuming there isn’t any complicated licensing issue that would arise from do 2 separate installs—staging and live…if so I’ll just install live).

In the future I’ll do all theme and plugin updates on staging first. It’s all about eliminating risk for us, so the staging site is great advice! I really like WPEngine. Had to switch from Bluehost a couple months ago as I was not satisfied with them.

I’ll be keeping my eyes and ears open (but only via word of mouth/references) for a go-to developer who is even half as competent as you!!

Thx again.

Murphy’s law—right out of the box, Yoast doesn’t work. It won’t let me uncheck and save as unchecked the box “Discourage search engines from indexing this site” under Search Engine Visibility in “Reading Settings.” Ever encounter that? (I had previously uploaded a robots.txt file to the root file a month ago, but I went ahead and deleted it (through FileZilla) and Yoast still refuses to save the Search Engine Visibility box as unchecked.

I guess I'll have to find another solution (like perhaps go be an off-grid farmer or caveman and let this int'l non-profit die that I've been volunteering over 1500 hours per year for, and on it's tomb we'll say Mark Zuckerberg killed us, all because he required some ridiculous tag on our website that we couldn't accomplish :/

Hi,

On nice I use WPEngine as well ;) (I have a premium dedicated server)

WPEngine stagging manually disables that option to prevent your stagging site from being indexed creating duplicate content issues, it has nothing to do with Yoast SEO. It’s actually important that you never enable that on stagging. But you can disable it as shown here – https://github.com/10up/restricted-site-access/issues/9

- AJ

Hi, How do we open the author box social icons in a new window instead of the current window? Right now the Twitter, Facebook social icons open in the same window, so I need to add a target=”_blank” to the a tag for them. Is there a filter I can use to do that? Thank you.

Hi,

Currently, there isn’t any option or filter just for the link attributes so you would have to modify the entire social output via the ‘wpex_get_user_social_links’ filter.

So I added a new filter for the next theme update. Here is the updated file – https://cl.ly/prKd – you can replace via FTP at Total/framework/ – this adds the new “wpex_get_user_social_link_attrs” filter so you can add a target blank like this:

add_filter( 'wpex_get_user_social_link_attrs', function( $attrs ) {
    $attrs['target'] = '_blank';
    return $attrs;
} );

Via your child theme’s functions.php file.

- AJ

Hi AJ,

Thank you for doing this. But it isn’t working for me. I have replaced the core-functions.php file under /framework and added the code below to my child function. The Facebook and Twitter links are still opening in the same page. There hasn’t been a target added to the anchor. See: https://www.wb.line49.ca/author/dave/, the top author box with the square icons come from Total.

Thanks so much for all your help.

Hi,

Are you looking at a cached site by any chance? I am definitely seeing the target blank being added – https://cl.ly/pxvf

- AJ

Hi AJ. I found very strange issue. I created many portfolios and staffs. Portfolios are my deparments. And my staffs work in this departments. And I want to display my staffs in my portolio grid (I mean that display my departments and under every department title display their staffs. I found good way for it. I copy staff grid vc shortcode to portfolio custom excerpt and that works very good. But after I see when I add this staff grid to portfolio custom excerpt, my portfolio grid images will be disappear.

This is my url: http://hospital.masterstudio.az/laboratoriya/

https://cl.ly/0f1r2y1I3a0b

P.S. I maked many custom css. And I have two different style portfolio pages in this site (Colorfull background and white background). And I used to display secondary image in this page.

I know that I could create this page with VC builder manually. But it is for my client and I want to everythink work auto and I also use for it Custom Page Template for it.

But after I get some notification about direct mail. Posibility also send to master@... I saw this mail cl.ly event section

I use auto custom excerpt with ACF. My excerpt field is Şöbə profili – Kataloq

This issue happens if you changed your username on ThemeForest (looks like it used to be cancavid). I deleted your username from the system so you can log in now.

Yes too much SPAM is sent to our support email so we don’t reply to direct messages as it would be too hard and time consuming to provide quality support.

- AJ

Hi Aj, Thank for fixing the social share module. I appreciate

I still have a “problem” with social share. I don’t like the design of the SOCIAL SHARE module because I cant modify how it looks. On the other hand I do like the SOCIAL LINKS module because I can modify it. But I don’t know what is the link that makes the button to share the page/post you are in. Is it not possible to have the SOCIAL SHARE module with the same options to modify design as SOCIAL LINKS?

Hope you can give me an easy solution.

Fran.

Hi Aj, Thank you very much for your solution! I think this can give a better look to this module.

Just want something “minimal” like this https://www.flickr.com/gp/128880302@N06/F7d368

THANK you very much for your time.

FRAN

Hi Fran,

  • First replace this file via FTP at Total/framework/3rd-party/visual-composer/shortcodes – https://cl.ly/pusz

This file will be in the next update as well and it adds a custom style: https://cl.ly/ptg8

Then you can add CSS to your site for the custom Style to match your needs:

.wpex-social-share.style-custom li {
    margin-right: 12px;
}

.wpex-social-share.style-custom a {
    height: 30px;
    line-height: 30px;
    width: 30px;
    display: block;
    padding: 0;
    color: #777;
    border: 1px solid #aaa;
    font-size: 13px;
    box-shadow: 0 0 2px rgba(0,0,0,0.1);
    transition: all 0.25s ease-in-out;
}

.wpex-social-share.style-custom .wpex-label {
    display: none;
}

.wpex-social-share.style-custom a:hover {
    background: #000;
    color: #fff;
    border-color: transparent;
}

Result: https://cl.ly/puDX

- AJ

Hi Aj, I copy the custom css maybe some one can use it, I had to change some things because yours did not work as your screenshoot. Icons were align to right bottom, deleted box shadow so looks cleaner, set height and width to auto, and the final result is pretty good. Any way, THANKS, because with out your help I could not do this.

/* minimal custom social share */ .wpex-social-share.style-custom li { margin-right: 12px; }

.wpex-social-share.style-custom a { height: auto; line-height: 20px; width: auto; display: block; padding: 10px; color: #777; border: 1px solid #dadada; font-size: 10px; transition: all 0.25s ease-in-out; }

.wpex-social-share.style-custom .wpex-label { display: none; }

.wpex-social-share.style-custom a:hover { background: #000; color: #fff; border-color: transparent; }

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