Discussion on Total - Responsive Multi-Purpose WordPress Theme

Discussion on Total - Responsive Multi-Purpose WordPress Theme

Cart 58,053 sales
Recently Updated
Well Documented

WPExplorer supports this item

Supported

22359 comments found.

Hi AJ, is it possible to add text right of the logo between logo and menu? Customer asked for putting this sliding “Hardware – Software- Services” fixed right of the logo in three lines. See Surface-World

Hi,

Yes it’s possible, you’ll want to use a theme hook to insert the text: https://wpexplorer-themes.com/total/docs/action-hooks/

Example code to add to your child theme’s functions.php file:

add_action( 'wpex_hook_site_logo_inner', function() { ?>
    <div class="next-to-logo-txt">Hardware – Software – Services</div>
<?php }, 40 );

This will dump the text right after the logo image then you just add any CSS needed to style things nicely.

But honestly I the best thing would be to actually add this text as part of the logo image itself as opposed to static text.

- AJ

Hi, How do i remove certain elements of the sidebar on the blog pages? Thanks

Hi,

You would go to Appearance > Widgets and here you can modify any of the widgets added to the “Blog Sidebar” or if that one is empty then you would modify the “Main Sidebar” which is the fallback sidebar area.

- AJ

Hi AJ,

Hope all is well you you man, had a quick question for you if you have a minute.

Is there a way to put a woocommerce shortcode in a total button, like this:

Obviously this way won’t work, so I was wondering if it is in fact possible?

Asking because I like my custom button style (icon + text)

If not, I’m guessing just make a text block for the shortcode and add a custom class name for it, but is it possible to add an icon to the left of the text in the button this way?

Like… before: or something? how would that work?

No worries if not.

Thanks!

Basically you need to wait for a WooCommerce official update or manually edit the plugin to make the changes proposed in the commit – https://github.com/woocommerce/woocommerce/pull/23362/commits/b48031a74cbf698698f0a39b5a4149e0cf7d02ce

- AJ

Regarding the page animations…because they have an in and out animation it needs to run whenever a local link is clicked. So there is a list of links that get excluded in the script. I’ll be sure to include the paypal link to the list of items to exclude. I can send the updated file if you want.

I’m actually looking at making a new “preloader” screen to either replace the page animations or be it’s own addition. A preloading screen only loads when loading the page not when clicking out. thoughts?

- AJ

AJ, thanks man!

WC updated today and fixed the template issue. All good there.

Page animations yeah it’s up to you if you want to update it, I was only using them because my header would do a subtle kind of movement when the items loaded. I just used the page animation to hide that, plus the fades looks nice which is a bonus.

I guess the disadvantage is the visitor might have to wait a bit longer, especially with pages that might have a YouTube embed or something. (But I think there’s a lazy load for audio/video player embeds right?)

No need to upload the update until you do an official theme update. But definitely I’ve been anticipating your new prelaoder! Let us see it! Do it! We’re ready!

Thanks AJ

Hello AJ,

I’ve just noticed than in 4.8.4 my Image Sliders no more display thumbs VERTICALLY in iLightbox as set in the module, example here (in middle) : https://culture-officer.fr/12481

(without module in child theme, and no worrying for the arrows, that I’m customizing)

Image grids seem OK, like in this unfinished post : https://culture-officer.fr/5150

Michel

Hello AJ,

Don’t hesitate if I can help you improve or test this already wonderful Total theme, I’ll be so glad to give back a little of the great support you give me :grin:

I’m getting very close to my “ideal” site configuration, and currently have 2 minor “issues” :

1: I’m using a dynamic template for a CPT single (glossary entries), it works fine but I didn’t succeed to position social share line (from child functions.php) below the post content – it stays at the page top left.

So instead I’m trying adding a HTML module at template bottom, but I don’t know what “dynamic” post URL to put there – assuming it’s feasible that way.

2: For Post Terms module, I haven’t found how to set a standard title hover attribute for the links – saying something like “Select posts with this tag”.

Michel

Hi Michel,

1. If you are using the Dynamic template you should instead of enabling social share on this post type use the Social Share module in the builder for your dynamic post – https://cl.ly/66039e (this will always be horizontal)

2. This is going to be complex, it would require modifying the actual module output. Honestly I wouldn’t recommend this for accessibility or SEO (but also most people don’t hover long enough to view title tags). If you think there will be some confusion I would recommend adding a heading above the Terms module that says something like “Post Tagged Under:” or something like that.

- AJ

Thank you very much AJ, the Post Terms module works fine :-)

And for your recommendation for item 2, which I’ll apply.

Michel

