-
AuthorSearch Results
-
April 4, 2025 at 6:48 am #1480755
In reply to: Advanced Styling Not Working
Hi,
1.) The changes in the Advanced Styling panel aren’t taking effect because of an invalid css code in the Quick CSS field:
/* REMOVE HEADER LINE */ #top .av_header_with_border.av_header_transparency #header_main { border: none;The second css rule was not closed correctly -— it was missing a curly brace. We have corrected this. You can also adjust the default menu color in Enfold > General Styling > Logo Area > Logo Area Font Color.
2.) We manually removed the space from the shortcodes again. Unfortunately, we are not yet sure why it’s behaving like this. Let us know if the issue occurs again.
Best regards,
IsmaelApril 4, 2025 at 6:05 am #1480751In reply to: Second Color Section
Hey tsays,
Thank you for the inquiry.
The issue is caused by this css code, which limits the height of all second Color Sections on the site.
#av_section_2 { height: 75vh!important; min-height: 600px!important; display: flex!important; flex-direction: column!important; justify-content: center!important; position: relative!important; overflow: hidden!important; }Please remove the css or adjust it so that it only applies to specific elements on the page.
— https://kriesi.at/documentation/enfold/add-custom-css/
Best regards,
IsmaelApril 4, 2025 at 6:02 am #1480750In reply to: Add notification bar
Hey jnightingale,
Thank you for the inquiry.
You can directly override the header.php file in your child theme or insert widgets into the header area. Another option is to enable the settings in Enfold > Header > Extra Elements > Header Phone Number/Extra Info. Please refer to the documentation for more info.
— https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
IsmaelApril 4, 2025 at 5:33 am #1480748Hey Dana2225,
Thank you for the inquiry.
You will need to import the demo in Enfold > Demo Import. Please note that this will override the current theme options and insert the demo pages. We recommend creating a backup before proceeding.
Best regards,
IsmaelApril 4, 2025 at 5:28 am #1480747In reply to: Sticky element
Hi,
Yes, you can add conditions to the widget area snippet:
add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { if ( is_page( 'contact-us' ) ) { return; } dynamic_sidebar( 'header' ); }Just replace “contact-us” with the slug or ID of the page, or use an array of IDs if you need to exclude multiple pages.
— https://developer.wordpress.org/reference/functions/is_page/
Best regards,
IsmaelApril 4, 2025 at 5:22 am #1480746In reply to: Custom Post Type builder
Hey sitadi,
Thank you for the inquiry.
The site contains an older version of the theme. Please update to version 7.1 via FTP, then enter the name or slug “communes” in Enfold > Layout Builder > Activate Your Custom Post Types For ALB. This will enable the Advanced Layout Builder for the custom post type Communes.
— https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
— https://kriesi.at/documentation/enfold/intro-to-layout-builder/#alb-for-any-post-typeBest regards,
IsmaelApril 3, 2025 at 11:46 pm #1480743In reply to: Advanced Styling Not Working
Thank you! #2 is resolved.
For #1, I did change the color in the Enfold > Theme Options > Transparency Options > Transparency Menu Color area and that did change the color for transparency. I have also changed the color in Advanced Styling for the default menu, but no changes are showing up. That was my main issue. You can see I have a Main Menu element in Advanced Styling with both the color (#314050) and size indicated, but no changes on the front end. Remember too my note: “Also under Advanced Styling, just like the menu font issue, changes to H2 don’t apply on the frontend.”
Thanks!
April 3, 2025 at 8:13 pm #1480733Dana2225
ParticipantHi,
I already have a published WordPress website using an Enfold child theme within an Enfold theme. (https://abridgetoachievement.com/) We would like to change the look of our website to follow the Enfold Medical demo. How can I import the Enfold Medical template into my Enfold child theme? I want to be able to edit the draft pages to then publish them on my current website?
Thanks,
DanaApril 3, 2025 at 7:13 pm #1480732In reply to: How do I remove the margins on my footer widgets
Hey olivierlawrence403,
Please try the following in Quick CSS under Enfold->General Styling:
#footer .widget { margin: 0; }Best regards,
RikardApril 3, 2025 at 4:27 pm #1480720Topic: Theme Editor is missing
in forum Enfoldbenaiah1
ParticipantI’ve been building WP sites for years with Enfold. However, now that I’ve just installed the same for a company I work for, the style sheet seems to be missing. Normally this would be under ‘Appearance’. Now there is nothing.
When I manually try to access wp-admin/theme-editor.php, I get the message:
‘Sorry, you are not allowed to access this page.’How come?
April 3, 2025 at 12:48 pm #1480714No, I was wrong, duplicating the page does not solve the error problem.
I also don’t think it has anything to do with the new Enfold 7.x version, because on the other sites I use Enfold on, I don’t encounter the same problem.
So it seems to be a problem specific to the site in question.Please could you please help me identify the point(s) (tag) causing the error?
Best regards,
OrianoApril 3, 2025 at 12:20 pm #1480712Topic: HTML markup error, after the latest Enfold 7 and 7.1 update
in forum Enfoldorianos
ParticipantAfter the latest Enfold 7 and 7.1 update, many of the pages on the site (see below url) give me this error:
>’It seems you are currently adding some HTML markup or other special characters. Once all HTML tags are closed the preview will be available again. If this message persists please check your input for special characters and try to remove them.
Up to version 6.x I am sure this error did not exist.
Since the pages on which I get this error are so many… it is impossible for me to identify where the error code is.
Do you have any suggestions for finding the solution.Best regards
OrianoApril 3, 2025 at 11:56 am #1480710In reply to: Avia Element Pagination
Hi Mike,
A small update on this. What I want to achieve is not to change the URL structure, but rather that each paginated is pointing towards itself as a canonical page. Then, the Yoast plug-in also advises to add rel=next and rel=prev tags to the pagination buttons.
You can read more about that here: https://yoast.com/help/is-the-plugin-compatible-with-paginated-content/
And here is a Github link to the implementation: https://gist.github.com/amboutwe/66c583d2ef4015a8a244ee3e0e8cd1a0There is also another ticket that links to this: https://kriesi.at/support/topic/alternate-page-with-correct-canonical-tag/.
I tried, based on the documentation, to alter the Yoast plug-in to take the avia-pagination into account when adding it’s logic, both canonical wise and with the prev/next rel’s.
Could you guide me in the right direction with this:
<?php /** * Fix Yoast SEO pagination compatibility with Enfold theme using avia-element-paging. * * This will: * - Override the canonical URL to point to the current paginated URL * - Add correct rel="next" and rel="prev" links for Yoast SEO * - Handle first page navigation properly * - Work with multiple Enfold paginated pages */ // Store max pages in a more efficient way global $avia_pagination_data; $avia_pagination_data = []; // More efficient way to store max pages without creating duplicate queries add_filter('avia_blog_post_query', function($query, $params) { global $avia_pagination_data; // Store the page ID so we can track pagination for multiple pages $page_id = get_the_ID(); if (!isset($avia_pagination_data[$page_id])) { $avia_pagination_data[$page_id] = []; } // We don't need to create a new query object here // Just extract the pagination data from the query args if (isset($query['posts_per_page']) && isset($params['items'])) { $posts_per_page = intval($query['posts_per_page']); $total_items = intval($params['items']); if ($posts_per_page > 0) { $max_pages = ceil($total_items / $posts_per_page); $avia_pagination_data[$page_id]['max_pages'] = $max_pages; } } return $query; }, 20, 2); /** * Helper function to check if we're on an Enfold paginated page */ function is_enfold_paginated_page() { // Check if we're on a singular page that might have pagination if (!is_singular()) { return false; } // Check for the pagination parameter $has_param = isset($_GET['avia-element-paging']); // Also check if the page content contains Enfold pagination elements $content = get_post_field('post_content', get_the_ID()); $has_pagination_element = ( strpos($content, 'blog') !== false || strpos($content, 'portfolio') !== false || strpos($content, 'av_masonry_entries') !== false ); return $has_param || $has_pagination_element; } /** * Get current page and max pages for the current Enfold page */ function get_enfold_pagination_data() { global $avia_pagination_data; $page_id = get_the_ID(); $current_page = isset($_GET['avia-element-paging']) ? intval($_GET['avia-element-paging']) : 1; $max_pages = isset($avia_pagination_data[$page_id]['max_pages']) ? $avia_pagination_data[$page_id]['max_pages'] : 10; // Fallback value return [ 'current' => $current_page, 'max' => $max_pages ]; } /** * Fix canonical URL for Enfold pagination */ add_filter('wpseo_canonical', function($canonical) { if (!is_enfold_paginated_page()) { return $canonical; } $data = get_enfold_pagination_data(); $current_page = $data['current']; // Only modify if we're on a paginated page if ($current_page > 1) { return add_query_arg('avia-element-paging', $current_page, get_permalink()); } return $canonical; }); /** * Fix prev link for Enfold pagination */ add_filter('wpseo_prev_rel_link', function($link) { if (!is_enfold_paginated_page()) { return $link; } $data = get_enfold_pagination_data(); $current_page = $data['current']; if ($current_page > 1) { $prev_page = $current_page - 1; $prev_url = ($prev_page === 1) ? get_permalink() : add_query_arg('avia-element-paging', $prev_page, get_permalink()); return '<link rel="prev" href="' . esc_url($prev_url) . '" />' . PHP_EOL; } return false; }); /** * Fix next link for Enfold pagination */ add_filter('wpseo_next_rel_link', function($link) { if (!is_enfold_paginated_page()) { return $link; } $data = get_enfold_pagination_data(); $current_page = $data['current']; $max_pages = $data['max']; if ($current_page < $max_pages) { $next_page = $current_page + 1; $next_url = add_query_arg('avia-element-paging', $next_page, get_permalink()); return '<link rel="next" href="' . esc_url($next_url) . '" />' . PHP_EOL; } return false; }); /** * Also fix first page navigation (when no pagination parameter is present) */ add_action('wp_head', function() { // Only run on first page (no pagination parameter) if (is_enfold_paginated_page() && !isset($_GET['avia-element-paging'])) { $data = get_enfold_pagination_data(); $max_pages = $data['max']; // Only add next link if we have more than one page if ($max_pages > 1) { $next_url = add_query_arg('avia-element-paging', 2, get_permalink()); echo '<link rel="next" href="' . esc_url($next_url) . '" />' . PHP_EOL; } } }, 999); // Run late to ensure it doesn't get overriddenWould be greatly appreciated, as this would solve the GSC notifications and let the pagination target to itself.
Kind regards,
JoostApril 3, 2025 at 9:16 am #1480704In reply to: Booking System shortcode
Maybe this was a human error. The wpml-config.xml was missing from the enfold theme folder. I have put it back there. Can you try again? Or does it have nothing to do with it?
April 3, 2025 at 8:27 am #1480698In reply to: Background colour of masonry ALB element
Hey Tim,
Thank you for the inquiry.
Have you tried moving the element inside a Color Section and applying a background color? If you need the section container to be full-width, you can make this modification.
— https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width
You can also target the inner av-masonry-container.
.av-masonry-container { background: red; }Best regards,
IsmaelApril 3, 2025 at 7:02 am #1480685In reply to: Advanced Styling Not Working
Hey imagestudios,
Thank you for the inquiry.
1.) Since the page has a transparent header, the main menu color must be adjusted in Enfold > Theme Options > Transparency Options > Transparency Menu Color. You can adjust the menu style for the default header in the Advanced Styling panel.
2.) The issue is due to the br tag in the Prepended static text field. We recommended removing the br tag because this also creates line breaks on the rotating text. To fix the issue, we enabled the debug mode and manually adjusted the rotator shortcode in the debug field.
Best regards,
IsmaelApril 3, 2025 at 6:43 am #1480683In reply to: Button not aligning / 3 of columns
Hi,
Thank you for the update.
You can adjust the theme colors in the Enfold > General Styling panel. Open the Main Content or Alternate Content tab, then adjust the value of the Background Color field. You can also adjust the font color there.
Best regards,
IsmaelApril 2, 2025 at 10:46 pm #1480673In reply to: Re Captcha trouble
Hi,
Glad we were able to 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.Best regards,
MikeApril 2, 2025 at 5:42 pm #1480657In reply to: Re Captcha trouble
Hi Mike, i used the WP Forms plugin and recaptcha works well, it seems enfold native form has a conflict for some strange reasons.
April 2, 2025 at 12:19 pm #1480644In reply to: Avia menu with arrows creates a fallback
You are great!
I did set it under Menus / Main Menu Enfold. Cool. So the little line appeared, Fallback in the code dissappeared.
Waiting for the little arrow, bit evtl. it appears with more then one page in the menu.Thanks a huge lot!
kacom
April 2, 2025 at 12:00 pm #1480640Hi,
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.Best regards,
MikeApril 2, 2025 at 11:53 am #1480639In reply to: Uploaded google font doesn’t work on iPhone/iPad
Ich habe auch WP Super Cache installiert, jetzt aber auch noch mal das Mergin bei CSS und JS neu generieren lassen, wie beschreiben. Auch nach dem erneuten löschen des Verlaufs auf dem iPhone leider kein Erfolg. Mit vorinstallierten Schriften von Enfold gibt es das Problem übrigens nicht …
April 2, 2025 at 11:45 am #1480637In reply to: Uploaded google font doesn’t work on iPhone/iPad
ich sehe du hast die Enfold Option des Merging bei css und js eingestellt. Hast du das mal neu generieren lassen?
Unter Performance – ganz unten.
Im Übrigen wird deine Seite in meinem Desktop Safari auch nicht mit der Schrift dargestellt.
April 2, 2025 at 10:59 am #1480633In reply to: Uploaded google font doesn’t work on iPhone/iPad
bitte lies den vorherigen Text von mir – den habe ich bearbeitet.
https://enfold.webers-webdesign.de/PS; warum css code setzen?
Definiere doch einfach über die Enfold Optionen unter Allgemeines Styling – Schriften deine Headings mit dem Font.
PS: der font-family name wird dir im Übrigen im Font-Manager angezeigt:
April 2, 2025 at 10:14 am #1480629Topic: Avia menu with arrows creates a fallback
in forum Enfoldkacom
ParticipantHello,
i have a multisite working on.
Did all my design on one of the pages, exported it and imported it in the other two pages.
First page took the menu with the little arrow quite fine, the other two are missing the arrow.
Checked all my adjustments in the theme options, they are alle exactly the same (I think… perhaps I miss something?), so I do not find the point.
So in the right design it says:
<div class=”avia-menu av-main-nav-wrap”>the wrong says:
<div class=”avia-menu fallback_menu av-main-nav-wrap”>Why does it switch to fallback?
What did I miss, what can I change?
I am on Enfold 7.1
THANK YOU
April 2, 2025 at 9:15 am #1480625In reply to: Inquiry for Website Project
Hey Justice,
Thanks for reaching out. We are not a web development/design agency, but we do develop a WordPress theme that might be suitable for your project: https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990
Best regards,
RikardApril 2, 2025 at 8:03 am #1480622Hi Ismael, thanks for reaching out.
Unfortunately we cannot try and solve it right now, since it’s a website that should have been launched yesterday. Due to another software developer not getting his external part up and running, I need to make some last minute changes and launch the site today; it’s too busy right now since it’s a very important debt counseling website in the southern region of our country.
It’s fine to get things done for the time being with the ‘Clear Cache for Me’ plugin and/or editing through the css field in Enfold theme settings.
If necessary, I’ll get back to this ticket later again.
April 2, 2025 at 5:41 am #1480611In reply to: Sticky element
Hi,
Thank you for the update.
Instead of placing the search widget inside a Color Section, try inserting it directly into the header using a widget or widget area. Please refer to this documentation for more info.
— https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
This is the html of the search element, which can be placed inside a Text widget: https://pastebin.com/K8x7qu9g
Best regards,
IsmaelApril 1, 2025 at 11:42 pm #1480606Hi,
Glad we were able to 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.Best regards,
MikeApril 1, 2025 at 10:09 pm #1480602 -
AuthorSearch Results
-
Search Results
-
Hi,
I already have a published WordPress website using an Enfold child theme within an Enfold theme. (https://abridgetoachievement.com/) We would like to change the look of our website to follow the Enfold Medical demo. How can I import the Enfold Medical template into my Enfold child theme? I want to be able to edit the draft pages to then publish them on my current website?
Thanks,
DanaTopic: Theme Editor is missing
I’ve been building WP sites for years with Enfold. However, now that I’ve just installed the same for a company I work for, the style sheet seems to be missing. Normally this would be under ‘Appearance’. Now there is nothing.
When I manually try to access wp-admin/theme-editor.php, I get the message:
‘Sorry, you are not allowed to access this page.’How come?
After the latest Enfold 7 and 7.1 update, many of the pages on the site (see below url) give me this error:
>’It seems you are currently adding some HTML markup or other special characters. Once all HTML tags are closed the preview will be available again. If this message persists please check your input for special characters and try to remove them.
Up to version 6.x I am sure this error did not exist.
Since the pages on which I get this error are so many… it is impossible for me to identify where the error code is.
Do you have any suggestions for finding the solution.Best regards
OrianoHello,
i have a multisite working on.
Did all my design on one of the pages, exported it and imported it in the other two pages.
First page took the menu with the little arrow quite fine, the other two are missing the arrow.
Checked all my adjustments in the theme options, they are alle exactly the same (I think… perhaps I miss something?), so I do not find the point.
So in the right design it says:
<div class=”avia-menu av-main-nav-wrap”>the wrong says:
<div class=”avia-menu fallback_menu av-main-nav-wrap”>Why does it switch to fallback?
What did I miss, what can I change?
I am on Enfold 7.1
THANK YOU
