Discussion on Total - Responsive Multi-Purpose WordPress Theme

Discussion on Total - Responsive Multi-Purpose WordPress Theme

Cart 58,232 sales
Recently Updated
Well Documented

WPExplorer supports this item

Supported

22383 comments found.

hi. AJ. if i use Header > Style > Six > Vertical, its possible when i have levels on menu, itens of submenus open bellow the main item, instead beside/lateral? its is possible? https://ibb.co/cCASD9 as like ‘accordion’ or ‘toogle’ menu > submenus > sub-submenus

Hi,

There isn’t a built-in setting for this but it could be possible if you replace the menu with a custom menu plugin that does use accordions (there are a few out there) or using a little child modification ( I can help with that) to add a widget are where the menu would be and use an accordion style menu widget.

Also some customers really like the “Slick Menu” plugin which can be used to create your entire vertical menu and replace the theme’s menu with something more “flashy”.

- AJ

Hi AJ, I hope you’re well.

Can you let me know how to move the title section in the Portfolio Grid to go above the image instead of below it? See visual attached…

Hi,

Moving the title isn’t possible for the Portfolio Grid module, the only real solution is to edit the module itself to move the code around. Which I wouldn’t recommend. If all you want is a custom grid like the screenshot you could use the WPBakery Grid builder function or since it’s so simple you could create your own module for this (I can help with the code if needed).

Now, I can see how moving the sections around would be very helpful. I added to my todo list to add an option to move things around, it’s going to be pretty complex so not sure how I would accomplish it, but I do think it would be something people would really like.

If you are constantly wanting to make custom looking grids though I highly recommend you check out “The Grid” plugin, it’s very nice and works similar to like Slider Revolution in the sense that you can create custom grid layouts and save them to use on the site.

- AJ

I am having an issue with adjusting the size of my logo. No matter what custom size I change it to, it is not adjusting the size at all.

I have tried:

1) Theme Options -> General (which is used for retina logos). 2) Theme Options -> Header -> Logo Max Width 3) https://wpexplorer-themes.com/total/docs/custom-logo/ 4) Custom CSS

I am not sure what the issue is, could you please assist?

Hi,

By default the logo size displays in full unless you add a max-width or if you add a custom height and than check the box to apply the custom height like this. If it’s not working can you share the URL in question so I can take a look at the current settings? Thanks!

- AJ

Unfortunately even when I set custom heights it does not change. http://beyondthebuild.com.au/

Your logo height is being affected by the shrink logo height option from this sticky header style: https://www.youtube.com/watch?v=sUxnwB0JQGU

Simply go to Appearance > Customize > Header > Sticky header and either disable the sticky header or change the style to “standard” or if you want to keep the shrink logo sticky header than simply alter the option for “Logo Start Height”: https://cl.ly/a921a7332aac

Two questions: How do I add padding under the Maim Menu? And how do I edit the Contact Us Call to action above the footer? Loving the theme!

Hi,

body .navbar-style-one { margin-top: -10px; }

The default negative margin is 25px which is half of the height of the menu (50px) so it can be centered.

  • To alter the callout area you need to go to Appearance > Customize > Callout. More info in the docs here.