Hi AJ, Is there an easy way to add data-no-lazy=”1” to logo images? Currently if you have the wp rocket lazy loading plugin, showing and hiding the sticky menu by scrolling down and back up again destroys the original header and the image does not load again once it is remade.

I found this if anybody is looking for it, is definitely easier this way https://docs.wp-rocket.me/article/15-disabling-lazy-load-on-specific-images

Hi,

I hope you had a nice weekend. Thanks for sharing the link, very helpful!

- AJ

Hi Aj,

Hope you are well.

1. When using staff carousel, I want to see only a few specific staff people that I choose. I guess I will need to use advanced query, right? If yes, could u please provide me with the instructions and code on how to do this?

2. Staff grid has an option to show categories, however, staff carousel doesn’t have this option. I really need this option for staff carousel. How to enable this? If it can’t be enabled that simple, can you create a custom code for me and if yes, how much would i cost?

3. I would like to use and see staff categories under staff names (on desktop computers), however, I would like this hidden on mobile devices. How to achieve this?

4. I need new post type “organizations”. Basically, it will have all the same properties and option as staff. This means that on the WP panel on the left I will see Organization and that I can also use WP Bakery page builder and add “Organization grid” from there. Please instruct on how to achieve this. P.S. Just to mention that I already use “portfolio grid” for some other things.

Please assist.

Thank you in advance.

Best regards, Brando

Kind reminder

Hi Brando,

Thank you for your patience over the holiday weekend, I hope you had a good one!

1. The easiest way is to simply create a new category for the members, then you can select that category in the Staff Carousel module under Query > Include Categories.

Now if for some reason you didn’t want to make a category for this (a category will be easier to manage) you could use an Advanced Query and define the items you want via the post__in parameter, example: https://cl.ly/2ecc8c – the value should be a comma seperated string of the post ID’s – https://wpexplorer-themes.com/total/docs/locate-page-id/

2. It would make sense to add the Categories option to the Carousel in the next Theme update (good idea) to keep consistency. This requires edits to 2 theme files. I can send you the files to update via FTP so you don’t have to wait for the official theme update if you want let me know.

3. You can hide them with a little custom CSS. Example:

@media only screen and (max-width: 959px) {
       body .staff-entry-categories { display: none; }
}

4. You can use my “Post Types Unlimited” plugin to create any number of new post types, please see here: https://wpexplorer-themes.com/total/docs/adding-custom-post-types/

- AJ

Hi, I am trying to login to my website (using total theme) and when i click the login button from the hamburger menu, it doesn’t respond, nothing happens. Usually a window would pop up to let the user login. Please help me. thanks

It’s just a standard menu created in wordpress in the menu area.

Correct, it’s a standard menu item. But you are using a plugin that adds javascript to create the popup function which doesn’t appear to be targeting the mobile menu version of the Login link correctly that is generated dynamically using javascript. If you copy my reply and share with the plugin developer (the developers of the member ship plugin you are using that is adding the login popup script) they should be able to assist you.

- AJ

Make sense now?

Hi AJ,

Still enjoying your theme!

I was wondering if there is an option where I can scroll through the items with lightbox in a post type grid element. See this page for example: http://sjartec.100test.nl/tegels/?filter=xl

I want to click on the item, what opens a lightbox of the featured image of that post. and then I want to scroll through all the items in this custom post type grid in lightbox.

Great ;) I should hopefully have the update ready sooner then later but feel free to message me if you want the files whenever.

Now. I am planning on switching the default lightbox inside the theme to a slimmer script – http://fancyapps.com/fancybox/3/ – not sure if it will be this update or the next. But just a heads up ;) So the lightbox should be even nicer and faster in the future ;)

- AJ

Hi AJ,

Ooh that library looks slick! I like the effect when you click on the image and it ‘grows’ into an lightbox. Can’t wait for this one!

Thanks for the feedback ;) I have shown it to a few customers and received positive feedback, so I will definitely be making the switch very soon ;)

Hi. I currently use Slider Revolution for a top animation on my site but would like to remove the slider and use a gif animation as the header. My question is, how would I accommodate different device sizes? For example pc, tablet, and phone. Will i need to create three different animations? And how would the website/theme know when to use which one?

Hi.

A gif should resize according to the device (get smaller depending on the sceen size). There is no need to upload multiple. However, if you did want to upload multiple it’s very easy to define which image to display at the different browser sizes. You can use the Total Image module to insert your gifs and then use the visibility setting to define when to display each one – https://cl.ly/01f860

- AJ

Hey AJ – if you are around I have a doozie – sent you an email – let me know if you are available to take a peek :)

No worries AJ – I appreciate what you do which is why Total is my GoTo theme for developing.

