Discussion on Uncode - Creative & WooCommerce WordPress Theme

Discussion on Uncode - Creative & WooCommerce WordPress Theme

By
Cart 135,102 sales
Recently Updated
Well Documented

undsgn supports this item

Supported

This author's response time can be up to 2 business days.

8628 comments found.

hi, I have a very bad problem with the database. My postmeta table is filled with these: https://imgur.com/eJtGAQo Over a million rows by uncode, can I delete them? My site has only a few thousand posts with default headers

Hi supermex! “Only a few thousand posts with default headers”? This means you are using all these options a few thousand times, so they need to be saved somewhere in the database. In a scenario like yours it would have been better to create some Content Block matrices with layout variations (if necessary) and use these.

I mean all my posts use the default header that’s inherited from the theme options. So they all have the same header. The post header in the theme options is set to show the featured image as background and the post title on it.

Hi supermex! Yes okay now it makes sense. This is done because if a user wants to go back through this system there is a possibility. Until now this works fine for all users, but if this creates problem for your scenario, you can proceed. The system seems logical and functional. So if you are sure you are not using Page Options you can also delete these values. A backup before doing this is strongly recommended: https://support.undsgn.com/hc/articles/360001216518

On page load, the media gallery carousel has a problem calculating the with of the browser-window. The following image in the carousel is shown on load. When resizing the window a little bit, the width is set right. See here: https://mlg-ag.ch/generalunternehmung/projekt/aareboge/

What do we have to set, to get the set the full with? We just have this issue since a couple of weeks. Thanks for your help.

Hi cloudtecbern! If you need support is offered in our Help Center, there we have a completely dedicated support team, please submit a ticket so we can check your installation and support the solution privately (or at least use an account that bought the product)! Thank you!  https://support.undsgn.com/hc

Anyway, from here we don’t have this problem: https://undsgn.d.pr/v/VTRuXK

I can’t find or uncode licence in our account. It’s a 5 year old installation, does the licence not support it anymore?

See my video how the site is loaded: https://e.pcloud.link/publink/show?code=XZrVGhZUO0FD74X9IplvznPCn5eBpg6M0OX

Not sure, what the problem is.

Hi cloudtecbern! The license doesn’t expire. If you need support please use an account with the Purchased badge, your account never bought Uncode.

Hi

I override the uncodde/partials/menu.php parent theme to the child theme. It can’t work. While checking some comments author teams tell use the entire class unmenu() in function.php. My question is how to make html edits in that file.

