Forum Replies Created
list of topics you have created till now.
-
-
Hi,
For this theme to work in the best and smoothest way, the necessary server configuration settings need to be made.
Please make sure that your server configuration settings are as shown in the link below.
https://www.pixelwars.org/forums/topic/system-requirements-for-wordpress-themes/
Server configuration settings can be adjusted through the hosting control panel. You can do this yourself, or you can ask your web hosting provider to make these adjustments for you.
Best regards,
MehmetHi,
Thanks for purchasing the f8 theme.
The message “The link you followed has expired” usually means the server is timing out before the demo import completes. Even if your PHP limits are increased, there may still be restrictions on your hosting side.
Please contact your hosting support and ask if there are any additional PHP/Apache/Nginx restrictions, such as mod_security rules or firewall limits, that could be blocking the large import process.
Once you try these steps, let us know, and we can assist further, including importing the demo content for you if you share temporary admin access via the forum’s “Private Content” field.
Best,
MehmetHi,
Sure! You don’t need to use any plugin. You can simply copy and paste the code below into your child theme’s
functions.phpfile:// 1. Add required checkbox to the checkout page add_action( 'woocommerce_review_order_before_submit', 'custom_checkout_checkbox_field', 10 ); function custom_checkout_checkbox_field() { echo '<div class="form-row custom-terms-checkbox">'; woocommerce_form_field( 'custom_terms', array( 'type' => 'checkbox', 'class' => ['form-row'], 'label' => 'I confirm that I accept the additional terms and conditions.', 'required'=> true, ), WC()->checkout->get_value( 'custom_terms' ) ); echo '</div>'; } // 2. Prevent order placement if the checkbox is not checked add_action( 'woocommerce_checkout_process', 'custom_checkout_checkbox_validation' ); function custom_checkout_checkbox_validation() { if ( empty( $_POST['custom_terms'] ) ) { wc_add_notice( __( 'You must accept the additional terms and conditions to place your order.' ), 'error' ); } } // 3. Save checkbox response to order meta add_action( 'woocommerce_checkout_update_order_meta', 'custom_checkout_checkbox_update_order_meta' ); function custom_checkout_checkbox_update_order_meta( $order_id ) { if ( ! empty( $_POST['custom_terms'] ) ) { update_post_meta( $order_id, '_custom_terms', 'Accepted' ); } }This will:
– Add a required checkbox just above the “Place Order” button.
– Prevent order submission if the checkbox is not checked.
– Save the checkbox response in the order meta (you’ll see “Accepted” in order custom fields).Let me know if you want to change the position or text of the checkbox.
Best regards,
MehmetHi,
Thanks for your message.
To easily add a required checkbox to the WooCommerce checkout page, without writing custom code, you can use this free plugin:
Checkout Field Editor (Checkout Manager) for WooCommerce:
https://wordpress.org/plugins/woo-checkout-field-editor-pro/With this plugin, you can:
– Add a checkbox field at the bottom of the checkout page.
– Make it required, so customers must check it before placing the order.
– Customize the label text as needed (e.g. “I confirm that I accept the additional terms and conditions”).After installing and activating the plugin:
1. Go to WooCommerce > Checkout Form.
2. Add a new Checkbox field.
3. Set its position (e.g. “After order notes”).
4. Enable the “Required” option.
5. Save changes.Let us know if you need further help.
Best regards,
MehmetHi,
Thanks for reaching out and providing details.
Here are a few steps to help troubleshoot and resolve the issues you’re experiencing:
1. Elementor Templates Not Displaying
Please check the following:
– Go to Elementor > Templates > Theme Builder and make sure your custom templates (Shop, Product, Category) are published and assigned to the correct conditions.
– For the Product Archive (Category) pages, make sure your Archive template is assigned to “Product Category” under display conditions.
– Clear all caches (browser, any caching plugins, and server-side cache if applicable).
– Temporarily disable all other plugins except Elementor and WooCommerce to rule out conflicts.2. Essential Addons Widgets Not Working
For Essential Addons-related issues:
– Ensure that Essential Addons Pro (if you’re using Pro widgets) is installed and activated alongside the free version.
– Go to Essential Addons > Elements in your dashboard and make sure the specific widgets you’re using are enabled.
– Check the Console in your browser’s Developer Tools (F12) for any JavaScript errors that could affect widget rendering.
– Try switching to a default theme like “Hello Elementor” temporarily to test if the issue is theme-related.3. Compatibility Note for Florz
Florz is compatible with both Elementor and WooCommerce, but some advanced customizations may require additional tweaks depending on plugin versions.
If the issue persists after these checks, feel free to:
– Share temporary admin login via “Private Content” field (only visible to our support team).
– Mention which widgets from Essential Addons are not working.We’ll be happy to take a closer look.
Best regards,
MehmetHi,
Thanks again for providing access.
I checked your site and noticed that the “Prime Slider” plugin was running an older version. I’ve updated it to the latest version, and now the translations for “Next Slide” and “Prev Slide” are working correctly.
You can now adjust or fine-tune the translation anytime via “Loco Translate”, and it should reflect properly on the site.
Just as a general tip:
We always recommend keeping your plugins up to date, as newer versions often fix bugs, improve compatibility (including with translation tools), and enhance overall performance.One final note regarding your site’s security:
Now that I’ve finished checking everything, I recommend that you change your WordPress admin password, just to be on the safe side, especially since it was shared externally.Feel free to reach out if you need anything else!
Best regards,
MehmetHi again,
Here’s what you can try next:
– In Loco Translate > Plugins > Prime Slider, click “Edit Template”.
See: https://i.ibb.co/gFw3Q0RK/plugin-1.png– Then, run the “Sync” action to update the list of translatable strings.
See: https://i.ibb.co/svTmx9Vk/plugin-2.png– After syncing, Save the template.
– Then go back to your language file (Loco Translate > Plugins > Prime Slider > Language file), search again for “Next Slide” and “Prev Slide”, and enter your translations.
– Save the file again.
This should make the new strings available and translatable on your site.
Let me know how it goes!
Best regards,
MehmetHi,
Since you’re using the “Prime Slider” plugin, you can translate the “NEXT SLIDE” and “PREV SLIDE” texts by following these steps:
– Go to “Loco Translate > Plugins” page.
– Find and click on “Prime Slider”.
– Select your language or click “New language” to add it.
– Use the search box to find the strings “Next Slide” and “Prev Slide”.
– Enter your translations and click Save.Once saved, your translations will automatically appear in the slider.
Let us know if you need any help during the process.
Best regards,
MehmetHello,
Thank you for the details and the screenshots.
We checked your site and noticed that many of the active plugins are outdated. This can sometimes cause unexpected behavior, including issues with saving or displaying content correctly.
For now, please update all the plugins that have newer versions available, then try editing and saving the portfolio item again.
Once everything is up to date, check if:
– The changes to custom fields like “Client” are reflected on the front-end.
– The correct template is being applied to the portfolio item.
Let us know the result after updating the plugins, and we’ll assist further if needed.
Best regards,
MehmetHi,
For this theme to work in the best and smoothest way, the necessary server configuration settings need to be made.
Please make sure that your server configuration settings are as shown in the link below.
https://www.pixelwars.org/forums/topic/system-requirements-for-wordpress-themes/
Server configuration settings can be adjusted through the hosting control panel. You can do this yourself, or you can ask your web hosting provider to make these adjustments for you.
Best regards,
MehmetHi,
Since your other WordPress sites on WPEngine are working fine and only this one is having trouble, that narrows things down to something site-specific. Here are a few things you can double-check:
1. Plugin Conflict
Make sure only one SMTP plugin is active. If you’ve tested multiple plugins before, it’s worth deactivating all of them and reinstalling just one cleanly (e.g., WP Mail SMTP).
2. Form Configuration
Check your form’s “From” Email address – is it valid and from your domain (like noreply@yourdomain.com)? Some hosts (including WPEngine) silently discard outgoing mail if the From address is unauthenticated or spoofed (e.g., using Gmail).
3. Correct SMTP Credentials
Even if you’re using the same settings as other sites, double-check this site’s SMTP configuration (host, port, encryption type, username/password). If you’re using an SMTP plugin, try the “Send Test Email” feature and let us know the result.
4. WPEngine Restrictions
Even though other sites work, there might be one-off settings or restrictions on this particular install. You can reach out to WPEngine support and ask them:
“Can you check if there are any mail sending restrictions or blocks applied to this site specifically? Outgoing mail appears in WP Mail Logging, but it’s not being delivered.”
If you’re still stuck after these checks, we can help you review the current plugin settings step-by-step.
Let us know what you find!
Best regards,
MehmetHi,
Thanks for reaching out!
If your contact forms (including Contact Form 7) show as “sent” in WP Mail Logging, but your client isn’t receiving them (not even in spam), it’s likely due to how email is being handled on your WordPress site.
Here’s how you can fix this:
✅ 1. Install and Set Up One SMTP Plugin
WordPress’s built-in mail function is not reliable across many servers. Please choose and activate only one of the following SMTP plugins (don’t use both at the same time, it may cause conflicts):
– WP Mail SMTP: https://wordpress.org/plugins/wp-mail-smtp/
– Post SMTP: https://wordpress.org/plugins/post-smtp/
These plugins let you route emails through a real SMTP server; such as Gmail, SendGrid, Mailgun, or your web hosting provider.
💡 Tip: To complete the setup, you may need your SMTP server details (SMTP host, port, username, password, etc.). You can get these from your hosting provider’s support team. Just ask them for your SMTP connection details.
✅ 2. Use a Valid “From Email Address”
Make sure your form is using a valid “From” email (like noreply@yourdomain.com), ideally from your domain. Avoid using free emails like @gmail.com as they’re often blocked.
✅ 3. Send a Test Email
After configuring the SMTP plugin, use its built-in Send Test Email feature.
Then test your contact form again to see if emails are now being delivered properly.
Let us know which SMTP plugin you choose and whether you need help with the settings.
Best regards,
MehmetHi,
For this theme to work in the best and smoothest way, the necessary server configuration settings need to be made.
Please make sure that your server configuration settings are as shown in the link below.
https://www.pixelwars.org/forums/topic/system-requirements-for-wordpress-themes/
Server configuration settings can be adjusted through the hosting control panel. You can do this yourself, or you can ask your web hosting provider to make these adjustments for you.
Best regards,
MehmetHi,
Thank you for your message and for carefully following the steps in our documentation.
Regarding the notice you saw during import:
“Redux files: not defined!”
Please don’t worry, our theme does not use Redux Framework, so this message can be safely ignored. It is coming from the plugin “One Click Demo Import” in your setup, but it has no effect on the functionality of the theme.The demo folder you mentioned (content.xml, widgets.wie, customizer.dat) includes all the necessary files to import the demo content successfully. After the import, you can manage layout, fonts, and colors via the Customizer at Appearance > Customize.
To ensure smooth operation, please also make sure your server meets the recommended system settings for WordPress themes. You can check the requirements listed in this forum topic:
System Requirements For WordPress Themes:
https://www.pixelwars.org/forums/topic/system-requirements-for-wordpress-themes/If you still notice anything that looks off or incomplete after the import, feel free to share your website link with us. We’ll be happy to check and assist further.
Best regards,
MehmetHi,
Thank you for your message and for carefully following the steps in our documentation.
Regarding the notice you saw during import:
“Redux files: not defined!”
Please don’t worry, our theme does not use Redux Framework, so this message can be safely ignored. It is coming from the plugin “One Click Demo Import” in your setup, but it has no effect on the functionality of the theme.The demo folder you mentioned (content.xml, widgets.wie, customizer.dat) includes all the necessary files to import the demo content successfully. After the import, you can manage layout, fonts, and colors via the Customizer at Appearance > Customize.
If you still notice anything that looks off or incomplete after the import, feel free to share your website link with us. We’ll be happy to check and assist further.
Best regards,
MehmetHi,
Yes, you can edit the portfolio posts with Elementor.
Here’s how to enable it if you’re having trouble:
1. Go to Elementor > Settings > General in your WordPress dashboard.
2. Make sure that “portfolio” is checked under the “Post Types” section.
3. Click “Save Changes”.Once that’s done:
4. Go to Portfolio > All Portfolio Posts in the dashboard.
5. Hover over a portfolio post and click “Edit with Elementor”.Now you’ll be able to edit the content using Elementor, just like we did in the demo.
Let us know if you need further help!
Best regards,
MehmetHello,
For this theme to work in the best and smoothest way, the necessary server configuration settings need to be made.
Please make sure that your server configuration settings are as shown in the link below.
https://www.pixelwars.org/forums/topic/system-requirements-for-wordpress-themes/
Server configuration settings can be adjusted through the hosting control panel. You can do this yourself, or you can ask your web hosting provider to make these adjustments for you.
Best regards,
MehmetHi,
Thanks for providing access. I’ve checked your hosting control panel and unfortunately, one.com does not allow users to change important PHP configuration settings.
Because of these restrictions, the demo import cannot complete successfully, especially when importing all the media files.
What can you do now?
Please contact one.com support directly and kindly ask them to update the PHP settings for your account as shown in the link below:
https://www.pixelwars.org/forums/topic/system-requirements-for-wordpress-themes/
Once these settings are updated, the demo import should work as expected.
Let me know once it’s done, I’ll be happy to assist further!
Best regards,
MehmetHi,
Thanks for the details, but I wasn’t able to log into the control panel, I’m getting an “Invalid username or password” error.
Could you please double-check the login credentials and share the correct ones in the “Private Content” section again?
Once I’m able to access the panel, I’ll immediately proceed with the server configuration and demo import for you.
Looking forward to your reply.
Best regards,
MehmetHi,
Thanks for the update.
If your hosting provider won’t adjust the configuration settings for you, no problem, I can help with that.
Please share your hosting control panel login details in the “Private Content” section of your reply. I’ll log in and update the necessary server configuration settings for you, then test the demo import process to make sure everything works smoothly.
(You can change your password after the process is complete for extra security.)
I’m here to help!
Best regards,
MehmetHello,
For this theme to work in the best and smoothest way, the necessary server configuration settings need to be made.
Please make sure that your server configuration settings are as shown in the link below.
https://www.pixelwars.org/forums/topic/system-requirements-for-wordpress-themes/
Server configuration settings can be adjusted through the hosting control panel. You can do this yourself, or you can ask your web hosting provider to make these adjustments for you.
Best regards,
MehmetHello,
Thanks for the update.
If you’d like us to take a closer look, please share a temporary WordPress admin login via the “Private Content” section below this message. This will allow us to investigate the issue directly and locate the source of the <body><body/> output.
As soon as we receive the access details, we’ll check and get back to you shortly.
Best regards,
MehmetHi,
Before importing the demo, you need to configure a setting for the “Prime Slider” plugin. To do this, go to the “Appearance > Install Theme Plugins” page. Then, first install and activate the Elementor plugin, followed by the Prime Slider plugin. Once activated, you’ll see Prime Slider in the sidebar menu. Go to the “Core Widgets” subpage from the Prime Slider menu. On this page, click the “Activate All” button. Then, click the “Save Settings” button to save the changes. Now you are ready to import the theme demo.
Theme Doc > Sample Data > Plugin Settings:
https://docs.pixelwars.org/florz.php#sample-dataBest regards,
MehmetHello,
You can find and edit them in the Appearance > Widgets page. They are located in the “Header Social Media Icons” widget area.
Let us know if you need further help!
Best regards,
MehmetHello,
For this theme to work in the best and smoothest way, the necessary server configuration settings need to be made.
Please make sure that your server configuration settings are as shown in the link below.
https://www.pixelwars.org/forums/topic/system-requirements-for-wordpress-themes/
Server configuration settings can be adjusted through the hosting control panel. You can do this yourself, or you can ask your web hosting provider to make these adjustments for you.
Best regards,
MehmetHi,
Thanks for reaching out and sorry to hear about your experience.
The error message you’re seeing:
The package could not be installed. The theme is missing the style.css stylesheet.
Usually means that you’re trying to upload the main ZIP file downloaded from ThemeForest, which contains additional items like sample data and license files, not just the installable WordPress theme.
To resolve this:
Unzip the main package you downloaded from ThemeForest.
Inside, you’ll find a file named something like consultz.zip (Theme > Parent Theme > Consultz > consultz.zip).
Upload that ZIP file via your WordPress dashboard:
Appearance > Themes > Add New Theme > Upload Theme
For more information, you can also check Envato’s official guide here:
Theme is missing the style.css stylesheet error: https://help.market.envato.com/hc/en-us/articles/202821510-Theme-is-missing-the-style-css-stylesheet-error
Please let us know if you need any help identifying the correct file. We’re here to help!
Best regards,
MehmetYou are welcome.
Hello,
For this theme to work in the best and smoothest way, the necessary server configuration settings need to be made.
Please make sure that your server configuration settings are as shown in the link below.
https://www.pixelwars.org/forums/topic/system-requirements-for-wordpress-themes/
Server configuration settings can be adjusted through the hosting control panel. You can do this yourself, or you can ask your web hosting provider to make these adjustments for you.
Best regards,
MehmetHi,
Yes, lazy loading for images is supported by default in WordPress (since version 5.5). This means all <img> tags automatically include the loading=”lazy” attribute unless explicitly disabled by a plugin.
If you’re using the latest version of WordPress, lazy loading should already be active on images throughout your site.
Best regards,
MehmetHi,
Before we dive deeper, please make sure the following two options are enabled in Elementor settings:
1. Go to WP Admin Panel > Elementor > Settings
2. Under the General tab, check both of these:
– Disable Default Colors
– Disable Default FontsThen click Save Changes.
This will ensure Elementor doesn’t override the theme’s font and color styles, which may be the reason for inconsistencies like the one in your first screenshot.
Let me know once that’s done, and I’ll be happy to take another look if needed.
Best regards,
MehmetHi,
Before trying to replicate the Omatic slider, please make sure to activate all core widgets of the Prime Slider plugin:
– Go to your WordPress dashboard.
– Navigate to Prime Slider → Core Widgets.
– Click on “Activate All”.
– Don’t forget to save the settings.After this, you should be able to proceed with replicating or importing the Omatic slider layout without issues.
Let me know if you run into any trouble. I’m here to help.
Best regards,
MehmetHi Antoine,
Just a quick note to let you know that your refund request has been approved on ThemeForest.
Thanks once again for your professionalism and positive attitude throughout the process. I really appreciate it.
Wishing you the best of luck with your website project. And I truly hope to see you again in the future, perhaps with one of our other themes.
Take care and all the best,
MehmetHi,
Thanks for providing access.
I’ve checked your site, and unfortunately, the current server resources are not sufficient for the theme to function properly — especially during the demo import process, which requires higher memory and execution limits.
Given this limitation, I believe the best solution is to proceed with a refund.
You can request a refund on ThemeForest using the link below:
https://themeforest.net/refund_requests/new
When submitting your request, please select the relevant reason and include a link to this support ticket in the explanation.
I’m truly sorry we couldn’t make it work on your current setup, and I appreciate your understanding. Don’t hesitate to reach out again if you need any help in the future.
Kind regards,
MehmetHi,
Thanks for your detailed feedback.
To further investigate and try the demo import myself, could you please share your WordPress admin login credentials in the “Private Content” section below? I’ll check everything carefully.
If a working solution is not possible, I’ll start the refund process accordingly.
Looking forward to your reply.
Best regards,
MehmetHello,
For this theme to work in the best and smoothest way, the necessary server configuration settings need to be made.
Please make sure that your server configuration settings are as shown in the link below.
https://www.pixelwars.org/forums/topic/system-requirements-for-wordpress-themes/
Server configuration settings can be adjusted through the hosting control panel. You can do this yourself, or you can ask your web hosting provider to make these adjustments for you.
Best regards,
MehmetThat’s great to hear — I’m glad clearing the cache solved the issue!
Regarding block visibility:
– By default, WordPress itself doesn’t offer advanced visibility controls (like showing blocks based on user role, login status, device type, etc.).
– So yes, if you want more control in the future, installing a plugin like Block Visibility is a great idea. It integrates directly into the block editor and gives you flexible options.
Without such a plugin, you’d need to rely on simple visibility options (like reusable blocks or hiding blocks with CSS), which are quite limited.
You’re very welcome!
If the Jetpack newsletter subscription form is only visible when you’re logged in, here are a few things to check:
Block Visibility Settings:
Make sure the subscription block (form) is not restricted to logged-in users only. In the block settings, check the “Visibility” or “Advanced” section to ensure it’s set to display for all visitors.Publishing the Block:
Double-check that the changes are published and not just saved as a draft. If you added the form to a widget area or post, make sure it’s live.Caching Issues:
If you’re using a caching plugin or if your hosting provider uses caching, try clearing the cache. Sometimes new elements take a little time to show up due to browser or server-side caching.Jetpack Connection:
Ensure that Jetpack is fully connected to WordPress.com — you can check this under Jetpack → Dashboard in your WordPress admin.After checking those, open the page in an incognito window or a different browser to test again.
Let me know how it goes — happy to help further if needed!
Hi!
Thanks for reaching out.
To allow readers to subscribe to new blog posts by email, we recommend using the free “Subscribe2” or “Jetpack” plugin:
Subscribe2: Simple and focused on email notifications for new posts.
https://wordpress.org/plugins/subscribe2/Jetpack: Offers more features including email subscriptions, stats, and security tools.
https://wordpress.org/plugins/jetpack/After installing your preferred plugin, you can easily:
– Enable email notifications for new blog posts.
– Add a subscribe button or form to your sidebar using a widget.
– And yes! You can also embed the subscribe form at the bottom of each blog post (usually via shortcode or block provided by the plugin).Let us know if you need help setting it up!
Hi,
Thank you for reaching out.
We’re sorry to hear that the plugin you tried caused a fatal error.
For GA4 integration, we recommend using one of the following actively maintained and compatible plugins:
Site Kit by Google: Official plugin by Google. It provides a straightforward way to connect your site with GA4 and other Google services.
https://wordpress.org/plugins/google-site-kit/GA Google Analytics: A lightweight plugin that supports GA4 tracking code.
https://wordpress.org/plugins/ga-google-analytics/Let us know if you’d like step-by-step help with any of these options — we’re happy to assist!
Best regards,
MehmetHi, I’m receiving an incorrect login warning with the WP admin credentials you provided. Could you please check them?
Hello,
For this theme to work in the best and smoothest way, the necessary server configuration settings need to be made.
Please make sure that your server configuration settings are as shown in the link below.
https://www.pixelwars.org/forums/topic/system-requirements-for-wordpress-themes/
Server configuration settings can be adjusted through the hosting control panel. You can do this yourself, or you can ask your web hosting provider to make these adjustments for you.
Best regards,
MehmetHello,
You can request license keys for the pro plugins provided with this theme. These license keys will allow you to update the pro plugins to their latest versions. To request license keys, please use the link below:
https://www.pixelwars.org/forums/topic/tutorlms-pro/
Best regards,
MehmetHello,
I have disabled the “Smooth Scroll” from Customizer > General > Layout. Please check your WordPress site.
Best regards,
MehmetHello,
For this theme to work in the best and smoothest way, the necessary server configuration settings need to be made.
Please make sure that your server configuration settings are as shown in the link below.
https://www.pixelwars.org/forums/topic/system-requirements-for-wordpress-themes/
Server configuration settings can be adjusted through the hosting control panel. You can do this yourself, or you can ask your web hosting provider to make these adjustments for you.
Best regards,
MehmetHello,
If you want to make the logo area fully transparent via the color picker, you can do the following:
In the color picker, clear the hex color code (just delete the code in the input field).
Click Publish to save your changes.
This will remove the background color and make it transparent.
Let me know if you need help locating the correct section — I’ll be happy to guide you!
Hello,
For this theme to work in the best and smoothest way, the necessary server configuration settings need to be made.
Please make sure that your server configuration settings are as shown in the link below.
https://www.pixelwars.org/forums/topic/system-requirements-for-wordpress-themes/
Server configuration settings can be adjusted through the hosting control panel. You can do this yourself, or you can ask your web hosting provider to make these adjustments for you.
Best regards,
MehmetHi,
Thank you again for your detailed feedback and for testing the suggestions.
First, please rest assured:
Yes, our theme is fully compatible with the latest version of WooCommerce.
We follow WooCommerce’s coding standards and hooks, and do not override the core cart or checkout behavior unless strictly necessary.What you’re experiencing (cart icon not updating immediately on the checkout page after product removal) is not a bug in our theme — it’s a known limitation of WooCommerce’s default behavior.
On the checkout page, WooCommerce intentionally disables the live cart updates (wc-cart-fragments) to avoid distractions or conflicts with sensitive operations like payment processing.That’s why even in our official demo, you may see the same behavior — because we don’t modify WooCommerce defaults. Most professional themes keep this behavior untouched for stability and compliance.
If real-time updates on checkout are critical for your use case, we’ve already shared a code snippet that re-enables cart fragments on checkout — which should handle the cart icon updates. If that still doesn’t reflect changes, there might be a conflict or additional customization needed in your specific setup, and we’d be happy to investigate further.
Please let us know if you’d like us to take a closer look at your live site to help.
Thanks again for choosing our theme and sharing your observations — it helps us make the experience even better for everyone.
Best regards,
MehmetHi,
Thanks for reporting the issue.
The problem is caused by an outdated version of the Amelia plugin bundled with the theme. We’ve just released an update for the Efor theme, which includes the latest version of Amelia.
To fix the issue:
1. First, update your Efor theme to the latest version. If you need guidance, check this step-by-step guide:
https://www.pixelwars.org/forums/topic/how-to-update-your-theme/
2. Then go to “Appearance > Install Theme Plugins” and update the Amelia plugin from there.
This should resolve the error completely. If you still need assistance, feel free to let us know — we’re here to help!
Hi,
Glad to hear that the issue is resolved for now.
If you have any other questions in the future, please feel free to open a new topic for each one — this helps us assist you more efficiently.
Thanks again and take care!
Best regards,
MehmetHi,
To change the featured image on any page, please follow these steps:
– Go to your WordPress dashboard.
– Navigate to Pages > All Pages and click Edit on the page you want to update.
– On the right-hand side, find the Featured Image panel.
– Click Set featured image (or Replace featured image if there’s already one set).
– Choose an image from your Media Library or upload a new one.
– Click the Update button to save your changes.Best regards,
Mehmet