Replied to your ticket. Gonna grab some lunch, I’ll be back ;)

Got it and replied! Happy eating!

Is there a way to add a Facebook LIKE button to blog posts? Checked the docs (and Google) and didn’t find an answer. Thanks.

Hi,

Well you can enable the default theme’s social sharing function which has different social buttons but not the embeded “Facebook Like” button which I believe you are asking for.

You’ll want to use a plugin for this or if you are using a child theme it would be very easy to add. I made a snippet for you: https://wpexplorer-themes.com/total/snippets/facebook-like-button-posts/

Simply put in your child theme’s functions.php file then go to Appearance > Customize > Blog > Single and locate the new “Block” so you can enable and move it around – https://cl.ly/b6b55b

- AJ

ps: If you do like the theme please consider renewing your support license, it helps out a lot – https://wpexplorer-themes.com/total/docs/renew-support-license/ – thanks!

Thanks. I’ll look into that. I have also renewed my support license multiples times throughout the years already.

Great, if you have any issues let me know ;)

And yes, I see you have already renewed several times, I appreciate your continued support!

- AJ

Hi A.J. I purchased another license for the Total Drag and Drop theme because I love it so much and wanted to use exactly the same format for another website. However, when I downloaded the theme and uploaded the zipped child theme, I am not getting anything that looks like the theme I originally purchased! I keep getting a link to Total Plus by Hashthemes. I want your theme with the WP Bakery Page Builder and the related plugins (Mega add-ons, etc.). I downloaded the link from my original purchase. What am I doing wrong?

Hi there,

Sounds like your site may have already had the free “Total” theme installed, Hashthemes released a theme for free with the same name to trick people into buying their stuff. Unfortunately there is nothing I can do about it. So log into WordPress and locate and delete that theme, if it’s active right now enable the default Twenty 19 theme or other default WP theme. Then you should be able to install this Total theme correctly.

If you still have issues let me know!

- AJ

Hey there! Thanks for your quick response. I did what you said several times before reaching out to you. I downloaded a fresh TOTAL install from the original link where I purchased/added a second license to the theme. Could it be that your files were exchanged by Envato? I can’t seem to get the right download.

Hi,

It’s literally impossible that the files were “exchanged” (and hundreds of customers would be complaining by now if that was the case) what is possible is that at some point you download the “free” Total theme and they have the same name so your browser is caching the Total.zip file name and giving you the same file each time.

I would recommend you use a different browser you don’t normally use, log into ThemeForest and go to your downloads to download it. And or clear your browser cache.

Of course you can always submit a private ticket so we can help install the theme for you if needed – https://wpexplorer-themes.com/support/

- AJ

Hello AJ,

In Blog Grid module, I haven’t succeeded to use dates in an advanced query such as :

&cat=235,-498&post_date >=’2018-12-31’&posts_per_page=-1&orderby=menu_order&order=asc

The number of posts returned remains the same whatever the date typed, only categories are matched – I’ve of course carefully checked the corresponding publish dates.

Maybe this syntax is wrong, or it’s due to the fact that in this module, I’ve set the excerpt length to “-1” to show the entire posts contents

(which apparently creates the problem that I mentioned earlier : with the code you sent to me, categories are displayed for only a few posts)

Michel

Hello AJ,

Thank you so much for your kind help, it works perfectly :grin:

I haven’t found on the net how to make URL queries, although this page helps but only with PHP and JSON format : https://crocoblock.com/wp-query-generator

For a date range like 2018/12/15 to 2019/01/15, maybe I can use this :

date_query[][after]=December%2015%2C%202018[before]=January%2015%2C%202019

Michel

Hi Michel,

Yes that query should work correctly, let me know otherwise.

Cool looking tool (would be better if it worked for you though). I would love to built something similar but to generate string queries but not sure if I could find the time, right now I’m working on updating 15 free themes developing 8 new plugins and of course Total updates and support ;) Actually hoping to finally get a new Total demo out this weekend and also the 4.8.5 update.

I’ll see how much a freelancer would charge me to make that tool so I can link to it directly from the Total module or even make a popup in Total to build the query.

- AJ

Thank you, AJ.

You’re extremely courageous to tackle so many projects, I wish you success in all of them – and in future ones too of course ;-)

Michel

I have a menu with all but one links going off to normal pages and 1 link that is an anchor link on the home page. Issue is its highlighting the pricing menu item when i am on the home page and i only want it highlighting when its at that section on link being clicked. I don’t really want multiple menus and i can’t just use # with no site url prefix as it won’t work on other page. Any ideas? thanks LT

Hi there,

