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.

I have what I believe is a simple question. I’m recreating my husband’s website in WordPress (and I already have 2 sites myself that are in Total). On a Page, he has a block of text, then an image to the left and text beside it, then a block of text, then an image on the right with text beside it. Can I do that in Total? Just changing the number of columns for the Page won’t work because he’s changing it as it goes down the Page. Thank you.

This works right now that I’ve deleted WordPress and the theme then re-uploaded them. (See question below)

Great, thanks for letting me know!

Great Theme!

Hello AJ,

I hope you manage to have some summer holidays like I’ve just done (in the Spanish Basque region, very nice, friendly people).

For my own quick browsing, I’ve tried to make a private page (paged) with full content of my blog posts (which are short) in one column, using modules Post Types Grid or Blog Grid or Recent News (or even Blog Carousel).

But only the 1st post displayed content (using “-1” in VC module content field) : http://www.pnet.fr/blog-full-contents.png

Maybe you have a better idea …

Maybe also (nirvana) to have the same formatting in the list as the single posts … (I’m dreaming ;-)

Michel

Hi Michel,

I am not having issues testing any of those modules locally when using -1 for the excerpt length. Example: https://cl.ly/2o112R2i1f0C

Are the posts also private? If so, WordPress may not be showing the content because it’s set to private.

- AJ

unable to set the default font, size and color for the body.

i have edited Topography->Body to put in my specified settings .. but it is still default to Georgia, 16px and grey color.

Hi,

Can you share the URL in question so I can take a look. When testing locally it appears to be working correctly – https://cl.ly/2R323G412D2H

You should be seeing the changes live in the backend like the video above. If that isn’t happening it’s possible you have a plugin active on your site that is breaking the Customizer due to a javascript error.

Do you see the changes in the backend but not the live site or do you have issues with both?

- AJ

Is it possible to add slider to woocommerce category page?

Yes, I would like to place the same slider on all WooCommerce categories… also with full-width option.

PS Do you have tutorial how to use your “Total Tweaker Plugin“?

Hi,

If you want to insert the slider on ALL WooCommerce categories the best way is using a theme hook – http://wpexplorer-themes.com/total/docs/action-hooks/

Example code:

add_action( 'wpex_hook_main_before', function() {

    if ( is_tax( 'product_cat' ) ) {
        echo do_shortcode( 'slider_shortcode_here' );
    }

} );

This will add the slier before the main title, you can use a different hook depending where you wanted inserted.

Regarding the “Total Tweaker Plugin” this is for advanced developers, it’s just a basic example on how you can alter theme filters/hooks using a plugin instead of a child theme. There isn’t a tutorial on “how to use it” as a developer it should be pretty clear. If you aren’t an advanced developer I would recommend sticking to a child theme for custom edits rather then a custom plugin as it can be tricker.

Hi AJ, can I please ask your advice about the Woocommerce single page layout? I would like to have a templatera template file display permanently on every single-product.php page at the bottom, under the description and I’m a bit lost on how to it…. I need to put the templatera file ( either the shortcode [templatera id=”13710”] ... or the php <?php echo do_shortcode(‘[templatera id=”13710”]’); ?>) into the single page ‘woocommerce_after_single_product’ hook area…. which should then make the template file appear at the bottom of each product page.

I would prefer this extra snippet to be in my child theme’s functions.php file rather than edit the actual single-product.php page.. Is this possible, can you advise on how I could do this? Many Thanks, Chris.

All sorted. I’m late to the hooks party but I’ve arrived – hooks.. absolute genius. https://wpexplorer-themes.com/total/docs/action-hooks/ love it!

Hooks are definitely awesome! If you need any extra help with this or understanding/using hooks let me know.

- AJ

Hello! I was wondering if there’s a way to center the content and/or both the content and icon for the Icon Box. For now I’m just using padding to align the content to the center, but I’d like for all of them to be consistent. Is there a setting that I’m missing? I have looked through the settings for the Icon Box but didn’t see anything. Thank you!

I forgot to mention this is with the “Left Icon” option selected. I’m hoping to have the icon on the left and then center align both the icon and text. So far I’m able to center align the text, but not the icon. Thanks!! :)

Hi,

