Discussion on Total - Responsive Multi-Purpose WordPress Theme

Discussion on Total - Responsive Multi-Purpose WordPress Theme

Cart 58,258 sales
Recently Updated
Well Documented

WPExplorer supports this item

Supported

22385 comments found.

Do you have examples of the Just Events, or The Events Calendar being used?

Hi,

This is Aj the theme author.

I don’ have any examples, I will be releasing some new demos soon which will include Just Events! If you have a specific niche you would be interested in, let me know!

I had some demos using The Events Calendar, the problem is that plugin kept updating and introducing new bugs and it became a real hassle to keep those demos up to date and working correctly. This is actually why I created my own Just Events plugin.

That said, I do have an article for my Just Events plugin explaining how to set everything up with some screenshots: https://totalwptheme.com/docs/just-events/ – the plugin is intended for sites that just need simple events and you can use the theme’s built-in functions like Custom Cards & Dynamic Templates so you can display the entries and single posts how you want.

Now, depending on your needs it may be worth using a 3rd party service instead for hosting the events. For example if you need to sell tickets, using a 3rd party service outside of WordPress is generally better for many reasons.

- AJ

Thanks AJ. I agree, The Events Calendar has caused me several headaches. That is why my clients is looking to move away from them. I am scheduled to rebuild the site on May 18, and I would like to show them what your plugin looks like on a website. I will keep an eye on your demos for examples. Can I import events created with TEC?

Hi,

No, there is no function to import TEC events. But it wouldn’t be hard to code up a little function you can run on your site which I can provide for you if needed.

My plugin is very minimal, so it’s really only intended to display lists of events or to be used with custom builds were you can extend the plugin to add the custom functionality you want. So there isn’t any advanced functionality such as a calendar view (yet, I do plan on adding that in the future) or locations. I created the plugin using SquareSpace as an example. Here are 2 sample SQ templates: https://ocotillo-fluid-demo.squarespace.com/ or https://roseti-fluid-demo.squarespace.com/events

Since you can create dynamic templates and custom cards with Total, you can really make the events look however you want so having specific examples may not be so useful. It would make more sense to figure out what the customer wants and then re-create it.

If you’d like to share a link to the current domain, perhaps I can share some better feedback on how I would recommend proceeding.

- AJ

How can I make the background on the menu transparent? Thank you.

Hi,

This is AJ the theme author.

I’m not quite sure what you are asking, can you share the URL in question for context?

If what you want is a transparent header so that you can have an image behind the header like this demo – https://totalwpthemedemo.com/biz/ – here are the docs for that: https://totalwptheme.com/docs/overlay-header/

Now, in terms of setting an elements background to “transparent” the way it’s done in the theme is using the Global color selector. Here is a video example showing how to set the default page header title background to transparent: https://a.cl.ly/QwuZjy1b (note, the color selector was recently updated so if your’s looks different, your theme is outdated).

- AJ

I have a problem with the comparison selector in the post cards “Meta Query” setting.

I use the WPEX_Meta_Factory to register a date field. Now I want to use the “post cards” element to show only posts where this date is set AND is in the future (looking from today) – for like having a preview section.

To accomplish this, in the cards element I activate “Meta Query (Filter by Custom Fields)” with these settings:

Key: enym_future_date Compare: > Value: today Type: DATE

I expect that this would only query posts where the “enym_future_date” is bigger than today. But the result is empty.

If I switch ”>” to ”<” (< – lesser than), it shows all posts, no matter the date. Although this would effectively mean show posts where enym_future_date is older (lesser) than today. Strange.

I feel like the comparison switch is inverted and buggy :O Or what am I doing wrong? I expect that date fields acts like a timestamp, maybe it is in some other format, but why do we have the date type in the Meta Query then? I am lost.

Thanks in advance :)

Hi,

I tested this and it’s working as expected for me. Here is a video of my test: https://a.cl.ly/6qulGG49

These are the only reasons I can think of for it not working:

  • Your custom field isn’t an actual “date” field type, but rather a text field and you are adding dates using a format that isn’t compatible with WP_Query. I suspect this is most likely the cause because if the date is not properly formatted it will show all posts when using the < comparison due to how WordPress works internally.
  • Your theme is outdated, there was a bug a few versions ago where the dynamic values such as “today” were not being parsed correctly in the Meta Query field.
  • You are testing with a future date that is tomorrow and because of your installation’s timezone, it’s already tomorrow so it’s actually returning the correct results. Try with some dates farther in the future.

