Discussion on Total - Responsive Multi-Purpose WordPress Theme

Discussion on Total - Responsive Multi-Purpose WordPress Theme

Cart 58,254 sales
Recently Updated
Well Documented

WPExplorer supports this item

Supported

22385 comments found.

Hi AJ,

The CSS code you gave me for the social buttons makes the buttons look oval instead of circular. See top right corner on main menu: http://new.fwoutfitters.com/wp-admin/options-general.php. Is there something I can do to change this?

Hi,

Oh yes, sorry since you are using the plain style they don’t have any width. Add this also:

body #top-bar-social a.wpex-social-btn-no-style {
    width: 26px;
    font-size: 14px;
}

- AJ

Hi, I’m using the Total Landscaping Demo and would like to make a background image in some of my columns clickable. Any suggestions how I can do that?

You could use CSS to set the image to 100% but of course it’s going to lose a lot of quality since you are forcing the image to be bigger then it is.

Can you share the URL? This way I can see what you’ve setup and I can give you my best recommendation.

- AJ

Hi AJ, Can you please provide some css to suppress the dot navigation on the testimonial slider when on mobile. I read in the comments it’s done this way on purpose, but would still like to suppress them. Thank you always for your great theme and support, Mick

Sure Mick,

.vcex-testimonials-fullslider .sp-buttons {display: none !important; }

But there is a little bug, the way it’s supposed to work is if you have the arrows enabled, which become hidden on mobile that it shows the dots. But it looks like even when the arrows and the dots are disabled it still shows them, so I added a fix for that in the upcoming update.