Is your local scroll link in the main theme menu area and using the “local-scroll” classname as shown in the docs? https://wpexplorer-themes.com/total/docs/creating-local-scroll-menu/

By default WordPress has a current-menu-item class which is given to all menu items when they link to the current page but Total has a function that removes this classname if the local-scroll class has been added and the link is in the primary theme menu – https://cl.ly/9661d8

If you are using a menu plugin or the link is added elsewhere then the current class would have to be removed some other way. In which case you’ll want to share the URL so I can take a look.

- AJ

Hi no I was just using anchor links on the page. I didn’t find this local scroll in the docs as I think I was searching for anchors. I have used this now and works perfectly thanks

Hi there,

This question might not be directly linked to Total theme, but may be rather concerning Wordpress in general, so it’s open to everyone redaing here :

As a photographer, i need my images to be tack sharp, although i have never been too opsessed about it, i see more and more really sharp images on other sites…

Thumbnails on my www.laurentfabry.com photography feel pretty soft, i feel

Does anyone know how to deal with that without adding too much dedicated plugins ?

Thanks

Well, done them all… but they are still soft !

From now on i will check the photography websites i visit but i’m ready to bet that the thumbnails look sharper when the site actually uses large or full sized images instead of thumbnails (it’s kind of weird, but browser “resizing” makes them look more crisp !)

This will come with a penalty in terms of page loading time and SEO, so i don’t think i’ll do that anyway

Hi,

Did you first make sure to add the code so that the jpeg quality is 100% in WordPress?

Looking at this image:

I do see some quality lost. Tried using your image on my own site and running it through the resizer and my quality seems much better, here is a video: https://cl.ly/9daed2

The quality is definitely lower on your server (using the same image to start) it’s pretty visible (not sure if you can see it well in the video but I can see it locally). Do you maybe have any plugins active that could be compressing your images?

- AJ

Yep it’s hard to see from the video so I uploaded the cropped version from my localhost so you can compare:

The one on your site is definitely a bit less crisp. Both generated from the same original image and theme so something outside the scope of the theme is causing this.

- AJ

Hi, is it possible to include a page in a column in some better way than an Iframe? Like it is possible to add a page through the page-id in the header? /Erika

Thank you for your respons but I think I was bad at explaining what I ment ;-).

I have a sidebar with a menu which includes trail number signs and icons (see fjallupplevelser.com/led/220/). To be able to design that and still be easy to change, I made it as at page. And since it is a menu, it’s gonna be on a lot of pages and more trails will be added now and then. I have now added the page as an iframe but that is not optimal since it has to have a fixed height.

Since it’s possible to add a page in the header through the page-id under Customizer/Header Aside Content, I wondered if it is possible to do that with a shortcode on a page. Like add a shortcode-block and write [add page-id-597]. Or in some other way …

/Erika

I found out how to do it! I now read Total Docs more carefully :-)

I made the menu as a template and added the template in a widget. It doesn’t matter if i change a template or a page.

I knew that it should be possible to do it in a simple way. I love this theme!

Oh awesome! I’m glad you figured it out, if there is anything I can do to make the documentation easier let me know!

- AJ

ps: I am glad you like the theme if you have a moment to go to your ThemeForest “downloads” and give the theme a rating I would really appreciate it, thanks!

Hi, icon font are not working on mobile (android) and Google Chrome. Can you help please? I didn’t make any change on the code. Our site is https://projetochutebol.com.br

Hi,

Actually the fonts aren’t working anywhere, if you see the icons on your computer it’s probably because you have the icon set installed on your computer. When looking at the site you can see the access control errors: https://cl.ly/77ba5d

Basically your server or a security plugin on the site is preventing the icon set from loading on the site. You can try a quick .htaccess fix and see if that works as mentioned here: https://wpexplorer-themes.com/total/docs/font-icons-not-working/

- AJ

Thanks so much for the quick reply! I will try to fix it. :)

Of course! Let me know if you need anything else.

How can I have a sidebar to be displayed on custom taxonomy archive pages?

Hi.

Thank you for the video, very helpful!

So basically your page that displays the directory items isn’t “related” to the actual categories which is why it only appears on the main page. Now, if you are using a child theme – https://wpexplorer-themes.com/total/docs/child-theme/ – it’s very easy to do what you want with a little code. Example: https://wpexplorer-themes.com/total/snippets/alter-sidebar/

So in your case the example would be modified to target the directory archives. I can provide the code but I need to know the name of the taxonomy and your sidebar ID. Example:

add_filter( 'wpex_get_sidebar', function( $sidebar ) {
    if ( is_tax( 'taxonomy_name_here' ) ) {
        $sidebar = 'categories';
    }
    // Return sidebar
    return $sidebar;
} );

