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, Is there a way to use javascript to change the style/color of GoogleMaps? Maybe that would be good for a next update. I think it would make your theme bigger.

eg. something like that: http://bit.ly/2p0ouwf

Best regards

Hi,

The built-in Google map module is just a simple embed. Having colored maps is more complex and requires an API key (created by the end user) and a lot more code/bloat and most customers won’t use it so for this it’s best to use a plugin, like the one you’ve mentioned. Did you already download and try the plugin you mentioned? https://snazzymaps.com/plugins/wordpress – or does it have issues?

- AJ

Aj, Is there a way to line up all my links in my header to the bottom of the header and also my logo. I want to put my company name underneath my logo and have my links all be in the same line. This way my logo stands out and is on top of all text (links and company name) in the header. Please let me know.

Thanks!

Hi,

To be honest I’m not 100% sure what you want to do, do you have a quick mockup by any chance or a sample site you are trying to recreate?

- AJ

Hi, I want to add my category name after media in post type grid. But I want to select spesific color for each category.

add_filter( 'vcex_post_type_grid_entry_blocks', function( $blocks, $atts ) {

// Add new section after media
$blocks = wpex_array_insert_after( 'media', $blocks, array(
'myprefix_category_tag' => function() {
return '<span class="category_class">'. get_the_category( get_the_ID() )[0]->name .'</span>';
}
) );

// Return blocks
return $blocks;

}, 10, 2 );

But I think If I want to realise my idea, I must replace “category_class” section to auto detect class. And after I will add custom css to every category name. For example:

$catname = get_the_category( get_the_ID() )[0]->name;

add_filter( 'vcex_post_type_grid_entry_blocks', function( $blocks, $atts ) {

// Add new section after media
$blocks = wpex_array_insert_after( 'media', $blocks, array(
'myprefix_category_tag' => function() {
return '<span class="<?php echo $catname;?>">'. get_the_category( get_the_ID() )[0]->name .'</span>';
}
) );

// Return blocks
return $blocks;

}, 10, 2 ); 

But it doesnt work. Can you say what is wrong, Or Have you any suggestion?

Hi,

Actually if your theme is up to date there are new and better filters you can use also get_the_Category returns an array so you can’t use it as you have. Example code that should work:

add_filter( 'vcex_post_type_grid_media', function( $media ) {
    $categories = get_the_category();
    if ( $categories ) {
        $category_output = '';
        foreach ( $categories as $category ) {
            $category_output .= '<span class="cat-' . $category->term_id . '">' . $category->name  . '</span>';
        }
        $media = $media . '<div class="myprefix-categories">' . $category_output . '</div>';
    }
    return $media;
} );

Result: https://cl.ly/q672

- AJ

Thank you very much. I asked tjis from some developers, but they cant do it. You are awesome

Hello AJ,

I’m making a simple list of Portfolio Items – which are videos – with just item title and excerpt, grouped by month.

The item singles only contain an image linked to the videos in items’ oEmbed field.

So ideally the titles in this list would directly open these videos in iLightbox

I’ve tried with Portfolio Grid with only 1 column, but I can’t list by month grouping, and each title opens in iLightbox the item’s image, not the video in its oEmbed field.

So I’m trying with the “W4 Post List” plugin I use for blog posts, but the titles also logically open the items.

Would it be straightforward to replace in the plugin file, the “href” content with Total’s oEmbed field syntax – also adding “wpex-lightbox” as title class :

    // Template
    public static function template_title($attr, $cont){
        return sprintf( 
            '<a class="post_title w4pl_post_title" href="%1$s" title="%2$s">%3$s</a>', 
            get_permalink(),
            the_title_attribute( array('echo' => false)),
            get_the_title()
        );
    }

Michel

Hi Michel,

I am not familiar with the W4 Post List function so that is something you would have to ask them about also because if you override the plugin you may not be able to update later on without loosing your changes.