- AJ

ps: By the way, if you are wanting posts to stop showing once their day has passed, you will need to either exclude the page from caching or enable the “Render with AJAX” option in the Post Cards element (General Tab). Otherwise your server’s caching or caching plugin (all WordPress sites should be using some form of caching) will conflict.

Thanks AJ, actually you are right. It works: )

Sorry, for the confusion. I just built a plugin that creates an UI for your “WPEX_Meta_Factory” class. It seems there was an error in the date registration. Now I use plain php code for the date custom fields and it works :)

Hi AJ!

No rush on responding to this!

I am finally reaching out as I have a hunch your expertise and knowledge of the theme and CSS classes will help me know if this is even possible.

We have a site that needs to use an Elementor-built Header. They have an Elementor Pro license so they can disable the Total Header Customizer in the Theme Panel.

QUESTION: Do you know of a way to recreate the Total Theme’s “Default Header” and functionality with Transparency option, two different logos and font colors depending on white background or transparent background, shrink on scroll, etc. using the Elementor Header Builder?

I ask because while I know we’d likely need to use an ACF field rather than, say, the “Total Theme Settings > Transparent Header > Enable” feature on a page-by-page basis, even just figuring out how you built the current Total Header to have two different logos depending on transparency, font colors, shrink on scroll, etc. and how you would recreate a Total Default Header (not Header Builder) in Elementor with the features described above – do you think you could achieve the same thing? I’m finding it more difficult than I’d like to admit!

That said, no reply expected AT ALL, but I wanted to just send this just in case as I really have poured some time into it watching videos, etc. but would love to just do it the best way that is easy for the client to manage as well.

Many thanks as always for even reading these notes, AJ, and I hope you are doing well! No rush to reply! Thank you!

Hi,

I hope you had a nice weekend!

If you are using the Elementor Pro header builder, just like the theme’s header builder, you will want to create 2 different headers so you can assign the global one and then a different one for pages using the transparent header. Unfortunately, Elementor doesn’t allow you to set Conditionals based on a custom field so you will need to use custom code and hook into “elementor/theme/get_location_templates/template_id” to modify the header template based on your transparent header custom field.

Now, you could have a single header and show/hide logos using CSS based on if it’s a transparent header, but to me this will just bloat up the header having a bunch of elements that are intended only for certain cases, especially if you are also wanting to swap logos when the header is sticky (most likely needed for the transparent header). But more importantly, you will need to use a bunch of CSS to swap your header colors when it’s transparent.

Which by the way, if you aren’t using the theme’s Transparent header function and you are using your own custom field, you will need to hook into the body_class to insert a classname to your page when the transparent header is enabled so you can target the site with custom CSS.

Currently, the theme’s transparent header functionality doesn’t work with the Elementor Theme Builder and I’ve considered making it work, the problem is it could break people’s sites when updating if they had enabled it in the past but since it did nothing they don’t know it’s enabled. But, you can use the theme’s Header Builder instead with Elementor and the transparent header functionality will work as expected.

Now, if you are using the Elementor Pro theme builder, to make your header sticky you would edit the Header container and under the Advanced tab enable Motion Effects and set the Sticky position to Top: https://a.cl.ly/E0upZRLw

With the Total header builder you can use classes “visible-stuck” and “hidden-stuck” to show/hide elements inside the custom header, but these won’t in Elementor but you can add some CSS yourself for this:

.elementor-sticky:not(.elementor-sticky--active) .visible-stuck { display: none; }
.elementor-sticky.elementor-sticky--active .hidden-stuck { display: none; }

I will look into updating the theme’s visible-stuck and hidden-stuck classes in the next update to work with Elementor.

In terms of making the header shrink when it’s sticky you want to target the same ”.elementor-sticky.elementor-sticky—active” classname as the example above and there are so many ways to make the header “shrink” and it depends entirely on the design. If your header has padding, you can make the padding smaller when sticky, if it has a large logo you can make the logo smaller when sticky or you can do a combination of the two. Where things become a bit tricky is in making the shrink animation “smooth” as the browser may not animate it properly if not done right – for example if you just change the height of the logo, the outer header container won’t animate, just the logo.