Sorry for the delay, I have been having some health issues as of late :(

- AJ

Hi AJ!

I’m just about buying another Total licence but I like the design of your Fabulous theme even more. I’m talking especially about the single posts, the masonry pages and the main navigation. I would like to combine Totals functionality with Fabulouses looks. Is there an easy way to make Total look like Fabulous?

Thanks!

Hi,

There isn’t an “easy” way to make it look the same but it can be done with some custom CSS. I can assist with some small tweaks if needed. Basically you would set your blog to grid style and alter your header to use header style three to get that initial “similar” look. You can use the Customizer to tweak some of the colors but you may need to use CSS for some more advanced tweaking.

- AJ

Hi AJ, I was wondering wether it is possible to show a woocommerce product without header and footer in a inline window.

Using the iframe solution as mentioned here https://wpexplorer-themes.com/total/docs/adding-ilightbox-popups-inline/ certainly shows the whole page.

Trying some “very cool” plugins I am really getting mad and I hope that you have a nice solution.

Rainer

Finally I solved it like this:

<script> if ( top !== self ) { document.querySelector(’.posted_in’).style.display = ‘none’; document.querySelector(’#top-bar-wrap’).style.display = ‘none’; document.querySelector(’#site-header’).style.display = ‘none’; document.querySelector(’#site-navigation’).style.display = ‘none’; document.querySelector(’.breadcrumb-trail’).style.display = ‘none’; document.querySelector(’#footer’).style.display = ‘none’;

} </script>

Hi, the sub menus of the sidebar menus are only visible after a click. I want them to be visible all the time. Therefore I added some CSS, which works. But how is it possible to deactivate the javascript trigger of the parent menu item? Everytime I click on it it tries to open the submenu instead of opening the link. Thank you.

Hi,

This is Aj the theme developer. Sorry for the delay. So basically if you don’t want the toggle affect you could use a different menu style (there are 3 custom menu widgets to choose from in Total) but if you like this design then yes you can use a little code in your child theme to remove the javascript ;)

add_filter( 'wpex_localize_array', function( $array ) {
    $array['menuWidgetAccordion'] = false;
    return $array;
} );

Simply add this to your child theme’s functions.php file.

- AJ

Hi AJ, In the customizer / Blog / Archives & Entries I can select “Meta” but I don’t want the author to be included there. Is there a solution for that ? Thx!

Hi,

You can actually uncheck it from the settings above: https://cl.ly/2T1t0W2H2l0v

Thx; solved!

Hi AJ, is there a way to add a “Heading element” to a dynamic page? For example if one selects blog posts for a given year/month then all posts for that period are shown but I’d like to display a heading element between the header & ther first blog post excerpt. Thx!

Hi,

To be honest I’m not 100% sure what you are trying to do. If you want to insert some custom text to the monthly archives it’s possible but would require some custom code via a theme hook. I can help with the custom code if needed, do you have a simple mockup of what you want to do?

- AJ

Hi AJ, I use a child theme & so I do have a functions.php file already. All my pages have a blue banner type heading element. I want that blue heading element to appear wen I do a search in my blog page or when I select blog posts from some month for example mydomain.com/2018/08. I can send you screenshots via pm if you provide me with an email address. You should have mine I guess. Thx!

Hi AJ, I’ve been doing some more reading. What I want to do is add a “Heading” element from your theme on pages that return true to if(wpex_is_blog_query()) . Right row if I browse to domain.com/2018/08/ I get my logo & menu and right after that a list of posts. I want a Heading element before the list of posts. Maybe this explanation is more clear to you ? Thx!

Hi AJ; I’d like to display category & tags for a single post but the “post meta” element does not support it. Is there an easy way to accomplish this ? Thx!

Hi,

You can use the “Post Terms” to display a list of categories or tags (or other taxonomy) for the current post.

- Aj

Thx; solved!

Hi AJ, can I ask your advice again please about the Quadmenu plugin…. Do you know if there a bit of CSS I can use to force the menu text to be white when the menu is set to Overlay? Something like: #site-header.overlay-header.white-style li a {color:#FFF !important;} (imgn.co.uk front page password ‘im1’) Many Thanks, Chris.

I’ve made a support ticket with Quadmenu to see if they can update their Total plugin to recognise these other Overlay heading settings… its not just the white text setting, there’s also the logo replace etc.. Overlay works with Quadmenu but the other Total settings to change the colours etc. don’t – hope they can help!

.. more issues with Quadmenu over the weekend.. the sticky menu doesn’t maintain its height when scrolling back to the top of the page.. the search function produces an error on my mobile. All I was after was the same menu as they have on their home page at quadmenu.com … mega menu with Off cavas mobile menu. Just not poss with your theme I’m afraid

Quadmenu have said they can’t make their menu adhere to the overlay header styles in Total as it is a page option – and they can only deal with Global theme/customiser options. I’m pretty disappointed in it really as there is no way to replicate the menu they showcase on quadmenu.com home page [the reason for purchase]. The whole widgets and columns in the mega menu is genius, and I really hope one day you can integrate it with Total maybe, but for now I’ll have to ditch it as it doesn’t fully work. -Chris.

Hello,

I want to use the lightbox navigation arrows (next/previous) to browse between images, but i am not using the image grid because i want to have the filter option, so i am using the portfolio grid. Is this possible? I suppose i have to alter some files.

Thank you

Hi,

You can enable the “Lightbox Gallery” option, but it will always link through ALL images not just the selected ones. That is because the filter function only “hides” items so when you filter the items still exist on the page and the lightbox pull all items existing in the code. Make sense?

Screenshot of setting: https://cl.ly/332i1b1N1g2q

A little advice please. What is the cleanest method to export blog posts with images (embedded and featured) from a live site to a dev site? Still just using wp importer? Would like to import just blog images – not all images if possible. Thanks.

Sorry – not quite settled – see ticket submitted :/

Following up on ticket – please review when you are able – thanks

Hi,

  • There are some plugins out there you can use to export only some post types such as “Export Plus” but I haven’t actually tested them. And it will export all the images.
  • I’ll be going through tickets shortly.

Unfortunately I haven’t been able to get through tickets/comments for nearly 2 weeks now, so if your ticket was assigned to me there is quite a big queue I’m currently knocking out. I appreciate your patience. Hopefully things will be getting back to normal now and I’ll have Total 4.7.1 released asap as well.

- AJ

Hi AJ, i get very irritating bugs with icons

Whether it’s the callout icon on top right of the screen, the business infos widget in footer, or any other icon in pages (using open iconic libraby on portfolio page for instance, next to the heading text to scroll down to content), they sometimes turn into squares, like if the graphic is missing

All icons on a page if affected

I usually restore it by updating plugins, updating the theme, or updating a portfolio, but this time it doesn’t work, and it even shows disgusting chineese characters instead on Internet Explorer !

Where do you think i should investigate this ? website is : https://www.laurentfabry.com/

Hi,

If you want you can Google the error message or something like “access-control-allow-origin custom fonts” if you want to learn more about this issue. It’s definitely a server-related issue (related to your server’s access-control headers). This means it is outside the scope of the theme or WordPress, so it’s nothing that can be manually defined in a theme and usually not a problem when a server is setup correctly from the start.

If you don’t want to contact yourwebhost you can try adding a fix yourself to your .htaccess file, most servers use Apache and so the fix would look something like this:

<FilesMatch "\.(ttf|otf|eot|woff|woff2)$">
  <IfModule mod_headers.c>
    Header set Access-Control-Allow-Origin "*" 
  </IfModule>
</FilesMatch>

This is also mentioned on the documentation article here: https://wpexplorer-themes.com/total/docs/font-icons-not-working/

As long as you don’t have any 3rd party security plugins causing the issue this should work.

Now, you are correct, it is strange that sometimes the icons work (I myself checked your site and it was fine) usually your server headers do not change and are static. I can’t really think of an explanation for that so would be good to contact your hosting company about it if the manual fix doesn’t work for you.

The only other explanation for icons possible working on the site is if the files have been cached by the browser so they aren’t loading from your server, but rather from your computer in which case there wouldn’t be an access issue.

I hope this makes more sense now.

- AJ

ps: If you are not happy with your hosting company it’s never to late to switch to a quality WordPress hosting plan.

Hi AJ, many thanks for this htaccess hack which seems to have solved the problem

Awesome, I’m glad it worked! It sometimes doesn’t work based on server settings, but when it does, it’s much easier ;)