But if all you want is a simple list of titles that open lightbox video it would only take like 5-10 minutes to code your own module (aka shortcode) for that. Here is a starter class if you want to make a new VC module for this – https://wpexplorer-themes.com/total/docs/new-vc-module/

Here is an example for the HTML for a video lightbox: https://wpexplorer-themes.com/total/docs/adding-ilightbox-popups-inline/

And to grab the video URL you can do so like this:

$post_id = get_the_ID();
$oembed_video_url = wpex_get_post_video_oembed_url( $post_id );
$embed_url = wpex_get_video_embed_url( $oembed_video_url );

- AJ

Hello AJ,

Thank you indeed for these nice tips, and your documentation is as always really helpful :-)

So I’ll practice with this later.

Michel

my image is size of 980×535px, but when i took it as a image logo, it always display small, how to make it bigger as its original size?

Hi,

It’s hard to know without looking at the site. Please double check your settings at Appearance > Customize > Header and under the “Fixed Header” if you are using the shrink style make sure to tweak the height value for your logo or switch to “standard” sticky style. Also under Customize > header > Logo there is an option for the logo height.

Or you can share the URL and I can tell you how it’s being modified ;)

- AJ

Hi, AJ Thank you very much for your answer, I have found the point, just as you described, it’s the shrink style size limited the image, I have change the option and the logo is all right. Thank you. Have a nice day。

David

Are there known issues regarding this theme when making database modifications for transferring to new hosts? I built a site using Total in a subfolder on a client’s hosting account. Everything was working perfectly, including the DNS pointing, until it became time to replace the instances of siteurl.com/NewSite with newsite.com in the database using a search and replace. Uploading the database preserved all the data in the WordPress install but wiped all the information exclusive to the Total theme completely. Any idea what could be causing this?

Hi,

I’m assuming you are referring to the theme settings? If so, Total uses native WordPress functions and data cells for this. It’s impossible for them to be deleted. These are stored in the database based on the folder name (how WordPress theme_mods work) so if you renamed the theme folder it would explain why you don’t see the same settings. That’s pretty much the only reason why you may not see the settings, unless the database theme_mods table was removed somehow by your query.

Please be sure though in the future to login with the account used to make the purchase or make sure to purchase the theme since support is for verified buyers only. I can to log in for you and see what’s going on if needed.

- AJ

5mm

5mm Purchased

f

Hello,

I am using 2 image carousels on our homepage. Community and Advocacy & Recognition sections. http://www.absolutebikes.net/WP_Staging/

This seems to be an intermittent issue, images are stacking up on devices and randomly when we refresh the page. Any tips or tricks to resolve this? Or would there be a better way to display the same functionality? Much appreciate your input. Thanks Steph

hi AJ, sorry. One last question. Where should this code be placed? Thank you for your expertise. Steph

oh! yes, I didn’t think to add it there. I am good. Thank you once again. Take Care, Steph

Hello AJ, I’ve a blog that is not on WordPress and I’m using WP RSS element in VC to display it on my WP homepage but featured images don’t appear for some reason. What would cause this? Thanks for the help

I don’t believe the WordPress RSS widget displays images by default, but also does your feed actually have images? Can you share the URL to the feed so I can take a look and try myself?

- AJ

Hi, is it possible to use two sidebars (left and right) simultaneously?

I hope you will integrate it in the future :) I’m thinking to use it for our new city portal in the future and we need selectable dual sidebar without extra coding.

I added it to my todo list. However, adding the code in your child theme or adding it in the theme by default is exactly the same in terms of speed/optimization so in the end it really wouldn’t matter if you add it yourself or it’s in core ;)

- AJ

But if it is in core, than you can integrate in categories and pages/post: select a sidebar for that position too ;) thanks cstibi

Hi AJ, having trouble hiding “logo-text” on mobile devices. Adding css rules works fine in desktop browsers, but does not work on the mobile. The logo text is still displayed. Any ideas ? Thanks.

Can you share the URL so I can look?

Any chance the issue is just cache related and you just have to clear your mobile cache?

- AJ