The theme’s shrink sticky header animates by applying a default height to the header and changing the height once it’s stuck. You could apply a fixed height to your custom header as well if you want it to work like that, but having a fixed height can be tricky to deal with if you have any overflows.

By the way, since you are adding your own transparent header field for the affect, I’m not sure if the Elementor’s sticky motion effects will work if a header is placed in an absolute position by default.

The best thing may be for you to setup a simple example and then I can look and provide some feedback.

Also, perhaps you can convince the client agains having transparent headers as this is just a design feature that doesn’t necessarily add any real value to the website. It might be more important to the client to stay within budget and not pay you to spend a bunch of time on the transparent header implementation and/or focus on having an easier to manage site.

Another thing to consider, is that perhaps you don’t need a custom header. Maybe you can just tweak the default header a bit to work more how the client wants. I’ve seen many customers create custom headers to achieve things they could have done with one of the default header styles and just a couple lines of code.

- AJ

Hi AJ,

I noticed there is no longer a custom footer option below the editor in pages. Is this intentional? Would be nice to have an option similar to header (custom menu) to allow for a custom footer when needed.

Thanks!

Hi,

There has never been an option for “Custom Footer” in the theme settings metabox, so I’m not sure what you are referring to.

Now, generally a website will have the same footer across the whole site, but if you want a specific page to have a different footer (maybe it’s a custom landing page) the easiest thing to do is to disable the footer and then just add a “footer” using the page builder directly on the page. Having to create a separate footer and then assign it to the page doesn’t make as much sense as just adding the content directly on the page.

Can you explain what you are trying to do, perhaps I can share the best solution?

I ask, because I have seen customers in the past manually changing those Theme Settings on a per-page basis for many pages, this creates a lock-in affect that makes it hard to change in the future across all those pages. The theme has hooks and filters so if you want to change how something works for a specific “section” (like a group of pages, posts, post types, etc) it’s possible via a little code or it may be best to actually add a custom post type and move these pages that should function/look different into their own post type and you can then control them easily – https://totalwptheme.com/docs/adding-custom-post-types/

- AJ

Hi AJ, I hope you’re well! I have a small issue with a website, https://unisonfest.com, this time involving the Z-index of images.

I’m using WPbakery and the top row has a video background. At the bottom of the row on desktop is an image that says “Super Early Bird…” and a separate image of sparkly trees.

I seem to recall being able to set the z-index of the two images so the words were on top of the sparkly trees. However now I can’t find that setting. I’ve tried setting the z-index of the two with custom css but it doesn’t seem to do anything. Can you point me in the right direction for setting the image stack order?

Thanks! Alice

Hi Alice,

TL:DR – Add the classnames “wpex-relative wpex-z-2” to the image you want on top and “wpex-relative wpex-z-1” to the image you want behind.

The Image Element hasn’t ever had a z-index option, you can add a z-index using utility classes in the Extra classname field – https://totalwptheme.com/css-framework/z-index/

For z-index to take effect, the element must be positioned (not static). Typically you use position: relative or absolute, but other positioning values also work. So if you are using the z-index classes on the element or custom CSS you will need to also add the classname “wpex-relative” or if it’s custom CSS position: relative;

Inspecting your site I see you added the “wpex-z-1” classname to the second image. But the z-index doesn’t take effect, you can see this when inspecting using Chrome developer tools: https://a.cl.ly/o0ud7dKQ

So, you need to also add wpex-relative to give it a relative position.

Last, just adding a z-index to the second image won’t work either because the first image doesn’t have a z-index (unless you use a negative z-index but I don’t recommend it). You need to also give a z-index to the first image with the text and make it larger than the z-index on the second image, such as “wpex-relative wpex-z-2”

- AJ

Got it! Thanks so much as always for your awesome support!

cdav77

cdav77 Purchased

Hi AJ,

