Hey pizza_boy,
Thank you for your question, the Enfold theme doesn’t use font-awesome, so I believe that this is added by one of your plugins, unfortunately the login details that you have provided seems to be for FTP and not the WP admin, so I can not examine your plugins.
I recommend disabling all of your plugins and then enable then one at a time to find the plugin that is loading the font-awesome css.
Once you find the plugin you can ask the plugin author how to localy load the css.
Hi,
Your link /wp-admin/update-core.php is a admin page for the WordPress core update info, when not logged in, it is giving a 404 error:
This is a core WordPress function that is giving the result from the core WordPress files and not the theme, this file (URL) is not intended for frontend visitors, this is no one should be going to this URL.
I recommend making no changes, this URL is only for the admin and when you do update the file will behave differently, thus you don’t want to interfere with this.
I believe that you are asking that a theme 404 page is shown for your core WordPress URL, but I don’t feel that it is safe or relevant to do so.
I hope that I have explained this well.
Hi,
The function should go into your child theme functions.php, otherwise when you update it will be overwritten.
For testing you can add it into your Enfold functions.php at the bottom, if this is not working please ensure that your Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer is not activate, or if you are using any caching plugins or optimization plugins please ensure that they are not “deferring” the loading of jQuery scripts.
Please give this a try.
You can select to import the parent theme settings under Enfold->Import/Export. Any custom code you might have added would be have to moved manually into the child.
Hi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
All demos can be installed under Enfold->Demo Import. If you need further help, then please link to the demo you are looking to import: https://kriesi.at/themes/enfold-overview/
Hi, I tried to update Update WP via Envato Market Place per your instruction but it does not work: LayerSlider Animation does not work
Please check on my test site that i updated https://cophammd.com/
Please check admin to see if i did correctly
– Envato Market Place Plugin: already installed
– https://cophammd.com/wp-admin/update-core.php > WP Core: Lastest version (6.4.1)
– Enfold >Theme Option >Theme Update : lastest version (5.6.8)
– Layer Slider 7.9.1 (not lastest version which is 7.9.5)
Credential Login: pl see private content
this is how it looks in the other theme https://caravancitysales.com.au/wp/wp-content/uploads/2023/11/IMG_B58C2EAA8334-1.jpeg
this theme has the following css
.single-car-mpg { display: none;
}
.price-description-single { display: none;
}
.carousel { align: center;
}
.found-cars-cloned { display: none;
}
.related.products {
display: none;
}
li.product-category.product {
width: 21%!important;
}
li.product-category.product {
text-align: center !important;
}
Hi,
Thanks for the screenshots, I see that your EN homepage URL is /home-2/ and your DE homepage URL is /home/
Try looking at your Enfold Theme Options ▸ Theme Options ▸ Frontpage Settings it is probably set to /home-2/ this would be why the EN page is the default.
To link to your DE homepage /home/ try creating a menu link to this page, either by menu choice or as a custom menu item with the URL added manually.
Hi,
Thanks for the login, in your color section in the background video options you will see the check box Hide Video On Mobile Devices?
You can choose to hide the video entirely on Mobile devices and instead display the Section Background image
I enabled this and added your gif to the background image option:
You will note that I used the “scale to fit = contain” option, and in my test the gif plays on mobile:
but I recommend that you recreate your gif so it is in portrait mode for mobile, right now it is in landscape mode so it doesn’t fill the screen.
In the background image options you could use the “scale to fit = stretch” and that would fill the mobile screen, but the center of the gif is off and the quantity is poor at that size.
So try to recreate your gif so it is in portrait mode and if you can improve the quantity that would also be good.
We are seeing that new pages created are not loading all of the elements/layout from the template that was applied to it. However, if we open the page and then save it again without making any changes, everything displays fine. The website is using Enfold 5.6.8 and WordPress 6.4.1.
I have noticed there is a mix of errors with the labhuset.no web site. The site ran WP 6.3.2 at the time I took the below video. Right afterward I upgraded it to WP 6.4 but all the same errors remained.
The video became much longer (24 minutes) than I hoped as multiple issues showed up along the way.
1- I have contacted ManageWP about the errors related to the Worker plugin.
There are various errors there, so it is hard to pinpoint what is really going on.
This is a work in progress. I thought I would share the video just in case you have any thoughts regarding what is going on.
Here is one Enfold error that came up.
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes) in /home/L/Labhusetno//www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-base.php on line 104
This reply was modified 2 years, 5 months ago by SHR Design. Reason: Added an error related to Enfold
another user had the same issue before and applied the solution:
“Avia Template Builder adds an action to template_redirect, as does the plugin. But since the one from Avia has a very low priority, those functions added by the plugin never get called.
Solution: in wp-content/themes/enfold/config-templatebulder/avia-template-builder/php/template-builder.class.php on line 176 I set the priority in the add_action call to 20000.”
I can´t find this line/file in the new theme version – would you be so kind to let me know, where I can find it? :-)
Hi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Hi Enfold
When you look at the shop the text is show different than it is on product pages.
Please help to set the text at the shop is set as on the product pages.
Danish text as bold, then a line brake and UK text as italics but not bold.
I am currently building this website for a client. https://weskoi.nl/
But like every 5 minutes i get a service unavailable error, this happens mostly in wordpress and sometimes on the website.
I have disabled all the plugins and i discovered that probably woocommerce is causing this problem.
The second problem that i have is that when i want to edit a page, the advanced editor does not load. I have to switch to the standard editor and then back to the advanced editor.
1. The date of the post is placed at the bottom of the post, Can it be placed at the top of the post?
I have added this code in WP Code to move the post date on the top:
function move_postmeta(){
?>
<script>
window.addEventListener('load', function() {
var postMetaInfos = document.querySelector('.single-post .post-meta-infos');
var featuredImage = document.querySelector('.big-preview');
if (postMetaInfos && featuredImage) {
featuredImage.parentNode.insertBefore(postMetaInfos, featuredImage);
}
});
</script>
<?php
}
add_action('wp_footer', 'move_postmeta');
Then to adjust the styling, I added this CSS code in Quick CSS:
2. The post image highlights when the mouse hovers over and is clickable to enlarge. Which is unnecessary, can that be turned off?
Yes, I added this CSS code in Quick CSS:
#top.single-post #main .big-preview a {
pointer-events: none;
}
As for the error, it occured when I inserted the code to modify the image size, since it was already declared in functions-enfold.php, but it’s already fixed.
Disabling the Enfold > Performance > File Compression settings should halt the generation of compressed stylesheets and scripts in the dynamic_avia folder. You can also add the following filter in the functions.php file to prevent the creation of post css files.
After disabling compression and the post css file, you can manually delete the contents of the dynamic_avia folder. However, please make sure to create a site backup or restore point first before proceeding with the deletion.
We didn’t find the Enfold theme in the Appearance > Themes panel. Please make sure to extract the actual theme zip file from the package that you have downloaded from Themeforest, before uploading it to the site. If this fails, try to upload the theme via FTP as described in the documentation below.
Thank you for your help Mike! I sent a message to FiboSearch and was told the following.
– Make sure that Enfold Theme Options -> Main Menu -> Append Search Icon To Main Menu (is toggled off).
– FidoSearch bar is added through Appearance -> Menus. To the location it is to be in.
(Menu item options be sure to have Layout: Search bar selected.)
– WooCommerce -> FiboSearch -> Starting tab. Make sure that Search bars Replace them is not checked. As this is not meant to replace the Enfold search, but to replace it.
– WooCommerce -> FiboSearch -> Search bar. I clicked to use the Show submit button. I also used the style Solaris. Use layout Search bar.
FiboSearch support gave me the following CSS. I added some additional code.
I added so much detail so that others whom might come across this thread might also want to try out FiboSearch.
The result is seen here: https://labhuset.no/
The site is slow to show results so that is something I will need to look into.
Author
Search Results
Viewing 30 results - 12,031 through 12,060 (of 244,542 total)