Hello can I use custom post type’s extra fields (like staff member) with Elementor Pro? Or it is just work with your special Visual composer blocks?

Hi,

This is something you’ll need to ask Elementor because I am not familiar with everything they have to offer. But basically all these extra fields are just standard “custom fields” (meta) so if Elementor has options to display post meta then it should work just fine. Total has a shortcode as well – https://wpexplorer-themes.com/total/docs/advanced-custom-fields-shortcode/ (see second part) but I don’t know if Elementor modules all support shortcodes in their fields.

- AJ

Hi, I have tried it with Elementor Pro. At this moment it reads only standard metas, but in the future it will be compatible with ACF. thanks cstibi

Hi AJ,

I’m in a bit of bind here and need you to look at this as soon as you can.

On Wordpress 4.9, Total 4.6 and Woocommerce 3.3.3.

Right now when I go here http://bit.ly/2oRql6Q

I get the following errors under each product listing:

Notice: product_type was called incorrectly . Product properties should not be accessed directly. Backtrace: require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(’/themes/Total/woocommerce.php’), woocommerce_content, wc_get_template_part, load_template, require(’/plugins/woocommerce/templates/content-product.php’), do_action(‘woocommerce_after_shop_loop_item’), WP_Hook->do_action, WP_Hook->apply_filters, woocommerce_template_loop_add_to_cart, wc_get_template, include(’/plugins/woocommerce/templates/loop/add-to-cart.php’), WC_Product_Variable->add_to_cart_text, apply_filters(‘woocommerce_product_add_to_cart_text’), WP_Hook->apply_filters, custom_woocommerce_product_add_to_cart_text, WC_Abstract_Legacy_Product->__get, wc_doing_it_wrong Please see Debugging in WordPress for more information. (This message was added in version 3.0.) in /home/neilmarce110/neilmarcello.com/wp-includes/functions.php on line 4147

I just got off Woocommerce support and had a staging site setup to verify using the Storefront theme and they determined that it might something to do with the theme as I updated Woocommerce 3.3.3 this past week.

Here is the excerpt from WC support:

Me – I had updated to WC 3.3.3 this past week. So I know everything worked prior to this. I will need to check to see when the last update on the theme was made.

WC – Yes, the update to 3.3.x included some changes that would impact your theme

The other error I’m seeing is not an error at all, but rather a setting that has been turned on to debug your site’s payment gateway

You can turn that off here: ScreenShot: http://cld.wthms.co/fdRJtJ

Me – Ok so what are the changes? I could at least provide that to the theme developer (Total Theme) so that he can also check

WC – They should be aware of the changes made to the theme templates

Me – Thanks will do now

WC – As they are included in the WooCommerce templates. That are included in WooCommerce. They just need to make their changes to the new templates in place of the old.

I would appreciate any help with this from you or your team.

Thanks AJ Neil

Hi AJ,

Ticket has been submitted.

I could not upload the error log file as I am not sure what format is accepted, but partially included the first errors logged.

Please let me know if you need anything else.

Thanks Neil

Hi AJ,

Just wanted to let you know that the error hasn’t shown up since my last email to you. I guess it might have been my page cache or something.

Thank you for your help. Neil

Hi,

When I use this feature: https://wpexplorer-themes.com/total/docs/page-header-backgrounds/ (background image on page title), the breadcrumbs is not visible. how can I include the breadcrumbs under the title (for example instead of the subheading, or below subheading) ? - maybe a hook to include into functions.php file ? or to another php file of the theme ? - or at least, using a shortcode in the subheading field ?

Please help me.

HI there,

The breadcrumbs are just hidden via CSS for display purposes (looks better in my opinion) but you can display them by adding this custom CSS to your site: https://wpexplorer-themes.com/total/snippets/readcrumbs-page-header-background/

If you have any issues with that please let me know.

- AJ

Hi AJ,

How are you doing?

I just saw an update for WP Bakery:

There is a new version of WPBakery Page Builder available. View version 5.4.7 details. Automatic update is unavailable for this plugin.