How can I show actual html code for my visitors? I want to show it on this site: https://byggesektor.dk/byggemaerket/ Like you guys do when you sometimes comment on here: https://imgur.com/a/JqRi8vw

Hi AJ, I’ve noticed an annoying little display bug when using the Events Calendar sidebar widget on the mobile version of my latest Total site: something in the widget is breaking the mobile menu. Specifically, the mobile menu button appears correctly in the header, but when I tap it, there’s a brief flicker but no sidebar menu emerges. I’ve tried using every available mobile menu style in the theme, but the problem occurs in every one, regardless of the menu design or appearance behavior. Pages that either don’t have the Events Calendar widget or use the Events List widget (instead of the month view) work fine.

I know EC is widely used with Total, and I’m sure lots of people use this widget, so I’m surprised to see this bug. . . wondering if it’s a conflict that has appeared as a result of a new version of one or the other. Will be posting this on both the theme and plugin support pages and hoping one or the other will a) know what’s going on and b) have a fix.

To see the issue in action, compare these two pages:

https://region1hmcc.org Events List – works https://region1hmcc.org/fema-releases-planning-considerations-complex-coordinated-terrorist-attacks/ Events Calendar – breaks

Interestingly, I see the bug in Chrome/iOS but if I use the emulator in the dev console for Chrome/Windows, the bug doesn’t appear. Probably irrelevant, but I mention it because more information is better than less, right? This page has just gone live, and nobody noticed this issue until after launch, so any insights you have would be very welcome.

