8634 comments found.
The reading time function is incorrect. It doesn’t strip out the HTML tags properly before trying to count the words in the post, causing a drastic overestimation in HTML formatted posts.
I added a `strip_tags($post_content)` in `uncode_estimated_reading_time()` in helpers.php to fix this. Would be great if this could be updated on your end.
Full function:
if ( ! function_exists( ‘uncode_estimated_reading_time’ ) ) { function uncode_estimated_reading_time($post_id) { $post_id = apply_filters( ‘wpml_object_id’, $post_id, ‘post’ ); $post_content = get_post_field(‘post_content’, $post_id); }
$post_content = strip_tags($post_content);
$string = str_replace( ''', '\'', $post_content );
$t = array( ' ', "\t", '=', '+', '-', '*', '/', '\\', ',', '.', ';', ':', '[', ']', '{', '}', '(', ')', '<', '>', '&', '%', '$', '@', '#', '^', '!', '?', '~' );
$post_content = str_replace( $t, ' ', $post_content );
$post_content = trim( preg_replace( '/\s+/', ' ', $post_content ) );
$words = 0;
if ( uncode_strlen( $post_content ) > 0 ) {
$word_array = explode( ' ', $post_content );
$words = count( $word_array );
}
$minutes = floor( $words / 120 );
$seconds = floor( $words % 120 / ( 120 / 60 ) );
if ( 1 <= $minutes ) {
$estimated_time = $minutes . ' ' . esc_html__('Minutes','uncode');
} else {
$estimated_time = '1 ' . esc_html__('Minute','uncode');
}
return $estimated_time;
}
Hi tromac17! This is created for blog posts so unless you have some HTML-created content, which is not at all common, there should be no overestimation (there are certainly not a few formatting tags to create overestimation). Anyway, I pass the point to the developers if it doesn’t involve damage to anything else it will be included in the next big update. Thank you for the report and to share a possible improvement solution!
Thanks for your prompt reply. Yes, I’m referring to blogs. I’m yet to see a blog post that doesn’t use rich text, so HTML, in the background for headings, links and images!
I had a 700 word article that was being reported as a 16 minute read. Your code to determine word count was saying it was a ~2k word article in the background (it divides by 120, assuming a reading rate of 120 words per minute). The above strip_tags() function is a much better way to determine the displayed words rather than reading the full code.
I noticed that the same accuracy issue is shown on each of your demo blog articles with reading time enabled also – they all overestimate the word count.
Hi tromac17! Developers confirmed few hours ago that we can include this improvement in the next big update, I haven’t had time to warn you yet, my bad. Thank you again for note!
Hello! why doesn’t the Header Classic Consultants video appear in the media library.
Hi mairawebd! Really not sure to understand the question… This clip is the one used for the video placeholder of video contents. This is a test from a random client installation with demo contents imported: https://undsgn.d.pr/n3qnk1
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 ask for support with an account that bought the theme)! Thank you! https://support.undsgn.com/hc
Is is possible to show ALL the PRODUCTS categories? So the user can click in one category and goes to the particular page with all those products related with the selected category.
Hi abriv! Yes sure, if I understand you it’s just the normal setup, no? For example this is the man category: https://undsgn.com/uncode/product-category/man/
Really not sure what is the question, this is a default of WooCommerce, then in case you can customise with different methods, the best is the Content Block method: https://support.undsgn.com/hc/articles/213459549
Hello,
I am trying to import single layout for the Blog Split demo theme, however I am not able to load it for some reason. In addition the import demo option worked already and I have access to all the demo themes. I would like to pick one demo theme and just adapt to my needs and preferences. Any ideas how can I select a demo theme and start customising it?
Hi panEnvatoMarket! You need to use the Selective Demo import but from here I cannot tell why it’s not working for you, please note that if you have imported all the layouts and you trashed it, you find it in the trash. If you empty the trash you can import again otherwise if the importer find this in the trash doesn’t import again (but this is only a supposition without checking your installation).
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
Hello,
thank you for the quick follow through. I used the Selective Demo Import and now things are working fine again.
I am trying to setup permalinks for my personal website https://mysite.com and when I try to use the custom menu when I have added already with labels like About Me, Portfolio etc. I constantly get the “page attributes” in between like so - https://mysite.com/homepages/portfolio/ instead of https://mysite.com/portfolio where I get to lose all the nice looking features from the page attributes. So the question is: How can I customise the permalinks to get rid of the “page attributes” in between but still keep it’s attributes when I shorten it to https://mysite.com/portfolio?
Kind Regards and appreciate you taking the time to look into the matter.
Hi panEnvatoMarket! This is not a functionality of Uncode and even not of WordPress default, probably you can use some plugins like Yoast SEO that gives you the possibility to apply some permalinks rules. Anyway, you need to check since it’s not native.
For support related questions please use the Help Center, since there is a dedicated Support Team working on it (this wall is not intended for support): https://support.undsgn.com/hc
i have issue in the fonts
Hi aclerigo! We are sorry for this problem but your message doesn’t help us understand what the problem is… 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
Do all the plugins such as LayerSlider come activated with the purchase of the theme or do they need to be purchased separately?
Hi Khal-ID! When you buy a theme with bundled plugins you are free to use them but you cannot activate reserved features, please find all info here: https://support.undsgn.com/hc/en-us/articles/213454629
Hi! I just tried to install this and get an error “Installing Theme from uploaded file: (...) The package could not be installed. The theme is missing the style.css stylesheet. (...)”. What is going on here?
Hi DavidHamelDP! If you have this error is because you are trying to install the main download from Envato while as listed in the documentation the installable file is inside and it’s named “uncode.zip”: https://support.undsgn.com/hc/en-us/articles/214000625
This is also reported in the main Support tab here: https://themeforest.net/item/uncode-creative-multiuse-wordpress-theme/13373220/support
hello on oe of the demos there is a mockup using macbook pro. what plugin is that does it come with your theme?
https://undsgn.com/uncode/portfolio/centered-custom-one/Hi damaskmedia and thank you for interest! Unfortunately, we really don’t get what you mean, can you please explain in other words? This is just a mockup of Macbook… Let us know so we can explain better.
Is it possible to purchase this theme in html?
Hi ajgallagher and thank you for interest but Uncode is only available as WordPress theme (too many options and variations for a static setup).
Ah go on!!! For an irish man would you make an exception????
Hi ajgallagher, Uncode is and always be a WordPress theme only.
Hai, So I finalize to purchase your theme, only one last question, Is it possible to adjust menu on mobile screen to any other way. for Desktop it is ok. but for mobile … can we place it in right or let rather than centre
Hi rajanpandit2000 and thank you for interest! Not sure what you refer but all the available mobile menu layouts are visible in our demo. In case please explain better.
I just want to say.. when I open it in my phone, the menu is visible in the centre of screen, can it be shift to left or right side of screen. I purchased it because I love it…
Hi rajanpandit2000, do you mean something like this? https://undsgn.d.pr/u4d6Ke
In case you just need to use a code like this:
@media (max-width: 959px){
body.menu-mobile-centered .main-menu-container .menu-horizontal, body.menu-mobile-centered .vmenu-container .vmenu-row-wrapper, body.menu-mobile-centered .overlay-menu .navbar-main {
text-align: left;
}
}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 support the solution privately! Thank you! https://support.undsgn.com/hc
Thanks dear, I will contact soon. Thanks for reply
Thank you for the confirmation!
Hola, ¿existe algún parche para cambiar el idioma a español?
Hi marco-dash! If you need to change terms you need to use a localisation plugin like Loco: https://support.undsgn.com/hc/articles/214003885
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
Hi,
In the theme options I made “single portfolio header” seeting but when I add a new portfolio page, the header options does not come like I made in the theme options. Screenshots at below
Theme Options: http://prntscr.com/rwukn7 New Portfolio Page: http://prntscr.com/rwuk99
Hi tolgaaksakal! The Page Options are not supposed and designed to appear as they are in the Theme Options when you modify them, they have the “Inherit” value, so the frontend inherits what you have in the Them Options, so don’t expect that if you see the Theme Options you find the same in the Page Options. I think you expect a completely different behavior.
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
Hi, I’m having hard time finding an element you are using on https://undsgn.com/uncode/shops/shop-metro/
I want the same “menu” under the header/before content, just with product categories.
Where do I find it? In the inspector, it look like something called menu-smart
Cheers
Hi focus_plus! You just need to shift the column with the Off-Grid settings in the Y -Axis: https://support.undsgn.com/hc/en-us/articles/214003625#&gid=1&pid=9
PS: Please, as suggested, use the Help Center for support questions since there is a dedicated Support Team: https://support.undsgn.com/hc/en-us
Okay I’ll look into it. Thanks. Also, I will use help center next time 
Thank you for understanding! 
Hi guys!
Is there any way to set a different menu on each page. For example lets say home page has menu1, and I want blog page to have menu2?
Hi stevanpopov22! Sure! If you need to change the menu items (the menu), you just need to select another menu from the Page Options, ex: https://undsgn.d.pr/LkvxuG
If you refer to the layout it’s a bit more tricky but it’s possible too (even if for usability we discourage):
https://support.undsgn.com/hc/en-us/articles/360001066858
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
Hi guys! I’m developing a website in my staging server, then I’ll pass to the prod server. Can I use the purchase code in both environment? Thanks!
Hi lautaorozco and thank you for asking! No you don’t need to buy another license if you are creating a stage environment. You are only limited to create 1 single final website: https://themeforest.net/licenses/standard
Hi is there a way to add a banner message above the menu bar? (eg. Corvid-19 message) Would really appreciate your help
Hi specialmove5! We are sorry but there is not a native method of the theme, probably there are some dedicated free plugins that can do this or you need to modify the core files to add this HTML fragment. I didn’t tested but there are a few, ex: https://wordpress.org/plugins/simple-banner/
https://wordpress.org/plugins/search/banner/
Etc… I hope this helps!
Hi there, is the video background feature currently working? My wordpress was automatically updated and now I can no longer see the video. I have one main big column with a video background, inside which there are 2 smaller columns.
Some of the photos also disappeared in a 3-column section, until I uploaded the same photos with bigger dimension (similar ratios).
Thank you so much and take care
Hi thokenth! Unfortunately, we don’t have any other users reporting the same problem and defiantly the video background is still working, ex: https://undsgn.com/uncode/homepages/classic-start-up/
Not sure since as told no other reported the same problem but try to update the theme and in case disable extra plugins: https://support.undsgn.com/hc/articles/214001205
Hai, I just love your theme, it is really awesome, I have only one question. I want to display daily a new post on my home page nothing else. I have add 365 posts to my website, I want to show daily 1 post according to month to my home page, E.g. today is 10 April, it will show that post which was posted on 10th April, This cycle should be repeat every year. can I accomplish this task with this theme. Or can you help me in this way. Your these is perfect for my project but can you solve this
Hi rajanpandit2000 and thank you for appreciate Uncode! 
This is not a native feature of the theme (it’s really particular requirement) but if you know this can be done (maybe with some dedicated plugins) probably can be done also with Uncode since it’s compatible with most of the plugins out there.
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
can you help me to achieve this goal. this is only major concern.. then I can go for purchase
Hi rajanpandit2000! We’re sorry but we can’t help you in this, testing such a particular setup is time-consuming and we can’t do it for every customer. I hope you can understand. As told if you know there are plugins that accomplish this task, this will work on Uncode too, since it is only a matter of scheduling the publication of certain articles and this is a native WordPress thing.
Hi undsgn, Regarding the menu shrink animation… Is it possible to change from one logo to another in the menu shrink sequence? The theme offers possibility to shrink logo in size, but I need one big logo with text in non-shrink-mode and a simplified version of my logo without text in the shrinked-mode.
I hope it make sense 
Thank you!
Hi focus_plus! Yes perfectly understand your needs but as you can see at the moment this is not an options, sorry.
Hi, Thanks for the fast response! How would I approach this to achieve it? I already have child theme installed. Thanks 
Hi focus_plus! When the menu shrinks you can see that there is a new class applied to it “shrinked”. Using this class you need to try to hide the actual logo and apply a background to div, this is just an idea (not sure if it’s possible and how many codes it requires):
.shrinked #main-logo a > div {
background: green;
}
Thanks! I got it working based on this approach 
Hi focus_plus and thank you for the confirmation! Glad it helped! 
Hey, I’ve been having some issues with the theme lately and have 2 questions
a) how can I remove the ‘add tocart’-hover on woocommerce products that happens when you hover over them. Is there a css code to fix? My research had brought up some of them, but none of them worked. https://www.loom.com/share/711eb687411e404e8945649bb6daed15
b) is there a way to stylize the ‘related products” on a single product page? As the individual products have thumbnails with images in different aspects, they apear different in the carousel, too. Is there a way to make all, let’s say, 1:1 ore 4:3 ? https://drive.google.com/open?id=1bxBKFcx_QJGG1pENBU-kWbr2zIcfrzoQAnd while we’re at it, do you have an affiliate program? I’ve been recommending your theme to 3 users alreeady 
Hi maxruebensal!
a. You can use this code:
.add-to-cart-overlay {
display: none;
}b. You can create a Content Block, as for the native Related Posts method and insert the query to Product (then you can use the Posts module and style as you need): https://support.undsgn.com/hc/en-us/articles/214005985 c. You should use Envato Affiliate program (by the way thank you): https://envato.com/market/affiliate-program/
Hey, a & b worked fine! concerning c) I did sign up with them, but it says that there is 0% commision for theme referral, is that correct?
I also have another 2 questions if you don’t mind…
d) is there also a css shortcode to change the “not available” tag that is shown on the post module from a woocommerce product in, e.g. “sold” ?
e) is there a way to stylize the font/heading of the tabs and accordions? I think they normally take the settings of the UI font, but I would like to change size/font via css for specific tabs on specific sites
Hi maxruebensal!
c. I don’t know this, this is something you need to ask to theme, I just know that lot of users/websites use it.
d. No this is not something you can change with CSS, in case you need to search for some WooCommerce hook (this is native of WooCommerce).
e. You can find here in the comments, ex: https://themeforest.net/comments/19763587
e) doesn’t seem to work, since I added this code to the CSS of the page it didn’t change the size of the font:
.nav-tabs > li.active > a { font-size: 40px ; } .nav-tabs > li.active > a { font-size: 40px ; }
Hi maxruebensal! This was just an example, just searching for “tabs” you can find multiple customization requests, I think this is what you need:
.nav-tabs > li > a span {
font-size: 20px;
}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