Thank you for your patience, I wasn’t feeling too good the last couple days and was in bed :(

- AJ

Thanks AJ, We’re not using the arrows and this was the perfect solution. Feel better soon! Mick

Hi, AJ,

Please remind me: I have one column in a row. How do I center the column horizontally in the row?

Thanks, Robert

Hi Robert,

When you have 1 column it’s 100% wide and there isn’t a need to center it, what you want to do is center whatever module you’ve added inside it.

- AJ

Thank you. I added a text block. What code should I add and where do I need to add it?

Thanks, Robert

Actually, forget that question, AJ. The problem was that I saved a page as a template, created a new page and imported the template content. However, the new page need the sidebar turned off – now the content is centered.

November 1, 2017 – Wordpress did an update. After the update the Total Theme Customizer is no longer working.

1. I can make revisions through the customizer, but it is not saving. 2. I cannot see the live preview as well. (It is not giving a live preview of the changes)

3. I cleared all required cache and browser cache.

What do I do to fix this?

I have trouble shooted all the points on the link provided to me. And it is still not working. And I have no idea what my memory limit to pHP is set at. I am a beginner, and do not know what you are talking about. But if you can walk me through this, I am sure I can assist in getting to the bottom of this.

Thank you for your patience, I got sick the last couple of days :(

You shouldn’t have issues with PHP 5.4 in the Customizer. But WordPress requirements state you should be using version 7.0+ – https://wordpress.org/about/requirements/ – I would encourage that you update if possible.

Memory limit is very easy to update and you can also ask your hosting company about that – http://wpexplorer-themes.com/total/docs/increasing-memory-limit-to-php/

But, in the ticket you opened back in January you mentioned an error relating to a jQuery date script, are you still seeing any of those errors?

Since your support license has expired you can’t submit a new ticket so I replied to your old ticket if you want to send me the logins so I can look for you, if I can log in and have a look we should be able to get this fixed up asap.

- AJ

The reply I just sent to you went to your hotmail account, please check it out so we can resolve this matter privately.

Hi AJ,

Just a little guidance needed here, and I didn’t want to mess things up by changing the wrong font colours.

In the blog posts, there’s an area below the featured image that shows the ‘meta’. I’ve already turned off most of this, but what’s left is the date, the folder from which the post is pulled (news item etc), and the comments.

Most of this is fine, albeit a little dark, but on ‘hover’, the last two items disappear due to them being black, on a black page.

Which settings need to be changed in the customiser to make these latter items become visible?

Thanks!

There isn’t a customizer setting for this, you will need to use CSS.

Example:

/* default color */
body .meta a, body .entry .meta a { color: #fff; }
/* hover color */
body .meta a:hover, body .entry .meta a:hover { color: #fff; }

Wonderful, thanks AJ!

I have an accessibility question about TOTAL. Are site visitors able to change the contrast or appearance of a TOTAL website? Or are the styles rendered in such a way that visitors can not adjust them?

Less importantly, is there any documentation available about TOTAL’s accessibility features?

Thanks in advance, Rob

Great – thanks AJ. And I read the ‘Breaking Down Barriers’ post you guys wrote in August where they talk about the University of Hawaii project and other helpful tips on accessibility. So much to learn… Alright, again much appreciated. Have a good one!

Awesome! Just let me know if you have any issues with accessibility or suggestions. Of course accessibility is always of great importance ;)

- AJ

Oh, and thanks for following the blog ;) Always open to suggestions for future articles there as well !

I have a ‘problem’ with the post types slider. When I open the page where this post types slider is built in, the first image is very big on page loading (the first second), see: http://bit.ly/2eV2eP2 How can I remove this big image when loading the page?

Yeah I noticed the preloaderimg div, but it seems like the css doesn’t work.. Can’t I just remove the preloaderimg div at all? So it doesn’t show on page loading?

I just had a look at your site and the CSS is working correctly, maybe clear your browser cache?

If you want to remove it completely then use this:

.wpex-slider-preloaderimg { display: none !important; }

- AJ

You are right. Thank you!

Hi, Can you plz let me know how i can make the size of images in Woocommerce Single Product Page smaller? Maybe changing the single product page layout to have a smaller column for the image and larger for product details (eg: 1/3+2/3)

http://prntscr.com/h4p9sd

I have tried changing the image size and uploading, but it simply blows up the image instead of making it smaller.

Same for the main Woocommerce shop page. I need to make the images smaller, have a border around each image and make them all similar in height. http://prntscr.com/h4p8nl

Hi,

Changing the image size only alters the image size, but because of how WooCommerce is designed the image and description are inside two “columns” and the image stretches to fit it’s column. The only way to alter the image size is to alter the column widths.

Here is an example snippet: https://wpexplorer-themes.com/total/snippets/woo-product-widths/

So you can copy the code then just change the percentage to fit your needs.

For the product entries you will first want to set the correct cropping under Theme Panel > Image Sizes. But again the images by default do stretch to fit the column because of the hover affect (you can disable that in Customizer > WooCommerce though). So the best way to make them smaller is do display less columns. So if you currently have 3 columns maybe change the columns to 4 – https://wpexplorer-themes.com/total/docs/change-woocommerce-columns/

Adding a border is very easy with some CSS such as this example:

.woocommerce ul.products li.product-category a img { border: 3px solid #000; }

Custom CSS isn’t included in support but I do help from time to time. If you don’t know CSS and plan on making a lot more changes that aren’t in the Customizer the Yellow Pencil plugin is amazing and there is a free version and premium version – https://wordpress.org/plugins/yellow-pencil-visual-theme-customizer/

- AJ

Thanks AJ! I will definitely check out Yellow Pencil. Appreciate your recommendation.

PS: The woocommerce border CSS code shared by you did not seem to work. Do i need to modify this in any way before i add it to custom CSS?

Oh sorry, I used product-category instead of product for the class. The code would be this:

.woocommerce ul.products li.product a img { border: 3px solid #000; }

- AJ

Hi, Can you plz advise how i can make the menu (header style 2) a little transparent so the background can show through?

I have tried the header overlay, but that makes the menu show up at the right of the menu instead of below and also removes the aside content.

Also, can you plz advise how to change the background color of the sidebar form input field to White?

http://prntscr.com/h4p63u

I have tried the settings under Customizing>General Theme Options>Forms but the input field color does not change.

Hi,

  • Do you have a mockup of what you want exactly? Header style 2 would look very weird on the overlay header so by default it isn’t supported (although very possible with some code in a child theme by hooking into the header style filter).

By default the menu does have a white background but you can use some CSS to give it a see-through RBA color instead. Example:

body .navbar-style-two { background: rgba(255,255,255,0.3); }

- http://wpexplorer-themes.com/total/docs/making-css-edits/
- https://www.w3schools.com/css/css3_colors.asp

  • The form options should work, but if they aren’t you’ll need to share the URL so I can inspect the form and see why not.

- AJ

I’m trying to insert icon fonts I’ve inserted in the css fonts of the child theme fonts including svg I insert the class into the space but I see only a square without a picture where I’m wrong?

Hi,

You’ll need to share the page with the issue so I can have a look at the code and see what’s missing. Thanks!

- AJ

Hi AJ – I hope you are doing well? Happy post-halloween.

I have a quick question for you – I logged onto a site that runs Total today and I keep getting these notices at the top of the WP dashboard.

Notice: wpdb::prepare was called incorrectly. The query does not contain the correct number of placeholders (1) for the number of arguments passed (3). Please see Debugging in WordPress for more information. (This message was added in version 4.8.3.) in /home/content/p3pnexwpnas09_data02/55/3219855/html/wp-includes/functions.php on line 4139

Is this something you know about or is this something I should bring to the host (godaddy)?

Thanks!

I contacted the host and it’s an issue with 4.8.3 that was apparently happening on other sites as well. We rolled back to 4.8.2 and the error disappeared. Hopefully, there will be a patch in the next few days to fix this. :-/ Thanks!

Hum, I don’t believe your host is correct in having you roll back. Because there is a big security concern here. See the notice from the 4.8.3 changelog – https://cl.ly/nUVO – more likely there is a plugin on your site incorrectly using $wpdb->prepare and now instead of your site being vulnerable to an attack WordPress gives the error message and prevents the code from running.

It doesn’t seem like a bug with WordPress but rather an issue with a plugin making an insecure query. Did you ever try de-activating plugins to see which may be causing it?

I’m sorry to say, but your hosting company is basically putting your site at risk. Especially now that this is a known/possible vulnerability.

I would highly recommend updating WordPress and figuring out which plugin is causing the error.

- AJ

Thank you for this information. I believe the issue was with WPML (I could be wrong). Working with godaddy to get the site updated to 4.8.3 – in the meantime I’ve got security scans and such active. Thanks AJ!

Hello,

With your custom Visual Composer element “Woo Products Carousel (Custom)”, is it possible to move the Title and Price section above the product image?

If so, how?

Thanks for your advice!

Hi there,

The only way to move them is to manually edit the file via a child theme. The file is located at total/vcex_templates/vcex_woocommerce_carousel.php – so you would have to add this file to your child theme inside a vcex_templates folder and then copy/paste the code to put it where needed.

- AJ

Perfect – thank you AJ!

hello AJ it’s me again i want to know how long for the new update ?

I don’t have an exact time but most likely tomorrow. It’s Halloween in the US so I didn’t want to release it today also I am working on a new system for built-in updates which I am finishing up right now. If you open a private ticket and request it be assigned to me I can email you a beta to test today ;)

- AJ

Hi AJ I have run into a prob this afternoon. I am trying to add a footer sidebar area with some menu widgets (that worked fine). But I only want it on one page (which is a ‘single’ page with its own file). Anyway i have got into a knot. I can’t not get your code on your page Custom Sidebar Areas & Advanced Management’ to work, but additionally the Appearance=>Widgets page is messed up in that I created 2x ‘Custom Widget Areas’ . The ID text for my Custom box appears about 1/2 inch below ‘ID’. If I click the Delete button the ‘Confirm’ button appears about 3/4 inch below, on top of the other Custom widget block. The consequence of this is I cannot confirm the delete as clicking on that area simply expands or contracts the block beneath. I know – I should send a screen dump but don’t know how. Can you work your magic and help sort out my broken widgets page and also help me get the Footer sidebar to work on a single page. Yours hopefully, David

I just replied to your last ticket, but I also just tested again with your exact names – https://cl.ly/nQHP – and I don’t see any issue, what browser are you using? Do you have issues in other browsers?

- AJ

The Blog automaticly crop my featured images to 680×380. It would be better if it resize my image. How can I fix this?

Check under Theme Panel > Image Sizes > Blog to make sure you don’t have any cropping values. Here you can remove them or change them to better fit your needs.

- AJ

That’s why Total is my no#1 WordPress Theme. You’re Awesome!

Hi AJ I have run into a prob this afternoon. I am trying to add a footer sidebar area with some menu widgets (that worked fine). But I only want it on one page (which is a ‘single’ page with its own file). Anyway i have got into a knot. I can’t not get your code on your page Custom Sidebar Areas & Advanced Management’ to work, but additionally the Appearance=>Widgets page is messed up in that I created 2x ‘Custom Widget Areas’ . The ID text for my Custom box appears about 1/2 inch below ‘ID’. If I click the Delete button the ‘Confirm’ button appears about 3/4 inch below, on top of the other Custom widget block. The consequence of this is I cannot confirm the delete as clicking on that area simply expands or contracts the block beneath. I know – I should send a screen dump but don’t know how. Can you work your magic and help sort out my broken widgets page and also help me get the Footer sidebar to work on a single page. Yours hopefully, David

Hi David,

No worries I’m always happy to help. Just in the future can you leave a new comment for new questions? It just keeps things a lot more organized and easier to follow when we reply back and forth – thanks!

Regarding the header:

To be honest because you already have a background in the main header I wouldn’t really add a second background to the title. And if you did, maybe you would want to do it globally instead using the background options in the customizer under Appearance > Customize > General theme options > Page header title > Background image -

This way it’s applied to the entire website and it doesn’t use the custom page title styling so you have more control over the title fonts and the background positioning (you will have to edit the page though to remove the page header title with background style to see the changes in the customizer though since it’s applied only to the default styles).

Regarding your CSS though…it’s not really possible to have a background image expand/shrink based on the browser size without causing issues. You can use CSS to set the background to a width of 100% but then on mobile devices you’ll see something like this: https://cl.ly/nsgC – because it’s a long skinny image so if you want it to shrink with the browser it will be incredibly small vertically as the width matches the container width.

That’s why this page header style by default uses the cover image size which works by showing the image in a way that always covers the whole area – https://cl.ly/nsaB

Hopefully this helps at least a little, let me know how I can further assist!

- AJ

Hi AJ Apologies for not making new comment, realised what I had done after I pressed reply – tired. Seems I have won the numpty award, completely missed the obvious Customiser option! Did a search of the documantation, came across the snippet, then started to try and tweek it . . . On the plus side I have achieved what I was trying to do. Meanwhile the design lady had a go behind the scenes whilst I was away. She is now raving about how great your theme is to use. She works with others in the Arts field and was showing off your Customiser options to her associated who were equally impressed. Still a way to go but getting there – would be quicker if I had a younger memory. https://www.themorayway.org.uk/festival/about-moray/ By the way I try out ‘coding’ tweeks on localhost. Is there a way I can activate the licence on localhost as well. It would make updating easier eg WPBakery. Regards from your Scotland (Moray) fanclub David

Hi David,

Thank you for your patience over the holiday weekend.

That’s awesome, I’m glad the client liked the theme so far ;)

You can only have the theme active on 1 site but it’s used for updates only so you can always setup the Envato Market plugin on your localhost if you want updates there as well – http://www.wpexplorer.com/envato-market-plugin-guide/

Or you can hack the theme locally if you know how xD

- AJ

Hello,

I am using the “Nouveau” demo for the site I am developing. See site here: http://new.fwoutfitters.com/

Question: Is there a way to create more space between the centered logo in the main menu? The logo looks too close to the menu options.

I would appreciate your feedback.

Thanks! Happy Halloween! :) Also, how did you make the social media buttons appear in the red color? I went to Customizing > Top Bar > Social to change the social button color to #933547 but it remains a gray color.

I did that with a little inline CSS ;)