So the left icon box takes on the full-width of the are it’s inside. So if you placed it in a row for example and want to align it centered horizontally on that row the only way is to assign it a width so that the browser knows what size it should be and can center it, otherwise it will always take on the full width of the row.

You can do this using the width option under the “Container Design” tab. Example: https://cl.ly/170Y423T0H3U - AJ

Hi AJ I am asking you a general wordpress/woocommerce question rather than a theme question in the hope you can direct me towards an answer. I have set up a new Bulk action on the Products page to Duplicate Products based on the product_duplicate() function. Everything is working fine including various changes I am making to the new product status, etc. My problem is that we need our products linked to the User/Author that created them so they can edit and update them. When I as Admin duplicate the products I become the new Author of the duplicated product. I need the duplicated product to be linked to the Original Author. The Author ID does not feature in the WC_Product info. but It is in the WP_Post info, so I changed post_author back to the Original author ID. This has no effect on what is shown in the table. Feel free to bat this into outer space, but if you are able to quickly point me in a direction to edit the author I would be very, very grateful. I have exhausted all the Google searches I can think of! Hope you are keeping well and were able to grab some ‘quality time with your brother. All the best, David

Hi David,

I spent like 45 minutes trying to figure this out because there isn’t a “good” way of really doing it. There is a hook named “woocommerce_product_duplicate_before_save” that you can hook into to alter the data before the duplicate post is saved but you can only tweak the data that WooCommerce uses to duplicate the post you can’t alter the post author.