Hi tfltech! Yes, exactly. Confirmed! Nothing changes from what you would have done the other way. Instead of editing the “uncode/partials/menu.php” file, you need to copy the contents of the “unmenu()” function into function.php. You just have to must rewrite it without the if “(!class_exists(‘unmenu’)) {”: https://undsgn.d.pr/i/4cpr0V

Hi, there is something going wrong with Loco translate and the Uncode theme… I cannot translate “search…”. Check: https://nelissenbv.nl and click the magnifying glass in the upper right corner. It used to work, but when I moved the site from the developer domain to the right one, this translation stopped working. I already reinstalled Loco, but this string is still not translating; other strings work well. Is there something you can do?

Hi stefanvgijsel! No sorry but we have no other similar reports. I can only think that maybe there are some paths that have not been updated since the development installation. You might try hearing from the developer, surely he can give you more information why this happens and how to fix it. Otherwise open a ticket at our Help Center so the developers can log in and check all the details.

Can you please tell me how to edit this text? its the cover on the blog. https://numerovibe.com/wp/wp-content/uploads/2023/03/problem.png

Hi isabelb42! From a single screenshot is not so easy to understand, anyway, it should be the Excerpt of the article: https://support.undsgn.com/hc/en-us/articles/213456049
Anyway, if you need support is offered in our Help Center, there we have a completely dedicated support team, please submit a ticket so we can check your installation and support the solution privately! Thank you!  https://support.undsgn.com/hc

Not sure why I’m being prompted to renew support because my license key won’t seem to work. Surely this is a customer service issue. I’d like an email to report the issue to or for developer to advise why my license isn’t working

Hi jay_musa01! Support renewal and licensing are in no way related, and we would like to understand where you saw this. Can you at least show us a screenshot?
Either way if there is a licensing issue you should have a specific message. What is the exact error?
Anyway, please send a private message using the form you find on this page, and include your Purchase Code so we can check the problem: https://themeforest.net/user/undsgn

Hi supermex! Sure you can do it by following the article you linked, or look for a plugin similar to this one (we have never used it so I don’t know if, and how it works): https://wordpress.org/plugins/preload-featured-images/

From what I remember the problem was not that but the scripts.

would this code snippet from the linked site work to automatically preload encode header images? /* * Preload attachment image, defaults to post thumbnail */ function preload_post_thumbnail() { global $post; /* Prevent preloading for specific content types or post types / if ( ! is_singular() ) { return; } /* Adjust image size based on post type or other factor. / $image_size = ‘full’; } add_action( ‘wp_head’, ‘preload_post_thumbnail’ );

if ( is_singular( 'product' ) ) {
    $image_size = 'woocommerce_single';
} else if ( is_singular( 'post' ) ) {
    $image_size = 'large';
}
$image_size = apply_filters( 'preload_post_thumbnail_image_size', $image_size, $post );
/* Get post thumbnail if an attachment ID isn't specified. /
$thumbnail_id = apply_filters( 'preload_post_thumbnail_id', get_post_thumbnail_id( $post->ID ), $post );
/* Get the image /
$image = wp_get_attachment_image_src( $thumbnail_id, $image_size );
$src = '';
$additional_attr_array = array();
$additional_attr = '';
if ( $image ) {
    list( $src, $width, $height ) = $image;
/*
 * The following code which generates the srcset is plucked straight
 * out of wp_get_attachment_image() for consistency as it's important
 * that the output matches otherwise the preloading could become ineffective.
 /
$image_meta = wp_get_attachment_metadata( $thumbnail_id );
if ( is_array( $image_meta ) ) {
    $size_array = array( absint( $width ), absint( $height ) );
    $srcset     = wp_calculate_image_srcset( $size_array, $src, $image_meta, $thumbnail_id );
    $sizes      = wp_calculate_image_sizes( $size_array, $src, $image_meta, $thumbnail_id );
}
if ( $srcset && ( $sizes || ! empty( $attr['sizes'] ) ) ) {
    $additional_attr_array['imagesrcset'] = $srcset;
}
if ( empty( $attr['sizes'] ) ) {
    $additional_attr_array['imagesizes'] = $sizes;
}
foreach ( $additional_attr_array as $name => $value ) {
    $additional_attr .= "$name=" . '"' . $value . '" ';
}
} else {
    /* Early exit if no image is found. /
    return;
}
/* Output the link HTML tag */
printf( '<link rel="preload" as="image" href="%s" %s/>', esc_url( $src ), $additional_attr );

This is an example, as reasoning the code is correct but it must be declined correctly for the theme and scenario in use.

pls answer my email

Hi dominikhintringer! We replies all email we receive, but please note that we are European based, so our offices are open during these hours.

Hi support

I´m updating and redesigning my website and have run into a few issues that I cannot resolve myself.

1 – on mobile, the navbar doesn´t switch between dark/light skin according to the predefined settings. It stays light skin.

It works fine on tablet and desktop.

I have defined the Mobile Switchable Logos, but is there another Theme Options setting I have overlooked ?

2 – the footer which is a Two Column Row shows fine on desktop and tablet, but on mobile the structure breaks and the columns are placed on top of each other.

How can I avoid this ?

3 – how do I get the Post Module Element to pull in posts dynamically ?
I’m trying to use it with the Archives-Posts-Content setting.
The Inherit setting works dynamically, so on the actual site when I choose ABC category one category of posts are shown and when I choose XYZ another category is shown.
This is what I want the Post Module to do as well
Where do I define this ?

https://wordinals.xyz/ https://wordinals.xyz/series/bindu/
Thanks a lot,

Hi yogananda! Please try this option: https://undsgn.d.pr/i/5GNYTD
Anyway if your Menu is Light Skin when you open it it will be Light Skin, in case you have to set Dark Skin as the main Skin of your menu if you want it always dark as I see from your preview: https://undsgn.d.pr/i/sjakxr

Hi,

I was looking and looking and had given up on being able to do it with the Theme Options and started dabbling in code solutions…
The button does exactly what I wanted and solved everything !

Thanks for your quick response and assistance !
Best wishes,

Hi yogananda, and thank you for the confirmation! :)

Hello, i created a custom template for the empty cart page. I also use wpml so the site is at 2 different languages. The problem is that when cart is empty it always redirects to the default language empty cart page. So the question is….can i use a custom template for the empty cart page and have it redirect to the correct language?

Hi cotonas! If you need support is offered in our Help Center, there we have a completely dedicated support team, please submit a ticket so we can check your installation and support the solution privately! Thank you!  https://support.undsgn.com/hc

Greetings. When I am creating a gallery for posts (such as portfolio items), when I am building the query, trying to type the category of posts to filter does not work. It says start typing to select the category, but I type and nothing happens, just the animated circular cursor in the field keeps spinning for a while, but I am neither able to enter the category name manually nor am I given a pre-populated list to choose from. Thanks!

Hi visiontime! Yes, it seems normal that this happens, if you use Portfolio you need to use Taxonomies (since in WordPress this is the terms to indicate the Post Types categories): https://undsgn.d.pr/i/OUlBnc

Grazie mille! Ottimo!

Thank you for the confirmation! :D

Hi, I have an issue with custom fields on posts (but could be anywhere). I’m trying to insert the custom field data into a text url link. So that the text link opens a website defined in a custom field.

I cannot find a way to do this with the Custom Fields Module and have tried with adding the shortcode to the url text like this:

<a href="[uncode_custom_fields custom_fields_single_post=" detail-urllink="" field_elements="value">view</a>

How can I solve this ?

Thanks,

Hi yogananda! Not sure what you are trying to do since your shortcode seems broken or incomplete. Anyway, the Custom Field module is not designed to support HTML. In case you need to modify the file to accept HTML. You can try to insert in your Child Theme this modified version of “uncode/vc_templates/uncode_custom_fields.php”: https://pastebin.com/raw/BzPB3QXn
Use simply this as Custom Field value: https://undsgn.d.pr/i/ZiHlES

Hi,
Thanks, you figured out my problem despite the code breaking.The solution works smoothly !
Just had to figure out the folder hierarchy and place it the right place.
“uncode-child/vc_templates/uncode_custom_fields.php”
You should consider implementing it as default – or at least on on/off option in the Theme Options.
Thanks for your help and enjoy your day !

Hi yogananda, and thank you for the confirmation!

I’m testing the Privacy Preferences Manager. When I select or deselect the privacy options ex. YouTube, the preferences manager does not update the settings to switch between allowing video content to not allowing content based on the selection. I understand that I can use Breeze to exclude a page from cache with the url, but the privacy manager does not appear to have it’s own page. The screenshots show that I saved the preference to not allow YouTube. When I go to the page with the content it is still available and my preferences automatically revert to allowing the content. Any suggestions?

Where should be the YouTube video? At the bottom of the “shop-discover” page? Please deactivate also all extra plugins time we check it.

Yes. At the bottom of the shop discover page. All other plugins except Uncode have been deactivated.

Hi Kismii! Unfortunately, from here we cannot understand and help more, if you have an odd issue no other users have, this is probably related to some server settings, but developers need to access your website to verify everything. Please open a ticket and insert all your logins (both WordPress both FTP): https://support.undsgn.com/hc

I would like to show the top-bar only for specific IP addresses. How do I do this?

Hi stefanvgijsel! There is not a native feature in Uncode to do this (it seems something really custom). You can start from this and write you own condition based on your needs (IP Address):

add_filter('option_uncode', 'uncode_child_menu_bloginfo_show');
function uncode_child_menu_bloginfo_show( $val ){
    if ( /* put here your condition */ ) {
        $val['_uncode_menu_bloginfo_show'] = '';
    }
    return $val;
}

Hi guys – quick question: How would one stylize the link text within a ‘message box’? I looked online but can’t find anything. Thanks in advance.

Hi mbhwhitney, and sorry for the delay! You can use this:

.messagebox_text a {
    color: red !important;
}
.messagebox_text a:hover {
    color: green !important;
}

You guys are awesome. Thanks a ton!

Hi mbhwhitney, and thank you for the confirmation! :)

