2996 comments found.
With the release of elementor 4.0 are we safe with upgrading elementor?
Hi,
We appreciate you reaching out.
We haven’t found any issues so far. All demo templates work properly.
Sincerely,
The Colabrio Team
Okay, can you all create a new demo for AI. Looking for some inspiration around that
When we do a demo import, are the images also imported? Does it import the entire design we see, or are there just blank screens and text?
Hi,
We appreciate you reaching out.
You will get all the content from the demo. Only some premium fonts will be replaced with standard alternatives.
Sincerely,
The Colabrio Team
Could you please provide information about which fonts these are? Also, I missed the sale; could you give me a discount, perhaps a coupon or something?
Sure, here’s the list with demo templates where we use premium fonts:
https://ohio.clbthemes.com/demo4/homedemo4-elementor/
https://ohio.clbthemes.com/demo5/homedemo5-elementor/
https://ohio.clbthemes.com/demo9/homedemo9-elementor/
https://ohio.clbthemes.com/demo18/homedemo18-elementor/
https://ohio.clbthemes.com/demo23/homedemo23-elementor/
https://ohio.clbthemes.com/demo31/homedemo31-elementor/
https://ohio.clbthemes.com/demo32/homedemo32-elementor/
https://ohio.clbthemes.com/demo35/homedemo35-elementor/
Let us know if you need the font name for a specific demo.
Also, I missed the sale; could you give me a discount, perhaps a coupon or something?
Unfortunately, ThemeForest does not offer the option to provide personal discounts.
In this demo, will adding extra sliders disrupt the page layout? I’ll be adding approximately 25 sliders when I purchase it. Will this cause any problems?
There’s no limit on the number of project items for this slider layout.
My last question. Can we first set up the website on xxx.com, and then, after completing the modifications, move it to yyy.com? Will we encounter any licensing issues? I don’t like localhost.
Yes, there is an activate/detach feature in the theme dashboard, so you will be able to transfer your license once your site is complete.
Sincerely,
The Colabrio Team
Is the Mega Menu built into Ohio theme? How do you activate and use it?
Hi,
Thanks for getting in touch with us.
Yes, it does. Here is the guide on how to set up a menu:https://docs.clbthemes.com/ohio/getting-started/#creating_menu
To activate a mega menu layout for a specific menu item, you should enable the “wide menu” option:
https://tppr.me/qDD02y
Sincerely,
The Colabrio Team
Does the mega menu also work for the hamburger menu? Like am I able to use the mega menu when opening up from the hamburger menu
Unfortunately, no, there are 3 hamburger menu layouts, so a menu with several submenu items will look like this: https://tppr.me/nX8noF
Hello,
I need your help with setting Blog Page editing.
I came across some error while editing my Blog Page. I would like to add background for Page Headline in the background. I do my editing all in Ohio -> Blog settings area, not in the page itself.
Everything works fine, until I set that Blog Page as a main Blog Page in WP settings (Settings -> Reading -> Post Page). After setting this up, my whole page headline just disappears (even title and subtitle). I tried different settings variations, but nothing helped. Other settings seems to be working, but not page headline.
Also, when I try to edit the Blog Page inside when it’s set as a main, I can’t save any changes I just get this error: “Updating failed. Sorry, you are not allowed to edit the _elementor_edit_mode custom field.”
Hi,
Thanks for reaching out and reporting this issue.
I have forwarded it to our dev team for review.
We will keep you updated on their progress.
Sincerely,
The Colabrio Team
Hey there, I’ve purchased the Ohio WordPress theme some time ago and really like the design and vibe. I’m working on a new project built with Next.js (not WordPress), and I wanted to ask if you offer a static HTML version of the Ohio theme or any kind of HTML/CSS export that I could adapt for my setup without taking so much time to convert it myself.
If not, do you have any recommended approach for using Ohio’s design in a non-WordPress environment?
Appreciate your help, thanks in advance.
Wes
Hi,
We appreciate you reaching out.
Unfortunately, we only have a WordPress version.
Sincerely,
The Colabrio Team
understand, thanks
You are welcome
Can’t even load the preview page. Not working on multiple browsers or phone.
Hi,
Thanks for getting in touch with us.
It was a temporary problem, the site should load correctly now.
Sincerely,
The Colabrio Team
Still getting error – even after clearing cache – ohio.clbthemes.com took too long to respond.
Sorry to hear that. We were also experiencing the same issue, but the site seems to be loading correctly now.
Hi,
Thanks for getting in touch with us.
It should function as expected. However, if you encounter any issues, we would be happy to assist or provide a full refund.
Sincerely,
The Colabrio Team
Bug Report — ohio_recent_projects: Portfolio Lightbox not working on frontend
I found two bugs in the ohio_recent_projects Elementor widget that prevent the portfolio lightbox from working on the frontend. No JavaScript errors appear in the browser console.
Bug #1 — Lightbox does not open (open button)
The function mapped to ohio:handle_portfolio_popup in main.min.js attaches the click handler only to [data-js="open-project-lightbox"], but the open button rendered by ohio_recent_projects only has the class btn-lightbox — the data-js attribute is missing.
Additionally, handler.js triggers ohio:handle_portfolio_popup only inside the isEditMode() block, so the handler is never initialized on the frontend.
Bug #2 — Lightbox does not close (close button)
Ohio’s close handler listens for [data-js="close-popup"], but the close button inside the lightbox popup has no data-js attribute at all. Only the ESC key works.
Recommended fix
- Add
data-js="open-project-lightbox"to the open button in the portfolio card template. - Add
data-js="close-popup"to the close button inside the lightbox popup template. - Move the
frontend/element_readyhook inhandler.jsoutside theisEditMode()block so thatohio:handle_portfolio_popupis also triggered on the frontend.
Temporary workaround (wp_footer)
add_action('wp_footer', function() { ?>
<script>
jQuery(document).ready(function($) {
$('.portfolio-item .btn-lightbox')
.attr('data-js', 'open-project-lightbox');
jQuery(window).trigger('ohio:handle_portfolio_popup');
$(document).on('click',
'.project-lightbox .close-bar .icon-button',
function() {
$(this).closest('.clb-popup').removeClass('visible');
$('body').removeClass('clb-popup-opened');
}
);
});
</script>
<?php });
Hi,
Thanks for getting in touch with us.
Could you please specify the versions of the Ohio theme and Ohio Extra plugin where you found these issues? The required JS attributes are there, and the portfolio lightbox is functioning as expected:https://ohio.clbthemes.com/portfolio-projects-widget/
Sincerely,
The Colabrio Team
Hi,
Thank you for your response.
The versions where we found the issue are: - Ohio theme: 3.6.7 - Ohio Extra plugin: 3.6.7 - Elementor
We understand the lightbox works on your demo, but on our installation the issue is reproducible. After investigating the source code, we found the following in ohio-extra/elementor/widgets/recent-projects/handler.js:
The call to jQuery(window).trigger(‘ohio:handle_portfolio_popup’) is wrapped inside an isEditMode() block, which means it never fires on the frontend. Additionally, the open button only has the class btn-lightbox but is missing the data-js=”open-project-lightbox” attribute that Ohio’s JS expects to open the popup.
We were able to confirm the bug by inspecting the generated HTML on the frontend — the attribute is absent — and resolved it temporarily with a wp_footer workaround.
Could you check whether this behavior differs between a default Ohio installation and one using Elementor Pro with a custom child theme? It’s possible the issue is environment-specific but the root cause appears to be in handler.js.
Best regards, Gianluca
Do you have a child theme? If so, try to disable it and check if the issue persists.
You were right, the issue was in our child theme — the template files were missing the data-js attributes that Ohio expects. We’ve fixed it on our end. Thanks for the support!
Glad to hear that!
Hi Dears i am creating the blog but how to set up the post to have the feature image in the header like this : https://preview.themeforest.net/item/ohio-creative-wordpress-theme/full_screen_preview/25193838
That’s the copy, please check the original inquiry.
bad experience, for connect the license,viia setting theme you have to renew the support,and its not work properly
Hi,
Thanks for getting in touch with us.
Your theme’s license never expires and can be activated after support period ends. Please provide a bit more detail so we can help you out.
Sincerely,
The Colabrio Team
Not for me, the green button to connect the license (wp-admin/admin.php?page=ohio_hub) , after register and accept terms and conditions the api evanto don’t reply. “Too many redirections occurs”.I clean the cookies but don’t connect.
Try using a different browser or an incognito window, as some third-party extensions may be causing the issue. If it doesn’t help, please send us a personal message and provide your temporary WP credentials.
Sincerely,
The Colabrio Team
Hi there,
Not sure but I think I found a bug. When you set the ‘blog’ component onto your website, and you enable the “equal height” option, the Elementor containers overlap each other on mobile.
E.g.: You have 2 containers on your website. The first one is the container that contain the Blog component, the second container contains a Image gallery. What happens is that the Image gallery (partly) overlaps the Blog thumbnails.
My support expired but I don’t think this is an user mistake. It really feels like a bug.
I hope you can reproduce/find this bug.
By the way I found out that this only happens with the “Minimal” blog layout and only on mobile.
Hi,
Thanks for getting in touch with us.
Can you drop a link here? So that we will be able to check it out live.
Sincerely,
The Colabrio Team
i didnt get any reply on this
Hi,
Thanks for getting in touch with us.
Unfortunately, we don’t have such a pre-made layout for the post header. However, you can < a href=”https://tppr.me/wRFfu4”>disable the standard post page headline and reuse that section from the Demo Landing 2025 with Elementor page builder.
Sincerely,
The Colabrio Team
i just figured that the link is not taking to the post page i want what i want is the Single post “Standard: Feature Image” please check the below link is a screen shot if what i am looking for how to do it with the theme
https://snipboard.io/5w0kX8.jpgthank you
https://ohio.clbthemes.com/creativo-para-jovenes-a-designers-ui-ux-complete-checklist/
It should have the required layout with a featured image.
Sincerely,
The Colabrio Team
Hello Dears I didnt hear from you
https://tppr.me/SlyxuZ
Once you have the blog posts installed, you should find the post with the featured image you are looking for.
Sincerely,
The Colabrio Team
Your Demo 5 thumbnail looks different from the actual elementor version (the first block) .. why is that?, I want the demo to be like what you have here https://ohio.clbthemes.com/demo5/homedemo5-elementor/ but the demo imported is what is on the thumbnail .. how do I import the current demo 5 in the link?
Hi,
Thanks for getting in touch and notifying us.
We’ve rebuilt and updated the 5 demo. Could you try to import it again?
Sincerely,
The Colabrio Team
Works fine now. Can you point me to how I can find where to add the last sentence on the demos “endless.design” .. I see it at the end of the home demos now
From your admin dashboard, navigate to Theme Settings > Footer > Background Text: here you can add the text that will display in the footer of your site.
Sincerely,
The Colabrio Team
Hello, where can I remove the shopping cart icon and the amount shown in the menu on the right please?
Hi,
We appreciate you reaching out.
Please check the following guide:https://docs.clbthemes.com/ohio/woocommerce/#cart_disable
Sincerely,
The Colabrio Team
Hety! I need to know how to replace contact form 7, with Fluent forms? and how I can edit the footer details and forms?
Hi,
Thanks for getting in touch with us.
You should use the Fluent Forms widget on your page:https://fluentforms.com/docs/how-to-embed-your-forms-using-elementor-widget/
Footer widgets could be edited in the Appearance > Widgets:
https://tppr.me/XM7kX8
Sincerely,
The Colabrio Team
Hi, I need an help to understand why the max-width of this portfolio changed with the latest updates.
https://radiantcooling.com/project/broad-beach-residence/I notice this only today, please could you help me to find the problem?
Thanks
Enrico
To work around the problem, I temporarily added this rule:
.project-page .page-container { max-width: 100% /* Maybe the project page with to 100% */ }
To see the original problem, disable this temporary rule.
Thanks
Hi,
Thanks for getting in touch with us.
The same layout on our demo website displays correctly with the latest version:https://ohio.clbthemes.com/project/dinamica/
Try disabling the Ohio Child theme to see if the issue persists. The required (.-full-w) class is currently missing on your page.
Sincerely,
The Colabrio Team
Another bug report. In blog settings (both in elementor and in theme options) if you select “Thumbnail Size – Original” the website still shows different cropped images of the original image. Please fix. Thank you
Hi,
Thanks for reaching out and reporting this issue.
I have forwarded it to our dev team for review.
We will keep you updated on their progress.
Sincerely,
The Colabrio Team
Hi, I installed demo 34 of the theme, in the Elementor version. I’m trying everything to disable the light and dark sections, even deleting the class from the containers, to no avail. I also disabled the dynamic color, to no avail. Can you please investigate? Thanks a lot.
Hi,
Thanks for getting in touch with us.
Please send us a personal message and provide your temporary WP credentials.
Before we proceed it’s necessary to take a full backup of your database and your website.
By providing us with access, you agree that a backup has been taken.
Sincerely,
The Colabrio Team
I have latest theme of Ohio and there seems to be an issue with Elementor sidebar loading. Can you check that it works currently for the theme on your end? I’ve already done all tests with updating Elementor / Elementor Pro, Up’d the PHP memory, switch themes and the Elementor plugin works when Ohio is not active. Thus seems to be a theme issue.
Hi,
Thanks for getting in touch with us.
Could you send us a personal message and provide your temporary WP credentials? So that we may quickly address and fix the issue.
Sincerely,
The Colabrio Team
Hey! As many others reported a couple of months ago, the issue with the 2x Hamburger menu is still present.
Opening works just fine but when i Close the one hamburger menu on mobile, the standard one still appears behind it and the second one has to be closed as well.
In one comment i found a statement that this would be resolved in the next update (for months ago) but it is still present to date.
Hi,
Thanks for getting in touch with us.
We’ve already fixed that issue. However, if you use a child theme, an outdated hamburger menu template might still be there.
Please submit a ticket with your inquiry at our help center, and we will help you update the template with the latest changes.
Sincerely,
The Colabrio Team