Like this:

body #top-bar-social a.wpex-social-btn-no-style {
    background: #000;
    color: #fff;
    border-radius: 50%;
}

Just make sure the style is set to none in the Customizer: https://cl.ly/nPwl

And change the black hex ( #000 ) to that red color you are using (your site is in maintenance mode now so I can’t see it anymore and I forgot the hex).

- AJ

In the screenshot I also made the Top Bar top and bottom padding smaller (I think 10px). And removed all the borders from the menu:

.navbar-style-three { border: 0 !important; }

- AJ

Hi, there are all kinds of zip files added to my media library from templetara, themeforest and slider. Can I just delete those from the library, or do they need to stay there?

Hi,

Yes you can delete these, these are just from when you installed the theme and if you uploaded sample data.

- AJ

Edit Page > Page Settings > Title > Title Style > Background Image -> chosen image url and dark overlay, how is it you apply this option to bbpress?

bbPress “pages” aren’t standard pages they are mostly auto archives so applying a title with background image won’t be possible via a built-in setting but very easy to do using theme filters.

Where exactly do you want to add it? Also if you want to add a background image with title to your entire site it’s also very easy with a little code instead of doing it manually for each page.

I have some useful snippets here for the page header with background showing how to use the theme filters:

But if you tell me exactly what you want to do I can also assist with the code.

- AJ

ps: I noticed your support license has expired, if at this time you can renew your support license I would really appreciate it. You can also purchase a new copy of the theme for another site/client and it will also renew your support. A support renewal is around $41 so if instead you purchase a new license of the theme you essentially will get a new license for only $17 to use on another site and a support renewal. If financially you can’t at this time I understand but would really appreciate it since I spend a lot of time and money supporting and updating the product – thank you!

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