Hey Uncode. Please check this screenshot: https://cloud.metalpotato.com/mG76t1h1

How do I make the menu icon appear on the right of the word, instead of the left?

Hi MetalPotatoUK! Please test this:
#menu-item-111399 a {
    display: flex;
    flex-direction: row-reverse;
}

#menu-item-111399 a .fa-arrow-right {
    margin-left: 9px;
}

Thank you

Thank you for the confirmation! :)

Hello- I need to deregister the purchase code. I have a new domain that I want to use the license for. I tried to contact you through the message board. However, i never received a response. Can you deregister the license code for me? I already sent the purchase code and other information.

Hello! Sorry, when did you contact us? We may have missed the mail or it may have been put in a different box, so we need to check, thank you.

After a quick check, I see that we already replied yesterday. If you can’t find the e-mail, however, we can answer you here publicly if you prefer.

Hey Uncode! Could you please tell me if the theme used on my website is UNCODE? If yes what template is it? Was built by someone as a demo and I want to buy the theme to start using the website.

Thank you! :grin:

(www.numerovibe.com)

Hi isabelb42! Yes confirmed, it’s Uncode! It’s a custom build using part of different templates (since it’s based on a Page Builder you can mix and match layouts), plus some customisations.

Thank you! Will buy it now, will come back to you for support :D

Hi isabelb42! Yes! Please remember that support is offered for native features of the theme, so it’s better you ask the developer who created the website for all the custom coding.

Hi, How can I add a back to previous page button on a Portfolio page ?

It’s good, I fount it.

Hi kogura, and thank you for the confirmation!

Once I have done a new install of the Uncode theme, is there a way to simply choose one of the theme variations you have in your preview and use that as a template to design my own site? I have completed the “Import Demo” option, however I don’t see an interface or area that allows me to simply select the variation of theme I’d like to use as a starting point.

Thanks

Hi FMJ9! No as explained in the documentation the Uncode demo is based on one installation where we just show possible configurations, and that when you import Theme Options or import the demo a basic configuration is imported. Anyway, the options are really few, because we our demos only change: the Menu Layout type, Menu animations options, Frame around the site or not, and Accent color.
If you need some directions for options that you don’t find please share the page you want to replicate and the link of your current site so we can understand what is missing.

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