Good catch GWS. I got about 20 yesterday and the errors started as Ajax and are now showing Enfold. I think there’s a 6.0.2 WordPress now.
Thoughts Kriesi team?
Hi, I have the same problem. Google Search Console says that the URL …/wp-content/themes/enfold/framework/ is returning a 403 error. This URL is not indexed but apparently there are 4 pages which refer to it: the home page, a product, a blog article and a category page. I´ll give you the 4 links down below.
Best regards,
Sara
Rikard,
We are experiencing something similar here. A bunch of emails from Google Search Console about websites with indexing errors in Google Analytics > Page Indexing > Blocked due to other 4xx issue. The URLs for all of them include /wp-admin/admin-ajax.[php]. I researched it a bit and the suggestion is that it is the theme allowing this. Not sure if that is true or not. The websites are hosted across 4 different hosting providers but all are using Enfold. It is hard to determine if this error is due to the theme, WordPress, or server, or even if Google changed something. The email message is below. I don’t expect you to have an answer, but just want you all to be aware this is happening all of the sudden just today. Weird!
Search Console has identified that your site is affected by 1 Page indexing issue(s). The following issues were found on your site.
Top Issues
• Blocked due to other 4xx issue
We recommend that you fix these issues when possible to enable the best experience and coverage in Google Search.
Hi Thore,
Thanks for contacting us!
You are currently using a very old version of Enfold which is not compatible with your WordPress version. Updating the theme to the latest version 5.1.2 would fix the issue.
Please refer to this post – https://kriesi.at/documentation/enfold/theme-update/ and update Enfold to the latest version.
If you have any other questions or issues, please register to our support forum – https://kriesi.at/support/register/ using your purchase code and start new threads under Enfold sub forum :)
Regards,
Yigit
Hello everyone,
For those who are interested, you can download the latest version of the Italian language
Download here
Translation: Italian language
Version: Enfold 5.1.2
Strings: 5916
All translations are synchronised with the source files
Regards
Luigi
Thore GarbersGuest
hello at Kriesi,
I am running Enfold 3.6 and I am not able to adit my Portfolio items in my dashboard any more.
There is a rotating circle in the layout builder.
Could you have a look at this please.
thank you very much in advance.
It literally just changed for several of the sitsd. Now it’s /wp-content/themes/enfold/framework/ and the error is “Blocked due to access forbidden (403).”
What do you think?
Hey Eleina,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 479px) {
.responsive #top #wrap_all #header .social_bookmarks {
display: block;
}
}
Best regards,
Rikard
Hi,
Thanks for the update. I’ll close this thread for now then, please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Volkmar HaderGuest
Hallo, für unsere neue Website, die erstellen werde, möchte ich gerne euer Theme “Enfold” verwenden. Mein Chef möchte gerne zusätzlich das AddOn “userlike” für eine Live-Chat-Funktion integrieren, da diese DSGVO-konform ist. Verträgt sich das miteinander?
Hello, I would like to use your theme “Enfold” for our new website that I will create. My boss would also like to integrate the “userlike” add-on for a live chat function, as this is GDPR-compliant. Does this go together?
or why don’t you choose on masonry all portfolio terms you have – and just hide those sort-buttons via css.
.av-masonry-sort .animation_sort_button {
display: none;
}
Then All will show all – only the non wanted Sort Options are not seen ( like the home-sort )
f.e.: on that page here: https://kriesi.at/themes/enfold-2017/elements/masonry/
if you set :
.av-masonry-sort .illustration_sort_button {
display: none;
}
The All Button will show illustrations too – but the sort option will not be there
this comes from your search-box : View Our Stock
you embedded that script via code-block – maybe you try better to embed it via child-theme functions.php
i don’t know where inline js is loaded – but if it loaded before jQuery is present then an error message would certainly be expected.
Do you load your jQuery in the footer? See: Enfold Child – Performance : “Load jQuery In Your Footer” Option
Edit: if i look to that ( not minified ) script : https://apsr.autoplay.co.nz/Content/js/loader.search.box.js it seems that the script is loading its own jQuery from different external sources – maybe that comes into conflict with Enfold jQuery.
Hello dear support!
We like to use landing page https://kriesi.at/themes/enfold-landing-page/ with a video instead of picture.
What size would be good for
Desktop-version
iPad Version
mobile version
Thanks a lot in advance for a quick reply :-)
Hey eduardodelat,
We don’t have any tutorials for that unfortunately. But you could import the demo so that you can check how it’s done? If you just want one or a few pages, then you can enable debug so that you can see the Layout Builder shortcodes: https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#debug-mode. Then let us know which pages you are interested in, and we’ll give you the shortcodes for them.
Best regards,
Rikard
Hey Maw87,
Thank you for the info.
Have you tried implementing the suggested changes in the avia_google_recaptcha_front.js file?
// https://gist.github.com/matzeeable/42b5f167bd5cc17c010bfde928a59111
You can replace this code around line 75..
var script = document.createElement('script');
script.id = 'avia-google-recaptcha-api-script';
script.type = 'text/javascript';
script.src = AviaReCAPTCHA_front.avia_api_script;
,.. with..
(window.consentApi?.unblock("https://www.gstatic.com/recaptcha/") || Promise.resolve()).then(() =>
{
var i = document.createElement('script');
i.id = 'avia-google-recaptcha-api-script';
i.type = 'text/javascript';
i.src = AviaReCAPTCHA_front.avia_api_script;
document.body.appendChild(i)
});
Related thread: https://kriesi.at/support/topic/add-support-for-enfold-recaptcha-real-cookie-banner/
Best regards,
Ismael
Hey neon2020,
Thank you for the inquiry.
You can add this css code to move the slide arrow at the bottom of the slider and align it to the center.
#top .avia-smallarrow-slider .avia-slideshow-arrows {
position: absolute;
width: 51px;
top: 100%;
left: 50%;
height: 24px;
transform: translateX(-50%);
right: auto;
}
Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings.
Best regards,
Ismael
ok – this moves to my enfold snippet list ;) – Thanks
Hey Tilman,
Thank you for the inquiry.
1-2.) You may need to manually insert the custom menu items directly in the enfold/includes/helper-main-menu.php template file or insert a text widget and placed it inside the header using action hooks. And copy the css or styles from the existing site.
Please check the documentation below for more info on how to use hooks in order to insert a widget area inside the header.
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
This is the actual html of the icon menu items from the TYPO3 site.
<div class="NavService-wrap" role="navigation">
<div class="NavService-item NavService-item--search">
<a class="NavService-item-link js-navSearch" href="/suche/">
<span class="NavService-item-title">Suche</span>
</a></div>
<div class="NavService-item NavService-item--contactperson">
<a class="NavService-item-link" href="/ansprechpartner/">
<span class="NavService-item-title">Ansprechpartner</span>
</a></div>
<div class="NavService-item NavService-item--contactform">
<a class="NavService-item-link" href="/fallmeldung/">
<span class="NavService-item-title">Fallmeldung</span>
</a></div>
</div>
Best regards,
Ismael
Hey Guenter,
Thank you for the inquiry.
You can use the avf_fallback_fonts_array filter to define your own fallback fonts, defaults to 'Helvetica', 'Arial', 'sans-serif'.
add_filter('avf_fallback_fonts_array', function($fallback, $selected_font_family) {
$default_font = avia_get_option( 'default_font' );
$google_font = avia_get_option( 'google_webfont' );
return array(
'Helvetica',
'Arial',
'sans-serif'
);
}, 10, 2);
Defined on enfold/framework/php/class-style-generator.php file.
Best regards,
Ismael
Hi,
The reCAPTCHA widget in the contact form is working correctly on both Chrome and Firefox when we tested it. Have you tried adjusting the Enfold > Privacy & Cookies > Default Cookie Behavior to the first or second option?
Do you see any errors in the browser console when testing?
Best regards,
Ismael
Hi,
@Guenni007: We will forward the modification and include it in the next patch.. Please continue here: https://kriesi.at/support/topic/selfhosted-font-loading-via-custom-font-manager/#post-1363341
@Luisgasser: After activating the child theme, you have to import the parent theme options in the Enfold > Import/Export panel. Please check the documentation below for more info.
// https://kriesi.at/documentation/enfold/child-theme/#how-child-themes-work
Best regards,
Ismael
Hi,
Glad Ismael could help, and thanks for sharing your final code, 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,
Mike
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.
Best regards,
Mike
Hi,
Sorry, but unfortunately this seems to be clearly caused by your ad network Ezoic, your staging site without Ezoic did not have the error (July 8), it is out of the scope of our support to correct a conflict caused by a third party plugin or script, typically with such conflicts we would recommend not using the conflicting plugin or script, or using a different one that doesn’t cause a conflict, but with this being your revenue source I can understand you may not be able to do this. In this case you can try following Ismael’s advice and not use the theme merging and use a third party caching plugin instead.
Best regards,
Mike
Hi,
I have an uncaught type error happened. media elements are not a function.
see the screenshot from the link below.
https://snipboard.io/pvlIet.jpg
Is it an option that I have to opt-out from the Enfold>Performance
Thanks to let me know.
Dear Support Team:
I have created a main menu, with submenus, on my website, where the parent menu items (except for Home) are custom links pointing to the first child submenu Page under that parent (I like this UX technique). For example, the About menu item is a custom link (rather than a Page) that points to the actual Page for first child submenu item, Our Office Highlights. So if someone clicked/tapped on About, it would take them to the Our Office Highlight page. So there are no actual Pages for these main menu items (parents). And the menu structure under Appearance > Menus does reflect this hierarchical menu structure.
However, the breadcrumbs do not, in that they do not display the parent menu item when a child submenu is chosen. So if the submenu “Meet Us” under the About menu is chosen and we are taken to that page, the breadcrumbs display “Home / Meet Us”, rather than “Home / About / Meet Us”. Can you help me please to include the parents in the breadcrumbs (and of course make them links to those first child submenu pages).
Thank you,
Gary
P.S. My login to Support says that my “support license has expired on December 7th, 2021”, but this is not true. In my ThemeForest login, it shows I have “3 months 25 Nov 2022 of support remaining” for my “Regular License” of “Enfold – Responsive Multi-Purpose Theme”. How do I rectify this?
-
This topic was modified 3 years, 7 months ago by
garysch37.
-
This topic was modified 3 years, 7 months ago by
garysch37.
Mike SzczysGuest
Hello, I tried to post a support ticket and have been told my license expired. We have purchased the Enfold theme twice, on of them in August of 2021, the other in January of this year. I wonder if the older license is causing this issue? I’ll place the keys in the private area
Hi,
Thanks for letting us know, I’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hello! Is there a tutorial to see how to make the elements of the demo pages? For example in the demo “Enfold Paralax” the main image of home, when you scroll down, the text goes to the edges, I want to know how to do that effect and others.