There is another filter “woocommerce_new_product_data” which is the one that sets the new post author as the currently logged in user – this is what you want to hook into, however, this filter doesn’t pass along the $product variable so it’s impossible to get the author from the original post to pass onto this array :(

The only thing I can think of is to hook into “woocommerce_new_product” because the duplicate product has the same name as the original with (copy) added at the end. So maybe you can do a search for any posts with the same name as the newly created post and then get the author for that post and update the new post to use the same author. But I can see how this can cause some issues, especially if your process is altering the title on creation as well.

- AJ

Hi AJ Sorry for delay acknowledging, was away camping when you replied. 45 minutes of your time is over and above, you are too kind for your own good. I had been exploring 3x functions – wp_update_post(), wp_insert_post_data() and wp_insert_post. Wordpress.org Codex and forums seem to suggest wp_update_post should work – it does for everrything EXCEPT post_author which reverts to ‘0’ if you try to change it. Forums seemd to indicate insert_post_data should work but insert_post wouldn’t. Something to do with ‘Loop’ or the timing. However, I have had another go and eventually got wp_insert_post() to work just fine, or so it seems. All I’ve done is edited the Post array – sure I tried that days ago but obviously had typos spoiling the code somewhere. Because I want to keep all last years festival events ‘published’ – https://www.themorayway.org.uk/festival/events/ until next year’s festival is launched I wanted to create an exact copy which I have allocated to a new custom status of ‘Last Year’. This copy can be edited or Archived behind the scenes by the Event Providers (authors). When the new festival is ready for ‘launch’ Admin will then bulk Archive the previous festival and Publish the new. Thanks for being there – you’d be surprised how much it helps. All the best, David PS This the Bulk Handler code – if you spot an obvious ’ horror’ do let me know.

add_filter( ‘handle_bulk_actions-edit-product’, ‘my_bulk_action_handler’, 10, 3 );

function my_bulk_action_handler( $redirect_to, $action_name, $product_ids ) { if ( ‘duplicate’ != $action_name ) { return $redirect_to; } foreach ( $product_ids as $product_id ) { // post_author is in WP_POST object, not in WC_PRODUCT returned by wc_get_product() // Extract this before duplicating – product_duplicate assigns duplicated post to current User $original_author_id = get_post($product_id)->post_author; $wc_mwof = new WC_Admin_Duplicate_Product(); /*
  • Use wc function – product_duplicate($product)
  • (Default is to save as ‘(Copy) – Draft’ ) / $original_product = wc_get_product( $product_id ); $duplicated_product = $wc_mwof->product_duplicate( $original_product ); // Remove ‘( Copy )’ from Event name) $duplicated_product_name = $duplicated_product->get_name(); // Pick out the Event name $new_product_name = str_replace( ’ (Copy)’ , ’’ , $duplicated_product_name ); // Strip out the ‘( Copy )’ section $duplicated_product->set_name( $new_product_name ); // Put revised title back // Save $product data then update associated data $duplicated_product->save();
$duplicated_product->set_status( 'last_year' );    //    Change status to 'Last Year'

// Change default author (current User) back to original author $duplicated_post = get_post($duplicated_product->get_id()); // Fetch Post for each Product (Event) $duplicated_post_array = (array) $duplicated_post; // Convert the ‘Object’ to an array $duplicated_post_array[‘post_author’] = intval($original_author_id); // Revert author from ‘Current User’ to ‘Original Author’ wp_insert_post($duplicated_post_array); // Use this array to update the duplicated Post } }

$redirect_to = add_query_arg( 'bulk_events_processed', count( $product_ids ), $redirect_to );
$redirect_to = "https://www.themorayway.org.uk/festival/wp-admin/edit.php?post_status=last_year&post_type=product";
return $redirect_to;
/
  • Display Admin notice top of Events page */ add_action( ‘admin_notices’, ‘mwof_bulk_action_admin_notice’ ); function mwof_bulk_action_admin_notice() { if ( ! empty( $_REQUEST[‘bulk_events_processed’] ) ) { $events_count = intval( $_REQUEST[‘bulk_events_processed’] ); printf( ‘

    ’ . _n( ’%s event duplicated to Last Year.’, ’%s events duplicated to Last Year.’, $events_count, ‘domain’ ) . ‘

    ’, $events_count); } }

Hi! Trying to make sure we can access your support website (for submitting tickets) and I keep getting a Signup Error. We purchased 5 licenses back in June. I have multiple accounts for Envato and the api may be confused between the two logins and won’t let me in.

That is very strange, I actually see your username is correctly registered on the site and it’s showing your purchases. So you should be able to log in. It sounds like there is an issue with the API itself, which is usually a cookie issue. Can you try in a different browser or computer?

- AJ

Thanks! I was able to log in

My client https://canadas100best.com/# has purchased and is using your platform, I want to know if I can customize it. You have 500 styling options… is it possible to make modifications?

You can check out the online docs if you aren’t sure how to use different parts of the theme.

All the main theme customizations are done in the WordPress Customizer under Appearance > Customize. For any advanced tweaks you would use a child theme. For editing pages if your client is using the bundled page builder than you would use that.

- AJ

Hi, I’m using the Overlay Header on my home page and want to have a semi-transparent header background color over the first row content. I’ve tried the Overlay Header Background setting, but nothing happens. The color doesn’t display. How would I fix this? Thanks!

Hi Tiffany,

So the Overlay header background color is applied only to the header area. Here is a video example: https://cl.ly/3632090O1D2d

As you can see when adding the background color to the header it gets added where the header is only. Now, if you need to add a transparency over your entire carousel this could be a bit tricker basically what you need is to have an element on top of your entire row that contains the carousel. Is that what you need? If so can you share the working URL so I can see and provide a recommendation. Thanks!

- A

AJ, yes, that is EXACTLY what I am trying to do…except I would like the menu items to be dark and the overlay background color to be an opacity of white or cream. This feature works when the Overlay Header Style is white and the Overlay Header Background is dark (as in the video), but not the other way around. LMK if you would like screen captures. The site is not live yet. :)

Ohh…thanks for the heads up! There is a bug with the background not being added for any other style but the “white” style of Overlay Header.

Here is a temp fix if you want to update via FTP under wp-content/themes/Total/framework/classes/

I plan on releasing Total 4.7.1 with the fix as well. Thank you for reporting the bug!

- AJ

Hi AJ, long time no see!

All is going fairly well so I’ve not needed any help – that is until the new Yoast update earlier today.

Dunno if you’re aware, but there’s now huge boxes at the bottom of the analysis for SEO scores and readability.

Yep, I know they were there before in the sidebar, but these big boxes make you think that something needs to be done.

SEO scores, no problem. I always keep them in the green.

The Readability scores though don’t play nicely with Visual Composer texts – if there’s a fault, you can highlight it in Yoast, which then highlights the offending text.

On Visual Composer though, the text just remains as text, and doesn’t get highlighted.

Just wondering if there was a workaround for this apart from needing to copy/paste into a new page, rewrite the offending text, then paste it back, which seems like a long way around to me.

Hi,

Because of how Yoast SEO works it can’t highlight text inside a page builder like Visual Composer (WPBakery) or others. But honestly, these readability scores provide little to no actual SEO benefit. You would have a blog with an article that has a Yoast score of 0 that still ranks #1 in Google and an article with a perfect score that ranks on the 4th page of Google. There is much much more to SEO then just “readability”.

I highly recommend when writing content on your site to focus on the user so that your articles are natural and actual for people not for bots. This will provide the most benefit to your users and in turn better SEO.

Spend more time focusing on quality content that people want to actually read, social media and backlinks to your site.

I personally use custom code to disable these functions in Yoast because it slows down the backend and in my opinion doesn’t offer much benefit.

- AJ

That’s what I suspected, but no doubt Yoast will disagree.

I’m also a little fed up of needing to write my posts like a little kid to make them more ‘readable’.

No problem, I’ll disable the Yoast readability scores from my dashboard. (Yes, apparently you can do that now too!)

Hi, I have a custom post type “Presales” with a custom taxonomy of Regions (slug zones). I used CPT UI to define the Presales. In CPT UI under Total settings I have the Main Taxonomy set to Regions, and number of grid items set to 4. I have a filter in my theme to set the layout to a custom layout 1410 with sidebar. I also have a function in my theme to set the sidebar to the Main Sidebar: // Add sidebar to Regions function stew2018_sidebar_display( $sidebar ) { // Return a main sidebar for regions if ( is_tax( ‘zones’ ) ) { return ‘sidebar’; } // Return theme defined sidebar area else { return $sidebar; } } add_filter( ‘wpex_get_sidebar’, ‘stew2018_sidebar_display’ ); which I got from this page: https://wpexplorer-themes.com/total/docs/custom-sidebars-advanced/ As you can see on this page: https://www.2018.mikestewart.ca/zones/vancouver/cambie/ the layout has a sidebar area, but nothing is showing up in the sidebar. Any idea why the Main sidebar isn’t showing up? Thank you.

Hi,

Can you make sure the Custom Sidebar setting in CPT UI is empty (no blank spaces either)? Looks like this.

You don’t need to filter the “wpex_get_sidebar” because by default if your custom post type or taxonomy in CPT UI doesn’t have a custom sidebar it will will revert to the main sidebar. I double checked locally as well to make sure there isn’t any bug.

- AJ

Hi Aj, Yes, the Custom Sidebar setting in CPT UI is empty just like the screen shot you provided. I commented out the function that filters “wpex_get_sidebar” but no sidebar shows up: https://www.2018.mikestewart.ca/zones/vancouver/cambie/. I changed the filter ‘wpex_post_layout_class’ on regions to be ‘right-sidebar’ and the sidebar shows up correctly, but when I change the class back to ‘large-sidebar-width’ I don’t get the sidebar. So, there must be something I am missing with setting up the wider sidebar layout.

I have this function to setup different layouts: add_filter( ‘wpex_get_post_layouts’, function( $layouts ) { $layouts[‘large-sidebar-width’] = __( ‘Large 1410 – With Sidebar’, ‘total’ ); $layouts[‘large-width’] = __( ‘Large 1410 – No Sidebar’, ‘total’ ); $layouts[‘medium-width’] = __( ‘Medium 945 – No Sidebar’, ‘total’ ); $layouts[‘small-width’] = __( ‘Small 750 – No Sidebar’, ‘total’ ); return $layouts; } ); What do I need to add to ‘large-sidebar-width’ so it gets the sidebar added to its layout?

Thank you for your help.

Hi AJ, I haven’t received an answer to this and still need to have the custom layout and show the main sidebar in the aside with id=”sidebar”.

I tried changing the layout to Right Sidebar and then the sidebar shows up, but I need the wider custom layout for these taxonomy pages and can’t get it to show on them. I also put in a ticket about this (titled “Need to add a sidebar to a custom layout”) and haven’t gotten back and answer from it either.

Thank you.

Any chance that you could advise how to stop an image carousel from auto animating?

Hi,

You can disable Auto Play under the General settings tab for the module: https://cl.ly/0r0D1a1Y0e1S

Dear AJ,

Thanks so much for making this great theme. It really looks awesome! To make it exactly up to what I want, I made a map via MapSVG and integrated it in my new website. Now I would like to combine that map with the portfolio items (companies I pointed out on the map). It would be great if you could see the image and the text of a portfolio item when you click on a pin on the map. I think it must be possible, but I don’t know exactly how. Could you help me out? I can share the login details with you via a private message.

All the best, Anne

Hi Anne,

I tried looking through the MapSVG documentation and couldn’t find anything regarding integrating it with a custom post type such as “portfolio” so this is something you’ll need to ask them about. I see you can manually Add links but I don’t see anything on their docs regarding adding items via a post type and displaying it’s data (featured image/content) so you’ll need to ask the plugin developers about that, I would hope it would be possible since it does a appear to be a very robust plugin.

- AJ

Compatibility with Woocommerce cart—bug: product icons briefly disappear & rows collapse w/any quantity change, then subsequently reappear at former height with icons.

It’s really an odd issue.

Please note: I’m using the latest version of Wordpress. With a child theme. Woocommerce version: 3.26—waiting until plugins I depend upon either update or can be swapped out for versions that work with the latest version of Woocommerce….

I have inactivated plugins; no difference.

Have swapped themes—other ones do not do this, so it is related to Total. Have used the Parent theme (which I never changed) and this happens with it, so I believe it is theme-driven.

I’d include a link to show you how it all plays out visually, but the site is not public yet, as it’s still under development. Just know that the whole issue happens over a span of 5 seconds or so. An adjustment to quantity or a deletion of a product while in the Cart screen happens, then the rows collapse and product images disappear, then the “cart updated” message appears…...then the screen re-populates with the row heights and images of products that are still in the cart—looking like they did before the adjustment was made.

It seems to be happening as the Cart goes back to some form of programming to “verify” what the Cart should look like…but it’s bypassing the images to do this. And whatever programming it’s looking towards to recreate the cart’s appearance I’ve got no idea. It takes somewhat of a long time; I timed it as between 5 and 7 seconds on average—and my site is pretty speedy, so this is the slowest thing that happens on the site.

Hi, I have a support ticket open for an issue with the theme. I received your email response, then I follow up 4 times, and I have yet to hear from you. My last email was july 12 (1 month ago). Issue has not been resolved. Please see my email.

Hi,

This is AJ the theme developer, I apologize for the delay. Your ticket was assigned to me and I haven’t been able to do much support over the last month or so. I am logged into your site right now via FTP to get this matter fixed up. You should see an email from me shortly.

- AJ

Why dont you answer? 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,

This is Aj the theme developer. Sorry for the delay, I’ve been having some health issues recently.

To display code on a WordPress site you will need to use a plugin. There are many out there for example this one.

If you don’t need to add many you could also just place your code on gist.github.com and then embed the snippet on the site so you don’t have to install a whole plugin for that.

- AJ

Is it possible to change the “Max Width” for blog posts only? I’d like my pages to remain at the default (90%) Max Width. Let me know if I should renew support for this question. Thanks!

Hi,

Yes this is very easy with a little custom CSS. For example if you want to make your blog content only smaller the code would look like this:

body.single-post #content-wrap.container {
    width: 800px;
}

Note: The max width should remain the same for all items as that’s used for responsiveness what you want to edit is the width itself if you want to slim it down on larger screens.

- AJ

You’re the man! I’ll be making another purchase soon.

Hi AJ, I have been working on my site for the past few months and am finally getting ready to officially launch. I have 3, contact form 7, forms on the site. When I created them a couple months ago and tested them…everything was working fine. However, I just tried to test all of the forms again and I got this message for all three forms: “One or more fields have an error. Please check and try again.” However, I can’t figure out what the error is as I haven’t made any changes to the forms. Here are links to the pages with forms as a reference: http://tmcorchestra.org/HOME/join-tmco http://tmcorchestra.org/HOME/contact-tmco/ http://tmcorchestra.org/HOME/volunteer/ Any idea how I can fix them?

Thank you!

Well, I tried again and the forms seem to be working again. Not sure why, but you can disregard this question.

Hi AJ…I thought my issue had been resolved as I was able successfully submit all of my forms on August 16th. Then today, my client is getting the error message again: “One or more fields have an error. Please check and try again” for all the forms. Any idea what I can do? Do you think this is a configuration error or a sever issue? Thanks!

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