Bug report: In a couple of places, I’m using the Post Meta element. Under the Style tab, I had chosen Pipe for the Separator. After updating to Total 6.6 today I noticed that the code was showing (&vert;) instead of the pipe (|) on the front end. Same problem if I switched to Backslash or Forward Slash. However, Dot, Dash, and Long Dash seem to be working fine.

Connie

Hi Connie,

I can’t recreate this issue locally or on my live test site and this element hasn’t been modified since Total 6.0. If you are seeing the HTML instead of the actual character most likely there is some plugin filtering out the code (like a minify HTML plugin).

That said, I will update the element to use literal characters in the next version which should work in all instances. If you are just trying to patch up a specific site you can edit the file at plugins/total-theme-core/inc/vcex/templates/vcex_post_meta.php and locate the switch statement on like 78 that looks like this:

switch ( $atts['separator'] ) {
    case 'dash':
        $separator = '–';
    break;
    case 'long_dash':
        $separator = '—';
    break;
    case 'dot':
        $separator = '·';
    break;
    case 'forward_slash':
        $separator = '&sol;';
    break;
    case 'backslash':
        $separator = '&bsol;';
    break;
    case 'pipe':
        $separator = '&vert;';
    break;
    default:
        $separator = '';
    break;
}

And change it to:

switch ( $atts['separator'] ) {
    case 'dash':
        $separator = '–';
    break;
    case 'long_dash':
        $separator = '—';
    break;
    case 'dot':
        $separator = '·';
    break;
    case 'forward_slash':
        $separator = '/';
    break;
    case 'backslash':
        $separator = '\\';
    break;
    case 'pipe':
        $separator = '|';
    break;
    default:
        $separator = '';
    break;
}

You can also just change the pipe value if that’s the only one you are using.

I do hope to release the next update within the next 1-2 days as well – https://totalwptheme.com/docs/upcoming-update-changelog/

- AJ

Hi AJ,

Hmm, weird. I don’t believe I have any minifying on the site. I’ve just gone ahead and changed the separator to a Dot, which is fine.

Thanks!

Connie

Hi AJ

Im guessing theres a simple solution to this, but ive tried again today and still…

Pls see page: https://masterclass.quantumleapgolf.com/

I have the menu in the header on this page. But whne you bring the page up, you will not see the menu in the header until you begin to scroll the page down, and then the menu appears.

I would like the menu to be there all the time pls.

What am i missing?

Thank you, Tony

Hi Tony,

What is happening is that your site has the Transparent Header enabled and set to the White text color so your links are the same color as the background: https://totalwptheme.com/docs/overlay-header/

From what I can see it was enabled globally in the Customizer under Appearance > Customize > Header > Transparent Header. Simply toggle off the first option. This is intended for creating designs like this where you have a background under the header – https://totalwpthemedemo.com/biz/

- AJ

Thank you AJ – fixed!

Glad it was an easy fix ;)

Hey AJ, I struggle to create an overview of parent terms (only first level) of the product_cat taxonomy.

- The Term Card Element does not have an “Only Parent Terms/ 1st. level” query type, nor a “Callback (child theme function)”. It seems it is only appropriate to be used on a single posts template.

- The Term Grid Element does not have a “Card Style” selection at all and feels outdated as we can easily create a grid with the other Card elements.

- The Post Card Element does not properly support Term Cards though I can select “Term Card” in the Query section which I don’t understand.

- It seems that the Terms Carousel Element has an option for “Parent Terms” but it lacks a card style select and feels obsolete like the Term Grid.

Any idea to solve this? Thanks in advance :)

Hi,

It looks like when I added the Term Cards element I used some of the code from the Terms Grid and forgot to update the dependency which causes the Parent Terms Only option to now show up. I will fix this in the upcoming update – https://totalwptheme.com/docs/upcoming-update-changelog/

But if you want, it’s a very simple fix so you can tweak the file yourself and have access to the option immediately.

Edit the file at plugins/total-theme-core/inc/vcex/shortcodes/wpex_term_cards.php

Locate line 524 which looks like this:

'dependency' => [ 'element' => 'query_type', 'value' => [ 'custom', 'post_terms' ] ],

And simply change where it says ‘custom’ to just be ’’. Like this: https://a.cl.ly/KouXdBA7

