-
Search Results
-
Topic: SEO Mystery
HI,
I know it’s not your core business but after several trial with Yoast, XML Sitemaps and finally Enfold SEO feature, the website I work on isn’t appearing on any Search engine… In WP settings, to box allowing search engine to index is OK.The website is : http://www.springen-conseil.fr.
Do you have any ideas?
It would help.
Best
Topic: Custom divider
Hello,
i want te make something like the picure in the link. I have tried te use the custom svg divider en other options in enfold en searched over the internet for a solution but haven’t found anything. I want half an background color under a layout element. See for my idea:
https://brugmedia.nl/wp-content/uploads/2025/04/Screen.pngIs something like this possible in enfold?
on an older post there is no working solution for it.
https://kriesi.at/support/topic/change-color-body-style-on-one-page/
If I look at the differences in the DOM, I notice that it essentially depends on the html classes: html_stretched, html_boxed and html_av-framed-box. These classes are set in the header.php according to the settings of the Enfold options. ( html_stretched, html_boxed and html_av-framed-box ) on body they are set without html_ )
There are some filters – but nothing could bring the solution. (see old topic).A child theme header.php, on the other hand, is quickly created because a file of that name in the child theme root directory is automatically used instead of the parent theme file.
If you only want to use the framed layout for a specific page, it is easier to use the reverse method – set the framed layout setting globally and change it to boxed or stretched for all other pages.
Long story short. Upload to your child-theme route directory a header.php copy and edit it.
search for that line ( around line 26) :$style = $avia_config['box_class'];
if you set the stretched layout – and want to have for a specifc page a boxed layout –
or you have set the boxed layout and want only one page to be in stretched layout – replace it by:if (is_page(array(27))) { $style = 'boxed'; // or 'stretched' } else { $style = $avia_config['box_class']; }
now – as mentioned above it is not easy to get for only some pages a framed layout. So here we go the other way :
Set on Enfold options page a framed layout as global setting – and change the layout to all others that are not that page:if (!is_page(array(27))) { $style = 'stretched'; } else { $style = $avia_config['box_class']; }
now every page now is stretched except the page 27
see here example page : https://clean.webers-testseite.de/impressum/ this page is framed – all others are stretched.
When I change the css file of my child theme, these changes do not show up at the website.
After searching long, long time, it seems my website loads an old version of the css file. In the source code I see this one being loaded:
/wp-content/themes/enfold-child/style.css?ver=7.1The content of this file, when viewed through the browser, is not the same as the file I’m editing through ftp and a code editor at:
/wp-content/themes/enfold-child/style.cssI’ve been trying hard to find out how to load the right css. For example I’ve deleled browser caches, turned off caching plugin, and also set Enfold Performance settings at:
– Turn off css compression/merging
– Turn on delete old css and js filesNothing seemed to help. Finally asked chatgpt which said:
“It seems that the ?ver=7.1 in the URL of your style.css file is added to indicate the version of the file, which is usually done for caching purposes. If you want the CSS to load without the version parameter, there are several ways to do this, depending on how the version parameter is added. Here are a few possible solutions:”
One of the solutions was adding this code:
function custom_enqueue_styles() { wp_enqueue_style( 'enfold-child-style', get_stylesheet_directory_uri() . '/style.css', array(), false, 'all' ); } add_action( 'wp_enqueue_scripts', 'custom_enqueue_styles' );
That seems to do the trick!
What is happening here?
How can I get this fixed without adding the extra code?Using Google, I see quite some people having issues withc css changes not being visible due to Enfold settings.
Please let me know how all his stuff works, and how I can turn it off or set it in such a way that it just works?
Hello,
the MCE icon tool (in the shape of a magic wand) to insert a shortcode in text element no longer appears in my custom layout.
i use it to display ACF custom fields data, like in documentation.With console i see a JS error in admin, I searched and it comes from the fact that the shortcode use the field label of ACF but it’s the field name which is given now, example for a company name :
previously with field name : {acf_field_6745a0c4478f3:Nom_entreprise}
today with field label instead : {acf_field_6745a0c4478f3:Nom de l’entreprise}
And in French the apostrophe in the label value of the field brakes some Avia js array and prevents the display of the MCE icon tool …i fixed it by removing apostrophe in the ACF label field
This appears to be due to a recent update, but is it an Enfold update or an ACF update? i don’t knowMaybe it can help others
Regards
Topic: Table Heading Row Colors
In the Avia Layout Builder, I’m using the Table Content Element on a page. On the Styling tab, I’ve selected Use the table as a Pricing Table + Default + Show empty cells. At this point, the table has a Heading Row at the top, followed by two Default Rows, with two columns.
When viewed, the Heading Row has a red background with white letters.
My question is, how are the colors (background, text) of the Heading Row controlled? Is there any way to adjust those colors, perhaps in the Enfold theme options? Or . . .?
While I’m at it, I searched for documentation for how to use the Table Content Element in the Enfold documentation. Couldn’t find anything. Is there any such “how to” documentation?
Thanks! Lance
I wondered if you might be able to help with a small issue following your switch to SVG for several of the elements in v7 and v7.1 please.
I use my own custom to set the colours and have had no issues with the Search, Return to Top and Shop Cart until v7 updates to SVG, I found another post where you gave the css for the Search icon and I found the Return to Top CSS I needed but I am not having as much luck with the Shop Cart.
Would it be possible for you to post the css you are using with the updated Shop Cart please.Also out of interest are there any other functions you have switched to SVG now that I might have missed?
Thank you ever so much.
Is there a noindex nofollow for a page setting in the Enfold theme?
Sometimes I publish pages so my collaborators can see them but I do not want them to be indexed by search engines. Is there a setting within the Enfold theme itself for this or is it a WordPress setting?
After updating up to Enfold 7.1, the search icon on the main menu on desktop and mobile turned grey. It used to be white, like the white text on the main menu on desktop and the white menu icon on mobile.
I tried resetting Performance in theme options, flushing cache, flushing browser cache and deactivating all plugins.
Please see the staging site with the Enfold 7.1 problems and the live site with Enfold 6.0.9 without problems in the Private Content below.
Can you please help? Thank you.Hello, we’ve noticed an issue across multiple websites we’ve developed using the Enfold theme. Specifically, in Google search results, instead of showing the correct site name, Google often displays the domain name as the site title.
This happens regardless of the SEO plugin used (Yoast SEO, SEOPress, Rank Math, etc.), which suggests the issue might be related to Enfold itself. We have already:
• Set the correct SEO title in the homepage settings.
• Implemented structured data with WebSite schema defining the correct site name.
• Checked Google Search Console for any overriding settings.
• Requested reindexing, but the issue persists.Could this behavior be caused by Enfold? Is there a specific setting or modification required in the theme to ensure Google picks up the correct site name?
Thank you in advance for your help!
After updating to Enfold 7.0 the webserver is going down.
If I check the full processlist of the database I see a hunderds of this queries causing a high load.SELECT post_id, meta_value FROM cc_postmeta WHERE meta_key = '_wp_attached_file' AND meta_value = '/home/domain.be/web/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/svg_entypo-fontello/svg/basket.svg'
SELECT post_id, meta_value FROM cc_postmeta WHERE meta_key = '_wp_attached_file' AND meta_value = '/home/domain.be/web/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/svg_entypo-fontello/svg/search.svg'