62 comments found.
Hi,
I’m trying to embed a LinkedIn post using the provided iframe code on my blog. Could you please guide me on how to properly embed this type of code?
Hi,
I’m not sure how LinkedIn iframe work, but try to add it to your post using HTML button.
https://prnt.sc/0OeocpBVZzdsIf it doesn’t work, please create a ticket on our support center https://botble.ticksy.com and give us that iframe code, our dev team will check it for you.
Hello, how can I upload a different image based on the language in “Services,” “Blog,” and “Pages”?
I did the latest update, but I don’t know how to do it.
Hi,
This change is not applied in the latest version yet.
It will take time to make that image for all languages.
We will consider if we can add image to translation fields. It has many tables need to change: page, post, project, service, service category…
Thank you for your response. I have a simple and effective suggestion for implementing the image upload feature for translated languages. Since the default language already has the image upload option, I propose that the system automatically copies the image from the default language to the other languages. This way, users who are not interested in changing the image will not be affected, and those who wish to manually change the image can do so.
I am not an expert in programming, but I reached out to ChatGPT to assist me with the code. Since you are the experts, I believe you can implement this quickly as you are familiar with the code. Here’s the solution with the code:
1. Add Column to Enable Image Upload for Other Languages (Database Update)
The first step is to add a column in the database to manage image upload functionality for other languages.
SQL Query to Add the Column:
ALTER TABLE images ADD COLUMN is_editable BOOLEAN DEFAULT 0;
This adds an is_editable column that determines if a user can edit the image for the specific language. Initially, images copied to other languages will have this option set to 0 (not editable).
2. PHP Script to Copy Images and Enable Upload for Other Languages
Here is the PHP code that checks if the image is uploaded in the default language and copies it to the other languages while making the image editable for those languages.
<?php include ‘db_connection.php’; // Database connection
// Define default language $default_language = “en”; // Replace with your site’s default language
// Fetch all images from the default language $sql = “SELECT content_id, image_path, id FROM images WHERE language = ?”; $stmt = $conn->prepare($sql); $stmt->execute([$default_language]); $default_images = $stmt->fetchAll(PDO::FETCH_ASSOC);
foreach ($default_images as $image) { $content_id = $image[‘content_id’]; $default_image = $image[‘image_path’]; $image_id = $image[‘id’]; }
// Fetch all languages for the same content
$sql = "SELECT language FROM translations WHERE content_id = ?";
$stmt = $conn->prepare($sql);
$stmt->execute([$content_id]);
$languages = $stmt->fetchAll(PDO::FETCH_COLUMN);
foreach ($languages as $lang) {
if ($lang !== $default_language) {
// Check if the image is already present for this language
$sql = "SELECT COUNT(*) FROM images WHERE content_id = ? AND language = ?";
$stmt = $conn->prepare($sql);
$stmt->execute([$content_id, $lang]);
$exists = $stmt->fetchColumn();
}
if (!$exists) {
// Copy the image to the other language and make it editable
$sql = "INSERT INTO images (content_id, language, image_path, image_original_id, is_editable)
VALUES (?, ?, ?, ?, 1)";
$stmt = $conn->prepare($sql);
$stmt->execute([$content_id, $lang, $default_image, $image_id]);
}
}
echo “Images copied successfully, and upload option added for other languages!”; ?>
How it Works:
This script checks if the image is already uploaded for the default language.
It copies the image to the other languages if not already present.
It makes the image editable in the other languages so users can manually change it later.
I hope this solution helps, and I believe it will save time while giving users the flexibility to update the images. Thank you for your support!
Hi,
This change will apply for all of our customers, including who doesn’t want to set image for each language.
Please implement it as a plugin in platform/plugins for this, it’s easier in this case if you have coding skills.
Hello, No, no! As I said, I only used ChatGPT, and as I mentioned, I’m not an expert in programming. I will continue waiting for your update.
Thank you!
Hi,
This is a technical issue, please create a ticket on our support center https://botble.ticksy.com , our dev team will support you.
Hello, I will do it, but before that, I have a small suggestion, and I’m wondering if it can be implemented.
So, I have added each image in a different language to the article/service description using INSERT image, just like adding any other image in the article/service description. I placed it at the top, centered, in its original size, so it looks exactly like the original image but in different languages.
The issue is that the image now appears twice (the original image + the one I inserted using INSERT image).
So, I was wondering if there is a JS or HTML code or any method to prevent the original image from appearing in the written description of the article or service. In other words, the original image should only appear on the homepage and in the services and blog pages, but when opening a specific blog post or service description, the original image should not appear. Instead, only the one I inserted via INSERT image will be displayed automatically.
Now, I want to ask about leaving a comment on the blog, as shown in the image https://prnt.sc/zkqlojgBswsF . Can I change the language? If yes, how and where?
Thank you very much! I truly appreciate your support.
Hi,
You can disable blog featured image on the top in Appearance → Theme options → Blog.
https://prnt.sc/T26vWDPXid3xFor service detail page, try to add below code into Appearance → Custom CSS:
section.section-work-single.section-padding > .container > .row > img {
display: none;
}
Thank you so much, best support .
What about this https://prnt.sc/zkqlojgBswsF . If can I change the language? how and where?
Hi,
You can translate it in Settings -> Theme translations.
Thank you, I found it in Settings-> Other translation , but thank you. As for the image, I will temporarily rely on this image solution without any written text, waiting for your update.
Thank you.
Hello,
How can I adjust the intensity of the dark mode filter on the image in the homepage or even remove the filter and keep the image natural?
Thank you.
Hi,
Try to add into Appearance → Custom CSS:
[data-bs-theme=dark] .section-hero-1 .filter-gray {
filter: none !important;
}
Then it should work.
thank you
How can i change data as i want . like my photo , name , experence etc
Hi,
Yes, you can change everything from the admin panel.
it’s php version is 8.2 can i downgrade php version to 7.4 ?
Hi,
No, you can’t.
Zelio is using Laravel framework 11. It requires minimum PHP version is 8.2. We don’t have a Zelio version which can run on PHP 7.4.
PHP 7.4 is out of date. It’s end of life on Jan 2022, you should upgrade PHP version on your hosting to PHP 8.
https://www.php.net/supported-versions.phpPre purchase question:
Is it possible to integrate payment gateway and collect payment from the site for the service i provide?
Hi,
Our script is a personal portfolio, so it doesn’t have any payment options by default.
It requires code customization, you need to customize our script to add payment option. We are providing full source code, you can customize it if you need.
Please how to switch from designer to developer homepage ?
Hi,
You need to use our sample data, file database-code.sql. This is the best way to setup that demo.
Or you need to setup it the same as our demo site: - Homepage: https://zelio-developer.botble.com/admin/pages/edit/1
- Theme options: https://zelio-developer.botble.com/admin/theme/options/styles
Then it will be the same as our demo site https://zelio-developer.botble.com/
Hello again, how can I make “(en cours)” appear below “2025/2026” in resume?
I tried using ”< br>”
https://prnt.sc/yTQ06T_-wA03Hi,
Please go to System updater and click on “Re-install the latest version”, then it will support
tag in that place.
Thank you so much
What about on the moblle? https://prnt.sc/jGl1wWnwKnTyHi,
We will improve it in the next version.
It should be like this https://prnt.sc/15u7PybRZPwQ in the next version, please wait about 2 weeks, we will release it soon.
Thank you
Hi, It’s about 3 weeks, any updates ?!
Hi,
We will release the next version on the next Tuesday. It’s still having some issues when upgrading to Laravel 12, so we need time to do some more tests before releasing it.
Take your time, I also hope the issue of the different image based on language in the blog and services gets fixed.
Hi,
Yes, we will try our best.
Thanks
Hi, wondering if you can help me, I’m faced with a restriction on license while trying to install this item on a localhost on my computer’s, it’s not on a live server nor is it on an online domain yet.
Hi,
As the rule https://codecanyon.net/licenses/standard, 1 license just can be used for 1 website (domain, subdomain, subfolder, IP…), including localhost.
If you want to use our script for multiple sites/clients, you need to purchase multiple licenses.
You still can use our script without activating license. It can be installed on dev/stagging/uat site for developing without any license violations. All features are still working fine except System updater and install new plugin from our marketplace https://marketplace.botble.com/products.
Thanks for reply, so now do I need to deactivate my other computer install to reset my license and activate it only in production?
Hi,
Please log in to our customer license manager site https://license.botble.com to reset license.
Then you can activate your license again on production domain.
I recommend some features to add to this awesome script:
- Ticket system” for helping and supporting our clients. - Customer registration in case of ordering and getting services from the website.
We wish to see in the upcoming updates.
Hi,
Sorry, this is a personal portfolio resume script, we don’t want to add ticket system into it.
If you need a ticket system, I suggest you to use this script https://codecanyon.net/item/ticksify-customer-support-software-for-freelancers-and-smbs/39876536 and setup it on support.your-domain.com
Hi,
We will check and fix it.
Thanks for your feedback!
Mobile view have issue kindly check
Hi,
Sorry, I can’t find that issue. Can you give me more details? Which part has issue? Some screenshots will helpful.
Hi see screenshort
https://drive.novasera.in/drive/s/EiUEweW9ZKzZK1D3IgC8vG4om3hUIgHi,
Please go to Platform administration → System updater and click on button “Re-install the latest version”, then it should be fixed (it is just update CSS code for theme, it won’t change your site data).
Thanks for your feedback!
Thanks Works
In a resume, there are Experience and Education sections.
Can I add more sections? For example:
Education
Professional Experience
Extracurricular Experience (non-professional experiences)
Hi,
Yes, you can add more sections into the homepage using UI block button.
Insert a break line: https://prnt.sc/3fyEji7oAt41
Then insert a new section.
https://prnt.sc/yU4Fv_tr0B69I want to slightly reduce the size so that ‘Digital’ appears next to ‘Marketer’.
Should I adjust something in the ( Full-Stack Digital Marketer ) ?
Hi,
Please try to add below code into Appearance → Custom CSS, then it will be smaller.
.section-hero-1 h1.ds-2.mb-3 {
font-size: 50px !important;
}
Result: https://prnt.sc/BIkxQE5XLOi7
Thank you, but I believe there is an issue with your website’s server, and it has somehow affected my site, preventing me from accessing the admin panel. It shows that I need to activate it, even though I had done so previously.
Hi,
It is back, please check again, it should work now.
Yes, it’s back, thank you.
However, I noticed a relative delay in the performance and speed of the website on mobile, especially the first time or when using a new browser.
This applies to both my personal website and the demo.
Check it out here: https://pagespeed.web.dev/analysis/https-zelio-botble-com/mpr2zbhzkb?form_factor=mobile
I hope this issue will be addressed in the near future. Thank you.
Hi,
The score is low because of this image https://prnt.sc/pTMpyhViXB3V
It’s big and display at the first screen, so the score can’t be high. That why we were removing this image on mobile screen before.
We will check if we can improve this image, maybe we should move it to bottom, in the next screen to increase pagespeed score.
Hello, thanks again,
I would like to create similar screenshots for my website with the same design and style. So, I wanted to ask you about the tool/template/method you used to create these images. https://prnt.sc/YmxXt3VKXY90Thank you!
Hi,
Sorry, I’m not sure about this. We are using design from https://themeforest.net/item/zelio-personal-portfolio-figma-template/53662937
I guess that the designer was using Figma for that images.
Hi, I just discovered that regarding the services, the image should be the same for all languages.
If there’s a small description or text in the image, it means I need to change it according to the language. Therefore, I would need to upload a different image for each language, but this isn’t available right now. It’s similar to the homepage, where I can edit the images and everything according to each language…
Secondly, I’m not sure if this is possible or not, and I don’t know if it’s available right now or not yet. It’s related to the website’s indexing on Google, so when searching on Google, the menu structure appears on the first page like in the two images, similar to Facebook. As I said, I don’t know if this is available right now (if yes, please guide me). 1. [https://prnt.sc/KznmcdmNuqkO](https://prnt.sc/KznmcdmNuqkO)
2. [https://prnt.sc/Gx3WsBRQQ6H8](https://prnt.sc/Gx3WsBRQQ6H8)
Finally, there’s a small secondary suggestion: Regarding those who fill out the contact form, I’m not sure if I receive a notification by email or if it’s just a notification in the admin panel. I think it would be great if I also received it by email.
Thank you.
Hi,
1. I was thinking that we don’t need to translate image. If your site is multi-language, you shouldn’t add text to that image, it will take time to make that image for all languages.
We will consider if we can add image to translation fields. It has many tables need to change: page, post, project, service, service category…
2. It’s Google sitelinks, it’s indexed by Google sitelinks algorithms, I’m not sure how it can be done. It was automatically by Google.
https://developers.google.com/search/docs/appearance/sitelinksOr you can check this article: https://kinsta.com/blog/google-sitelinks/
3. Yes, you can enable email notification for contact email in Settings → Email. Needs to setup your email using SMTP service, it will email you when someone submit contact form.
https://prnt.sc/jLQ5OxIfHN4r https://prnt.sc/5OjWgtng12gLNeed to enter your email in Settings → Contact too.
https://prnt.sc/MNzoZJHtePGXRegarding the first point about the image, it’s not just for services but also for the blog.
As you know, an image in a blog can contain text, which could be a small title, a description, something to attract attention, or even for SEO and other reasons. Therefore, I need to design a separate image for each language in the blog, ensuring that the text is in the corresponding language. So, for each language, I must upload a specific image to the website.
(The same applies to services.)
Hi,
Yes, it needs to change in many places. We need time to think about this. I don’t want to break current customers who don’t need to use different image for each language.
Can audio and video files be uploaded and used in the blog?
Hi,
Yes, you can insert it to blog post using UI block Media – Audio and Media – Video.
https://prnt.sc/D83R9w8X5cdbThank you for your reply, Can there be more blog categories on home page instead of just latest from blog?
Hi,
You can add more blog category posts to the homepage using UI Block “Blog Posts” in Admin → Pages → Home.
https://prnt.sc/Oi52sLCCBemCThank you.
There is one problem that when a customer view a website with this script, some Java scripts do not work until you reload times three, the Java scripts not work like sliding images, the images look so different that the visitor may not have the service, depending on some things do not open properly. FIX THIS EVEN YOUR DEMO
Hi,
Sorry, I can’t reproduce this issue on our demo site.
It’s fine for me. I can’t see this issue.
Maybe it has a conflict with your browser extensions. Try to check https://zelio.botble.com again on another browser or in incognito mode.
Hi, I’m asking for help. I want my website to use one https:// url and not https://www as it is now because it disrupts the system. I’m asking for help. All links should be changed to https://, I’m asking for help.
HELP ME HOW TO FIX THIS
Hi,
Please add redirect www to non-www on your hosting.
Check this: https://www.simplified.guide/cpanel/dns-redirect-bare-to-www
Can I contact you via email or something?
I am trying to make a purchase but I am facing an issue.
Hi,
You can contact our email contact@botble.com if you need.
But we are just an author on Envato Market, we can’t help you on payment issue on this market.
I was facing an issue with payment due to PayPal and my card… but I managed to solve the problem and purchased the product today to support and thank you for your assistance, as well as for the quality of the product. I’ve been keeping an eye on it for weeks.
However, I won’t be able to activate it now.
I will wait until the image appears on the mobile page. As a marketer, my face is part of the marketing strategy, and the customer needs to see it to gain their trust.
Thank you.
Thank you.
Hello,
First of all, thank you for everything. Secondly, I have a simple suggestion regarding the display of skills on mobile.
Instead of displaying one skill at a time horizontally, it would be better to display two skills side by side, as shown in the image in the link: https://mega.nz/file/9l9xhKKD#Mb-LaHdraSJlAnVvJB4JiEUV1zh3AnDouCHdUSCUIDQThis will save space on mobile, prevent the page from becoming unnecessarily long, and enhance the browsing experience. Thank you
Hi,
We will check and improve it in the next version.
Thanks for your feedback!
Hello,
How can I adjust the intensity of the dark mode filter on the image in the homepage or even remove the filter and keep the image natural?
Thank you.
Hi,
Try to add into Appearance → Custom CSS:[data-bs-theme=dark] .section-hero-1 .filter-gray {
filter: none !important;
}
Then it should work.
- Can you add a “One Time” payment term? as hourly, daily, weekly, monthly, and yearly.
- What is the differeneces between regular license and extended, what the extra features that I will get with extended licence if I think about upgrading, If it have a new extra addons can I just pay the balance/different cost between the regular licence and extended one, cause I am already paid for the regular one and I am interested in your awesome and powerful script.
Hi,
We have replied your ticket on https://botble.ticksy.com, please check.
How can I find login.php “for admin” in the script files to make some changes there?
Hi,
This is a technical question.
Please create a ticket on our support center https://botble.ticksy.com, our dev team will support you.
How can I stop Wappalyzer from detecting my website?
Hi,
Please create a ticket on our support center https://botble.ticksy.com, our dev team will give you instruction to remove it.
Done #3804075
Hi,
Awesome script, had a tonne of features, appreciated.
Can I change the admin slug from “admin” to something else, just for security purposes?
Hi,
Yes, you can change ADMIN_DIR=admin to another value in .env config file.
And how can I put the site name to view it to use (Show site name after page title, separated with ”-”)
Thanks for your awesome, quick reply.
And how can I put the site name to view it to use (Show site name after page title, separated with ”-”)
I got it, thanks, but can I change the ”-” to ”|” instead?
After changing it from ADMIN_DIR=admin to another value in the .env config file.
All links that are in the admin dashboard “left sidebar” are still in /admin, so I got Error 404!
Hi,
Admin menu is cached, try to go to /new-admin-url/system/cache and clear all cache option. Or just logout and login again.
For SEO title separator, we don’t have option to change it to ”|” for now, we will add it in the next version, please wait.
Awesome, that’s right!
Waiting for an upcoming future update, do you have any direct contact channel like Telegram?!
Which file in the script files can I replace ”-” with ”|” just for now until you release it in the upcoming updates?
Hi,
You can change it in platform/packages/seo-helper/config/general.php
https://prnt.sc/dsTcSalpPntdWe don’t provide support on Telegram. If you need support, please create a ticket on our support center https://botble.ticksy.com
Thanks! Done!
How can I arrange/sort services that are in the services block as I see them appearing sorting other than the sorting I created?
And where can I control/manage uploaded image quality/compression? I think that I see it in the admin dashboard, but now I do not remember how I can find this option!
I find the image settings option, anyway, How can I arrange/sort services that are in the services block as I see them appearing sorting other than the sorting I created?
How can I control the image size and quality inside the project? In the homepage projects section, the image is good, but inside its page, the image is too big and lost it’s quality!
Hi,
We don’t have option to sort services for now, we will add it in the next version.
You can manage media config in Admin → Settings → Media.
Thanks, I will wait for your next update
Hi,
The cookie policy page has an issue! Because the slug is //cookie-policy, not /cookie-policy, there are two ”//” and not one slash. This is in your demo website; else, how can I fix this?!
Hi,
You can change that link in Appearance → Theme options → Cookie Consent, just change it from ”/cookie-policy” to “cookie-policy”, then it should work.
https://prnt.sc/wC5Y33TY6An2Done, thanks!