Make sense?

Now, I do see you named your sidebar “Categories” I would recommend giving it a more specific name such as “Directory Categories” just to prevent any confusion. You can just make a new sidebar drag the widgets into the new one and delete the old one if you do choose to do this.

- AJ

Hi! I’m glad the video was helpful.

I’m not following what you are saying. If you open the categories widget you will see that it says directory categories. I did make a new sidebar but didn’t drag the widgets because they are the same ones.

You can find the categories that I’m referring to in the left sidebar under Hometown Network Directory. Those are the categories that I want in the sidebar, just like what I’ve done on that directory homepage I showed you in the video.

Thank you for your continuing assistance in helping me solve this issue.

I”m also getting this error code on the top of the dashboard page: https://www.screencast.com/t/Ak2C6hT0Yi

Hi,

  • Regarding the sidebar. So you set a custom sidebar for your main Directory “Page” which is why the custom sidebar is showing up correctly there. But there is no actual relationship between this “page” and the actual directory categories that’s why the custom sidebar only gets applied to the page and not to the categories.

In order to define your custom sidebar for the categories you need to use some code via a child theme – https://wpexplorer-themes.com/total/docs/child-theme/

Just like the snippet I provided previously:

add_filter( 'wpex_get_sidebar', function( $sidebar ) {
    if ( is_tax( 'taxonomy_name_here' ) ) {
        $sidebar = 'categories';
    }
    // Return sidebar
    return $sidebar;
} );

So you would copy and paste this in your child theme’s functions.php file and then change where it says “taxonomy_name_here” to the taxonomy name being used for the directory categories. If you aren’t sure what this name is you can locate it in the dashboard, whenever you edit a taxonomy the name displays in the URL. For example if you were to go to to the Total portfolio post type category dashboard under Portfolio > Portfolio Categories you will notice that the URL is the following:

site.com/total/wp-admin/edit-tags.php?taxonomy=portfolio_category&post_type=portfolio

So the taxonomy name would be what follows “taxonomy=” in this case it’s “portfolio_category”. So when logged into WordPress go to the dashboard where you add/edit Directory categories and look at the URL to locate the name for the taxonomy used for Directory categories.

  • None of those errors in the dashboard are coming from the theme, you should try disabling plugins 1 by 1 to see where they may be coming from.

- AJ

Hi AJ!

I have a question about the grid builder in combination with a post grid for team members.

I have made a custom grid to display all team members. In the grid I have added a button that links to the single post. For 2 of the team members I would like to remove the button. Can this be done in some way?

Cheers, Rafael

Ok. Took me about an hour to figure this out but it’s definitely possible just a bit complex (to figure out but pretty easy to implement).

Step 1: Add the following code to your child theme’s functions.php file:

add_filter( 'vc_gitem_template_attribute_post_id', function(  $value, $data  ) {
    extract( array_merge( array(
        'post' => null,
        'data' => '',
    ), $data ) );
    return $post->ID;
}, 10, 2 );

This adds a new template attribute that can be accessed in the grid templates which are using underscores js to render.

Step 2: Create a vc_templates folder in your child theme.

Step 3: Add this file to your new child theme’s vc_templates folder : https://cl.ly/03e839 – which is a modified version of the default grid item template which includes the following code:

// TOTAL MOD START - ADD POST ID CLASS
$css_class .= ' post-{{ post_id }}';
// TOTAL MOD END

The result now is you should see a post-{ID} classname on each grid entry like such: https://cl.ly/c76550 – and this will allow you to target them individually via CSS.

If you have any questions let me know!

- AJ

Perfect! Thank you very much, this is exactly what I need! :-)

No problem ;) Thank you for your continued purchases and always being such a great customer!

Just let me know if you need anything else,

- AJ

ps: I am sure you have probably already rated the theme before, but if you can take a second next time you log into ThemeForest and rate the theme again I would really appreciate it!

Every time I click on my ‘Events Calendar’ and the page opens up, this error sits at the top: “No matching events listed under events. Please try viewing the full calendar for a complete list of events.”

I have not searched for anything yet, and the error is already displayed. How can one disable this?

I don’t believe it’s a theme issue (you can try switching to a different theme to test) but if it does happen to be theme related let me know so I can look into it and fix any issue.

- AJ

Your theme is perfect, no problems there. It is the Wordpress plugin which I installed afterwards, which has nothing to do with your theme. Thanks!

I’m glad you like the theme ;) If you do have a moment to go to your ThemeForest “downloads” and give the theme a rating I would really appreciate it. And if you do need anything let me know, here to help!

- 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