Hey. I replied to your earlier comment. Can you please have a look and follow the thread there? I will look at tickets as well.

I have been dealing with health issues for a few months and I there are 60ish tickets for me to catch up on. So I do appreciate your patience. I shared a screenshot in my last comment though showing exactly what script is triggering a javacript error it should really help get this fixed up asap.

- AJ

ps: You can’t really switch themes to test since different themes setup the mobile menu differently and may not even use javascript. Also if the theme’s javascript is running after/before the plugin errors out it can make a difference.

So sorry to hear that your health issues have been persistent. . . hope you get some relief soon! I appreciate your input here and have responded in the other thread with more clarifying info.

This is resolved. . . see other thread. Thanks for the insight, it really helped get a breakthrough with a previously unresponsive The Events Calendar support staff!

Hi AJ:

This is an amazing theme! I am on my 12th purchase..Woot Woot! Love Total!

My first question & I hope this is clear:

I started a page with an Image Carousel on it but I can use another gallery, grid or whatever you suggest to make the following happen:

The purpose of the page with the “gallery/grid” is for customers to choose a design for a custom order. The design they choose will link to the registration/checkout page. This part I have figured out.

What I can not figure out is a way to have the design they choose “follow” all the way to the end of the checkout process. My client MUST know the design choice along with the billing information.

Thanks so much in advance for your help, I am stumped, brain friend and I think I am missing a simple fix.

Michelle

Hi AJ. Hope you’re well!
Quick question regarding the post slider:
please check this page: http://hcapital.pt/investees/teiga-tmi/#hc-investees-top. The current slider is an image slider and i need to change it to a post slider in order to automate the client’s work as much as possible. Since each of the linked posts are CPT’s i was wondering if i can achive the same thing with the post slider. My only doubt is if i will be able to have (and how) the corresponding slide highlighted and showing as the first slide, after the post loads.
I hope i was clear enough with my explanation.
Thanks!

Hi AJ.
Let me know when you can answer this request. The client is about to give the OK to implement this solution.>br>Thanks.

Hello again, AJ. Any help possible, please? Thanks.

If you want to add “current-post” it’s very easy. Here is an example of using the filter/hook:

add_filter( 'vcex_grid_get_post_class', function( $classes ) {
    if ( get_the_ID() == wpex_get_current_post_id() ) {
        $classes[ 'current-item' ] = 'current-item'; 
    }
    return $classes;
} );

Hi, does the theme support PHP 7.2 version? Kind regards Sari

Hi Sari,

Yes it does. I actually use this version for all my local development ;)

Hi! I tried reading previous comments before asking my question but can’t find my issue. My callout_link_txt is not translating. I am using polylang and added my translation as well. My theme version is 4.7. Am I missing something?

I tried to move the code

// Translate Theme mods
$link      = wpex_translate_theme_mod( 'callout_link', $link );
$link_text = wpex_translate_theme_mod( 'callout_link_txt', $link_text ); 
above the
// Button Icon
setup on footer-callout.php, and the translation now works. I added it on my child theme for now, but am I doing it correctly?

Thank you very much!

Hi,

Thank you for the heads up! Yes this is a theme bug and moving the code is the correct fix. I added the fix for the upcoming 4.7.1 update. Thank you for reporting the bug.

- AJ

Yay! Thank you soooo much!

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