The element is already coded to work with the setting, you just can’t see it in order to use because of the dependency (in the older Terms Grid the default Query Type is technically called “custom” but in the new Term Cards element the default Query Type is nothing so we need to check using an empty string in the dependency).

Thank you again for reporting the issue!

Let me know if you have any issues tweaking the code or any questions.

And regarding the ‘Term Card’ Query type in the Post Cards element is to allow you to display posts from the term when creating a custom card, see here: https://totalwptheme.com/docs/group-posts-by-taxonomy/ – TL;DR – you can create a card for the Term Cards element and insert the Post Cards element, then select “Term Card’ for the Query type to display posts from the currently shown term.

- AJ

aljota Purchased

hi AJ! just FYI https://totalwptheme.com/docs/dynamic-variables/ is kind of broken… ;)

Thanks for the heads up, I forgot to exclude this page when making some updates over the weekend so it’s actually parsing them into their values.

Fixing right now!

By the way, since the last update, in any theme element field as soon as you type {{ it will show a dropdown to select dynamic variables like this: https://a.cl.ly/L1uAN65v – and it is “smart” enough to filter so if you want the post title for example and you write {{post title it will show “Post Title” as the option in the dropdown so you can click it and it will replace what you wrote with the correct variable name.

Hi AJ! Just wanted to report to you a possible issue in the Total Theme Changelog (https://totalwptheme.com/docs/changelog/). I took a screenshot of it since I can’t upload a PNG here: https://share.zight.com/yAuNZkA4. Thanks as always for the excellent work you constantly bring to the Total Theme and to us as your Customers! Great work on the redesign of the docs. Thanks, AJ!

Hey,

I hope you had a nice weekend.

Sorry for the inconvenience, I was making some updates to the docs and you must have looked at the exact time I was tweaking things.

I cleared the cache again though, just incase!

- AJ

Looks great! If there is any takeaway from my experience as Total Theme Customer, it is that AJ is always making it better(!), from the theme itself, to the docs, to the integrations and even complimentary plugins – thanks for always making it as good as it can be, AJ – keep it up! :-)

Hi. I love the theme nom nom, and I imported the demo. I use Elementor, and when I try to edit the demo, everything is static, and I cannot edit or change anything on the page. I don’t use WP Bakery. Any advice? IF it won’t work, could I be refunded, please?

Hi,

This is Aj the them author. I hope you had a nice weekend, thank you for your patience!

This demo doesn’t actually use any page builder, it’s just the default theme design since it’s a plain blog. What are you trying to change?

If you are trying to change the Homepage, the reason you can’t change anything is because it’s using the preset “Blog” template, see here: https://a.cl.ly/d5uqEm8Z – if you want a custom homepage, you would set the template to “Default”, then it will be a blank page that you can edit. I would recommend when creating a custom homepage to use the theme’s Post Cards element to display your recent posts, more info about this element here: https://totalwptheme.com/docs/total-theme-cards/

Now, for individual posts, it’s never recommended to use page builders like Elementor, WPBakery or other. Since your single posts only require basic text, images, headings it’s always best to use Gutenberg for the actual post content.

But, if you want to create a custom blog post design you can via what is called dynamic templates in the theme – https://totalwptheme.com/docs/dynamic-templates/ – Or if you own Elementor Pro, Total does support the Theme Builder – https://elementor.com/help/the-elementor-theme-builder/ – which will allow you to create a custom design for your blog posts, header, footer, etc. But again, you wouldn’t use Elementor on a single post basis, but you would use it to create the global design for all posts if you want a custom design.

Last, if you wanted to modify the default theme design you would start at Appearance > Customize. This is where you can alter the site widths, default colors, enable/disable elements, etc. I recommend if you haven’t gone here, to start here for tweaking the default theme design if wanted.

Let me know what you are trying to change exactly so I can assist.

- AJ

Hello AJ,

I believe there is a bug in the latest version related to the header background image. Upon updating, the header/background image no longer appears. I have attempted to remove the chosen image, add a new one, adjust the options for background image style, clear the color option (which does show up instead), however the background image for my customized header no longer appears.

I have revered to your previous version of the theme, which then immediately brings back the header background image. Have others mentioned this?

Hi,

I’m not able to recreate the issue myself.

Now, in the last update the theme changed to using a CSS variable for the background image (—wpex-site-header-bg-img) this change was needed to support the new gradient background.

If your image isn’t showing up, then your site is loading old CSS and is missing the new CSS variable. WordPress has built-in cache busting to prevent these sort of issues, however, if you are using 3rd party plugins to minify/combine your CSS or plugins/custom code that removes script version numbers then your site could be loading the old version of the theme’s CSS and so the header background image won’t work.

Be sure to purge any 3rd party CSS optimization and caching plugins.

You could also have cache-busting issues if you are using an incorrectly coded child theme.

If you can share the URL I can inspect the code and tell you exactly where the problem and tell you how to fix it so cache-busting is working properly to prevent issues with future updates.

- AJ

I purchased a Total license last Wednesday. After installing the theme, I entered the license key but it still shows as inactive / not activated. I opened a support ticket right away, but I haven’t received any response yet (since Wednesday).

Hi,

This is Aj the theme author.

Thank you for your patience, I usually respond to all tickets within 48hrs but unfortunately I had an issue yesterday and couldn’t attend to the tickets. I am catching up and replying to all of them today. I’ll get this sorted out right now!

- AJ

I am writing to request assistance with a license activation issue I am encountering with my WordPress theme. I am currently receiving an error message stating that my license is already in use on another website.

I would like to clarify that I only own and operate one website, and this is the only domain where the theme is installed. For your reference, I have attached two screenshots: the first confirms my license purchase from 2017, and the second shows the specific error message appearing within my WordPress dashboard.

Could you please investigate why the license is being flagged as active on another domain and help me resolve this so I can reactivate it on my site?

Thank you for your help with this matter.

Hi,

This is Aj the theme author. Unfortunately you can’t share screenshots here.

Checking my system I see you have 1 license and it’s registered to “www.consept.hr”. Is this the site in question?

You can always log in and manage your licenses here – https://my.totalwptheme.com/license-manager/ – so you can verify where your license is currently registered and make sure it matches your URL. If it doesn’t match the URL you can click the trash icon next to the license so you can then register it anywhere you need to.

- AJ

ps: It looks like the URL I mentioned above has some very strong caching via “wpfc-minified” and it’s loading old CSS so your site may have some display issues. Make sure to fully clear the plugin cache so it can re-build the minified CSS file with the updated theme CSS.

Hi AJ, it’s me again :)

I’m having a problem defining solid borders on rows and columns.

When I define a border, it only appears if I mark it as a ridge; any other style doesn’t work.

Have you had any reports of this type of problem?

Hi,

I’m not having this issue when testing. I recorded a video test: https://a.cl.ly/YEu2dJWX

Can you share a sample page with the issue?

I do want to mention, that because of how WPBakery rows work, if you add a border it may not be perfectly inline with the rest of the site because WPBakery uses negative margins to offset innner column borders. When adding backgrounds, padding, borders, etc to rows that are NOT stretched it’s always best to use an Inner row as that inner row will be contained inside and not be affected by the negative offsets.

- AJ

ps: There is a known WPBakery bug with borders where it get reset each time you save the row, I’ve already reported this and they said the fix will be in the next update. You can always apply a border though using theme classes – https://totalwptheme.com/css-framework/?s=border – if you prefer as well (some customers prefer using classes instead of WPBakery as it doesn’t insert extra inline CSS). For example you can add the classes ‘wpex-border-2 wpex-border-solid’ which will add a 2px solid border, then you can just define the color in the Design Options tab.

Hi AJ,

Just wondering why the new inner column gap spacing options don’t apply on mobile?

Thanks, Paul.

Hi Paul,

The new inner column gaps do apply at all screen sizes (so mobile) but they are added as a gap between the columns horizontally, not vertically. So once the columns stack, it uses the global bottom margin – https://totalwptheme.com/docs/wpbakery-column-margin/

These new spaces are responsive and designed to get really small so that columns can be side by side for longer without the columns getting too “squished”. They are also quite large by default.

The way WPBakery handles spacing when columns are stacked is via a bottom margin on columns. If these new spaces were applied as a bottom margin it would create a lot of extra space on desktop below the columns and it wouldn’t give enough space between columns when they stack.

I was planning on adding a bottom column margin option to rows in this update, so you can better control the spacing when the columns but I stripped it out at the last minute because I wasn’t fully happy with it and wanted a bit more time to think about how to implement it. But in general using the same space between your columns is usually best as it creates consistency. And the older fixed pixel gaps do apply both a horizontal and vertical gap, so for sections that don’t need to have a responsive gap you can use those. Which makes sense, because you wouldn’t want smaller gaps to change when columns are stacked. But it does make sense for large/responsive gaps to be capped and consistent.

- AJ

cmarcc

cmarcc Purchased

Hi,

I’ve seen that Slider Revolution has been removed from CodeCanyon, and the developers are now requiring users to purchase an annual license in order to access the upcoming version 7. They’ve stated that security and bug fixes for the current version will only be provided until March 2028. After that, users will either need to pay for the new subscription model or continue using an outdated version… This also applies to users who already bought a separate license at codecanyon (SR is not available for download any more, and their page is gone, which is not great).

What isn’t clear is how this will work for bundled users. If someone purchased a theme that included Slider Revolution, and previously had access to updates through that bundle, will they now also be required to pay an annual fee to use SR7?

Thank you.

Hi,

This is AJ the theme author.

Since the theme comes with a bundled plugin license I will continue to ship updates out to my customers so you shouldn’t have to worry. I will double confirm with the plugin authors though to ensure they have not modified the bundled license.

That said, most modern sites actually stray away from sliders and it’s not really recommended: https://totalwptheme.com/docs/why-not-use-sliders/

And if you really need some sort of slider, in the upcoming Total 6.6 version I’ve added a new ‘Carousel Container’ element which can be used to make some simple/fast sliders. I will be posting a new doc on how to do this once the update is live (pushing it out today – doin final checks).

Make sure you are subscribed to the newsletter so once Total 6.6 is out you are notified, I will blast out an email with links to the changelog, press release article and new docs: https://totalwptheme.com/newsletter/

In the next update I will be looking at how the “recommended” plugin installations work as I don’t really want to promote Slider Revolution and want to make it clearer to users that it’s optional and how the bundled license works.

- AJ

Hi AJ

Trust all is well. I have a little problem, can you assist pls?

This issue is with WP Bakery. But its only with one website https://quantumleapgolf.com/

The front end editor works fine, but when i go to the back-end page edit, there’s no Wp Bakery at all, its not there. – Im just taking about the page editor. For posts its working just fine.

I’ve been into the WP bakery settings and everything looks right, i’ve not changed anything either – so im at a bit of a loss as for why its not working.

All other sites are fine, its just this one.

Thank you for you help, Tony

Hi Tony,

There isn’t any known issues with the WPBakery page builder not working.

Since you mention it’s working fine for posts and not for pages, it makes me think perhaps there is some sort of plugin conflict where the plugin’s code is running for pages only.

Can you try disabling 3rd party plugins to see if disabling any fixes the issue?

Additionally, if you had ever installed the Advanced Custom Fields plugin on this site, there is a plugin in the plugin that could cause WPBakery to go “missing”. The only fix, is to re-set your user metaboxes, either with custom code or a plugin like this – https://wordpress.org/plugins/reset-meta-box-positions/. So if you had ACF ever active on this site you may need to add the plugin, run it and then remove it.

- AJ

Hey there, I have had a weird message pop-up stating i’m using the theme on multiple sites, where I am not. can you please provide a link so we can resolve this.

Hi,

This is AJ the theme author. This notice will show up if the license is registered to a different domain than the current site. Often this is caused by users activating the license on a staging site and then when they move it to a live site they didn’t re-register it to the new domain. It can also show up if you’ve switched protocols or added/removed “www” from your URL.

You can log in here: https://my.totalwptheme.com/ – click on License Manager in the header to verify where your license is currently registered. If it doesn’t match your live URL you can click the trash icon next to the license then log back into your site and register it properly via Theme Panel > Theme License.

Let me know if you have any questions or issues with that!

- AJ

ps: I tried checking where you license may be registered, but it looks like you’ve never logged iinto my site – my.totalwptheme.com – so it’s impossible for me to check. You need to log in with Envato and accept the API terms so that I can look up your licenses from Envato.

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