Do I need to pay for this plugin to update it?

Thank you Neil

Hi Neil,

No you don’t have to pay for it. I’ll be updating Total tomorrow or Monday with the updated plugin – when you update your theme you will see a notice in the dashboard to update the plugin. The only big change was support for PHP 7.2 so it’s not a “crucial” update which is why I wanted to wait a few days until I had some other theme updates added that I wanted to make ;)

- AJ

please ignore, i found my own mistake !

Hi! I’ve been happy with your theme so far, and just showed some of your demos to a client. Now, I’m just wondering, I haven’t seen any new desings for a while, are you working on anything new?

Great, I’m glad you like it ;)

Actually we are working on a brand new landing page, image, thumbnail for themeforest and the live page as well as better/new demos.

If you have any suggestions/inspiration please let me know. It would be best though to submit a private ticket and request it be sent to “AJ” though instead of posting links to other sites here.

We want to make hundreds of new demos, we are looking for someone to assist with this as well, since currently only my partner and myself make demos but are usually busy with support, updates and the blog ;)

- AJ

Thanks for your reply, AJ. No, I have no specific suggestions. I only had the feeling that the current stuff is ageing. So, good hear you’re working on it. But HUNDREDS? OMG. I hope you can keep up the quality. Good luck finding a good assistant!

Hi, Can you please let me know how i can add the font ‘Proxima Nova Light’ to Total as a Body font?

It does not show up in the current font list. Thanks

Hi AJ, Kindly revert on my request.

Hello, Can you please revert on my query?

Hi,

I answered all pending questions yesterday in my Envato dashboard I have no idea why your comment didn’t show up until today, so weird :(

Regarding your question…”Proxima Nova Light” is not a Google font so it won’t show up in the list of fonts, this is a custom font that needs to be dowloaded and then uploaded to your site.

Once uploaded to the site you can add it to the list of fonts easily via a child theme like this:

function wpex_add_custom_fonts() {
    return array( 'Proxima Nova Light' );
}

This would be added to your child theme’s functions.php file.

In terms of adding the font to your site there are plugins you can use for that or you can just add the font files to your child theme and then the CSS to your child theme’s style.css file.

- AJ

hey guys,

just a quick one, we’re wanting to have a right hand sidebar on our pages, however we also want a full width image at the top. When we add the full width image it goes over the top of the sidebar instead of the side bar moving down below the image, is there a way to correct this? Only wanting an image not a title etc

thanks!

HI there,

You can use the Slider Field for this and some HTML to insert an image: https://cl.ly/q5uJ

But, if you want to add the same image on all pages or rather do it with code it’s very easy to insert anything anywhere via the theme hooks – http://wpexplorer-themes.com/total/docs/action-hooks/

- AJ

I have a problem with vertical style, with the header style. If i set Fixed, in small screens i can’t see all the menu, and if i set predefined, when i do scroll i lose the menu on the top.

Are there any option to do scroll and stop the vertical menu in the last menu category or in the last widget that i set?

Regards.

Oh yes, it should be 100%.

The code works perfectly, but your site doesn’t have the header set to the “fixed” position currently so you need to update that in the Customizer.

This code was already added also in version 4.6.1 released yesterday.

- AJ

Hi, now it’s ok, but there is a problem, i can’t show subcategories. If you do clic on “Opciones Paintball” i have 3 subcategories into “Opciones Paintball” and i can’t see them.

If you see the same menu in your mobile you can see the subcategories clicking “Opciones Paintball”.

What happend now?

Regards.

Hi,

I hope you had a nice weekend.

Oh you are correct, if you add an overflow so you can scroll you won’t be able to see dropdowns. Good catch! Humm…there really isn’t a good solution that I can think of, the best idea is to disable the fixed header if you have a very long one to prevent issues on smaller devices.

If you want I can help with some custom code so instead of dropdowns your menu can work with Toggles, do you think that would be the ideal solution? Thank you for your feedback!

- 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