-
AuthorSearch Results
-
February 5, 2023 at 9:44 pm #1396801
In reply to: show the pictures smaller
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,
MikeFebruary 5, 2023 at 9:13 pm #1396796In reply to: full width logo is blurry
Hey pscheffcenvato,
Thanks for the link to your site, current the logo used is: header04b-300×42.png that is 300×42 not your full size.
I believe the image you want to use is the one linked below, to apply this to your theme settings please go to Enfold Theme Options ▸ Logo and paste the url below, and then save the theme settings with the blue button at the top of the page.
Don’t add the logo by using the upload button as it will set the smaller size.
If you have trouble Please include an admin login in the Private Content area so we can help.Best regards,
MikeFebruary 5, 2023 at 9:04 pm #1396794In reply to: Secondary top menu items unclickable on mobile
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,
MikeFebruary 5, 2023 at 8:30 pm #1396785In reply to: Font does not show on website
Hi,
I tested your font file on my demo site and because it is a OTF file type the Custom Font Manager didn’t extract it it only created a folder so in the setting it looks like an option, so as Ismael pointed out above only Google fonts are allowed in the Custom Font Manager.
I tested this workaround, first extract your font zip to your computer, you will see the font is named insigne – Belda Norm Regular.otf change to belda-font.otf for easier use and upload to your site via FTP, for example: /wp-content/uploads/dynamic_avia/avia_type_fonts/belda-font/belda-font.otf anywhere should be fine, this is what worked for me.
Then add this css to your child theme stylesheet, or your parent theme custom.css file or use a plugin like WPcode plugin this plugin supports PHP code snippets, JavaScript code snippets, & CSS code snippets.@font-face { font-family: 'belda-font'; src: url('/wp-content/uploads/dynamic_avia/avia_type_fonts/belda-font/belda-font.otf') format('opentype'); }Then to use the font you will create another css rule, this example is for H1 special heading element:
h1.av-special-heading-tag { font-family: belda-font; }but you can target any element you wish.
Then clear your browser cache and check, this is the results I received:

Best regards,
MikeFebruary 5, 2023 at 7:36 pm #1396781In reply to: transparent yes or now
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,
MikeFebruary 5, 2023 at 7:02 pm #1396777In reply to: How to remove #top in menu link
Hi,
Please follow these steps to remove the #top from being added to your current page menu links,
Add this code to the end of your child theme functions.php file in Appearance ▸ Editor:function wp_change_aviajs() { wp_dequeue_script( 'avia-default', $template_url.'/js/avia.js', array('jquery')); wp_deregister_script( 'avia-default', $template_url.'/js/avia.js', array('jquery')); wp_enqueue_script( 'avia-default', get_stylesheet_directory_uri().'/js/avia.js', array('jquery')); } add_action( 'wp_enqueue_scripts', 'wp_change_aviajs', 100 );Then in your child theme directory add the directory js via FTP and add this file inside the js directory.
Then clear your browser cache and any cache plugin, and check.
You may need to clear the cache a few times.For anyone interested, in /enfold/js/avia.js on line 276 (v5.4) find:
matching_link = this.$body.find(this.selector + "[href='"+current+"']").attr('href',current+'#top');
and change to:
matching_link = this.$body.find(this.selector + "[href='"+current+"']").attr('href',current);Best regards,
MikeFebruary 5, 2023 at 6:00 pm #1396773In reply to: Front Page not changing
Hey spiritglobe,
Typically you would change the page shown as the homepage at: Enfold Theme Options ▸ Theme Options ▸ Frontpage Settings
If you have the page set here but it’s still not right check the WordPress setting to see if it is conflicting with the theme at: WordPress ▸ Settings ▸ Reading ▸ Your homepage displays
If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.Best regards,
MikeFebruary 5, 2023 at 5:51 pm #1396771In reply to: Seiten aus der Enfold-Suche ausschließen
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,
MikeFebruary 5, 2023 at 5:24 pm #1396764In reply to: cant open 2nd page of search results
No, guys. You are wrong. Main page of the Enfold default little bit same as search results page.
Let look closer. I put link to screencast video in private. This is problem of main theme. When you click to second page of search results you will come to 2nd page of main page, not to 2nd page of search results.February 5, 2023 at 4:05 pm #1396759In reply to: Unable to download theme’s demo
Hi,
Thanks for the login, I looked at WordPress ▸ Dashboard ▸ Tools ▸ Site Health ▸ Info ▸ Server and it looks ok but I didn’t know which demo you want to install.
Did you try our documentation: How to manually import a theme demo, if you did and still have trouble please tell us which demo and include FTP access so we can try.Best regards,
MikeFebruary 5, 2023 at 3:34 pm #1396757In reply to: Edit Front Problem
Hi IBRAHIMBerro,
Thanks for providing us with FTP access.
I was able to modify wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-popup-templates.php and commented out this codes (line 715-7450:array( 'name' => __( 'Background Image', 'avia_framework'), 'desc' => __( 'Select an existing or upload a new background image.', 'avia_framework' ), 'id' => 'overlay_pattern', 'type' => 'select', 'folder' => 'images/background-images/', 'folderlabel' => '', 'group' => 'Select predefined pattern', 'exclude' => array( 'fullsize-', 'gradient' ), 'std' => '', 'lockable' => $lockable, 'required' => array( 'overlay_enable', 'not', '' ), 'subtype' => array( __( 'No Background Image', 'avia_framework') => '', __( 'Upload custom image', 'avia_framework') => 'custom' ) ), array( 'name' => __( 'Custom Pattern', 'avia_framework' ), 'desc' => __( 'Upload your own seamless pattern', 'avia_framework' ), 'id' => 'overlay_custom_pattern', 'type' => 'image', 'fetch' => 'url', 'secondary_img' => true, 'title' => __( 'Insert Pattern', 'avia_framework' ), 'button' => __( 'Insert', 'avia_framework' ), 'std' => '', 'lockable' => $lockable, 'required' => array( 'overlay_pattern', 'equals', 'custom' ) )This is only just a temporary solution and you will need to do this on every theme update since any changes on the parent theme will be overridden during the theme update.
Also, with this code removed, background overlays will not work.
If the hosting provider will still refuse to fix the issue then I would suggest you would consider to migrate to a better hosting provider.Best regards,
NikkoFebruary 5, 2023 at 3:33 pm #1396756Topic: Seiten aus der Enfold-Suche ausschließen
in forum EnfoldKatja
ParticipantHallo,
ich bin seit vielen Jahren zufriedener Enfold-Nutzer und habe nun eine neue Webseite damit aufgesetzt (noch nicht live). Darin habe ich einige Seiten, die als Begleitinformation zu einem Buch per QR-Code bzw. direkten Link aufrufbar sein sollen. Über das Yoast SEO Plugin habe ich die Indizierung dieser Seiten für Suchmaschinen unterbunden. Auch über die Menüs meiner Seite sind sie nicht aufrufbar. Nun jedoch eine Frage: (Wie) kann ich diese Seiten von der Standard-Enfold-Suche (oben im Menü) ausschließen? Am besten wäre ein Ausschluss anhand der URL, z.B. “/tour*”, da die Seiten alle mit dem gleichen Kürzel beginnen, sich dann aber durch eindeutige dreistellige Nummern unterscheiden.
Ist so etwas möglich? Im Forum konnte ich dazu nichts finden.
Danke!
KatjaFebruary 5, 2023 at 3:12 pm #1396755In reply to: Support Anfrage
Hi gregwu,
Yes, we will help you.
Please register here first: https://kriesi.at/support/register/
Once you have successfully registered, post a new topic here: https://kriesi.at/support/forum/enfold/#new-post
Just post the link to this thread so we can continue on the conversation.
Best regards,
NikkoFebruary 5, 2023 at 3:03 pm #1396753Topic: woocommerce booking
in forum EnfoldBELHADJAsma
Participanthello ;
i want use woocommerce booking with enfold theme for my hotel website
it’s possible to add avaibility forum with start day and end date number of adults and child to my home page !!thank you
February 5, 2023 at 2:14 pm #1396742In reply to: Audio button of Video not showing on mobile
Hey gabrimore98,
Thanks for the link to your site, I see that you are using v5.1.2, please update to v5.4 and clear your server, website plugin, and browser cache and check again.
I see that you don’t have a Inserisci un token privato Envato valido in place, please see our documentation: How to generate a Envato Personal Token
Or you can manually update your version of Enfold you can download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New

after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue

then you will see the Theme updated successfully message.
Best regards,
MikeFebruary 5, 2023 at 2:01 pm #1396741In reply to: Portfolio Item & Folders plugin Metadata
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,
MikeFebruary 5, 2023 at 1:55 pm #1396740In reply to: Uncaught SyntaxError: Unexpected token ‘<'
Hi,
Thanks for the video and the login, I network deactivated the Classic Editor plugin and the issue is solved.
This plugin is not needed and the Classic Editor option is built into the theme at Enfold Theme Options ▸ Select Your Editor ▸ Use WP Classic Editor
Please try using the theme option for your network, I reenabled the Classic Editor plugin so please test by disabling it on the network first.
**Update I found that your Classic Editor plugin can stay network activated if you change the theme option to Enfold Theme Options ▸ Select Your Editor ▸ Use WP Classic Editor, but I still recommend removeing the network Classic Editor plugin.Best regards,
MikeFebruary 5, 2023 at 1:34 pm #1396737In reply to: Support Anfrage
This reply has been marked as private.February 5, 2023 at 1:15 pm #1396736In reply to: Burger – can not klick the main link
Hey frasche,
Please use the theme settings at Enfold Theme Options ▸ Main Menu ▸ Burger/Mobile Menu ▸ Clone title menu items to submenu
Then will clone the parent menu item so that in it’s dropdown on mobile you will have the option to go to the parent item link.
On mobile you can’t have the parent item open a drop-down on click and go to the link on click, on mobile there is not hover action.
If you would like to change the parent item name try this solution, if you are not sure how to adjust the code for your site please like yo your site and tell us what new name you wish to use so we can help.
Most often people find using the standard Clone title is fine.Best regards,
MikeFebruary 5, 2023 at 9:12 am #1396711In reply to: How to remove #top in menu link
Hi yundian,
Please try to edit this file: enfold/includes/helper-main-menu.php and remove this line of code (line 198).
'theme_location' => $avia_theme_location,See if this helps.
Best regards,
NikkoFebruary 5, 2023 at 6:35 am #1396707In reply to: Remove Category link
Hi yundian,
You’re welcome :)
We’ll be checking on your other thread.
Thanks for using Enfold and have a great weekend!Best regards,
NikkoFebruary 4, 2023 at 11:45 pm #1396695In reply to: Search icon mobile version
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,
MikeFebruary 4, 2023 at 11:10 pm #1396691In reply to: Social media icons colors on Transparent Header
Hi,
Try this css:#top .social_bookmarks_facebook a:before { color: blue; } #top .social_bookmarks_facebook:hover a:before { color: white; } #top .social_bookmarks_instagram a:before { color: #a67658; } #top .social_bookmarks_instagram:hover a:before { color: white; } #top .social_bookmarks_linkedin a:before { color: #419cca; } #top .social_bookmarks_linkedin:hover a:before { color: white; }before scroll it looks like this:

and on hover it looks like this:

but since on scroll your header is black I don’t know what color you want for not on hover:

on scroll and hover looks good:

Best regards,
MikeFebruary 4, 2023 at 10:35 pm #1396687In reply to: Disable lightbox @media
Hi,
Sorry we were not able to help with this one, 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,
MikeFebruary 4, 2023 at 9:18 pm #1396681In reply to: Secondary top menu items unclickable on mobile
HI Rikard,
No, this is the Enfold secondary menu (the Main Menu is created with the Uber Mega Menu plugin).
Thanks
LyseFebruary 4, 2023 at 5:01 pm #1396666In reply to: Uncaught SyntaxError: Unexpected token ‘<'
Thank you for your help. I was able to migrate the sub-site to a development server so you can have full access to everything you need.
When I moved it, the error is now different. No console errors, but the visual editor doesn’t load unless I publish the post. Nor can I switch to the Enfold Advance editor without first publishing the post.
This issue gets fixed when I activate the 2023 default theme. But then shows back up when I reactivate Enfold.
All the credentials are in the private area below. Please let me know what else I can do to assist.
February 4, 2023 at 4:41 pm #1396665In reply to: Problems after updating to Enfold 5.4
Hi,
Thanks for your feedback and the screenshots, the http:// in the page code that I see in the screenshots are for empty links,

Typically the default http:// or https:// is based on your WordPress install, I would check your
WordPress ▸ Settings ▸ General ▸ Site Address
and
WordPress ▸ Settings ▸ General ▸ WordPress Address
to ensure your site is using https://
I tested on my demo site which is https:// and all default links are also https://
Your third screenshot for http://www.w3.org/2000/svg is an XML namespace defined in the Scalable Vector Graphics (SVG), these do not interfere with https:// as it is incorrect to use https in the namespace values. Those values are defined namespace constants. They are not real URLs. (source)

I also see this is a Block element and not a theme element.Best regards,
MikeFebruary 4, 2023 at 4:15 pm #1396660Hi,
Guenni007 thanks for your input, your css worked good for my demo site:#top #main img[src*=".svg"], #top #main svg { width: 1000px; }But the
AddType image/svg+xml .svg .svgzin my htaccess file didn’t help.
I found this article on how to test your site for Support of SVG as img and added the test to my site and it returned true and it showed the test SVG without add your css for width.

So it seems my site is supporting SVG as a img without the htaccess code.
For some reason the animated SVG that Monika linked to needed a width set with css to show on my site, perhaps this was by design, but since it was linked in the Private Content area I don’t think I should share publicly so you can also test, perhaps Monika will post publicly, but it seems the main issue was the animation was not working, hopefully the steps I posted above will help.
Thanks again Guenni007Best regards,
MikeFebruary 4, 2023 at 4:12 pm #1396659Topic: Unable to download theme’s demo
in forum Enfoldobimedia2
ParticipantHi
I’ve installed the Enfold theme and then the Child theme. Have increased PHP limits, deactivated plugins and still can’t import the demo. I’ve done this many, many times before for other clients and can’t see why this is happening.This is the error …
Error accessing file for download:
cURL error 28: Connection timeout after 10001 msI’ve followed the advice on another similar issue on this support but it didn’t work.
February 4, 2023 at 3:17 pm #1396658In reply to: Uncaught SyntaxError: Unexpected token ‘<'
Thank you for your message.
I did just try the footer widgets; there is a lot of code. I removed every widget and tried again. but ran into the same error.
I’ve also deactivated plugins. I have not tried switching the theme. How does that work with Enfold? If I switch to 2023 from WP, will the settings save for when I switch it back? Or will the entire settings and layouts need to be rebuilt?
-
AuthorSearch Results
-
Search Results
-
Hallo,
ich bin seit vielen Jahren zufriedener Enfold-Nutzer und habe nun eine neue Webseite damit aufgesetzt (noch nicht live). Darin habe ich einige Seiten, die als Begleitinformation zu einem Buch per QR-Code bzw. direkten Link aufrufbar sein sollen. Über das Yoast SEO Plugin habe ich die Indizierung dieser Seiten für Suchmaschinen unterbunden. Auch über die Menüs meiner Seite sind sie nicht aufrufbar. Nun jedoch eine Frage: (Wie) kann ich diese Seiten von der Standard-Enfold-Suche (oben im Menü) ausschließen? Am besten wäre ein Ausschluss anhand der URL, z.B. “/tour*”, da die Seiten alle mit dem gleichen Kürzel beginnen, sich dann aber durch eindeutige dreistellige Nummern unterscheiden.
Ist so etwas möglich? Im Forum konnte ich dazu nichts finden.
Danke!
KatjaTopic: woocommerce booking
hello ;
i want use woocommerce booking with enfold theme for my hotel website
it’s possible to add avaibility forum with start day and end date number of adults and child to my home page !!thank you
Hi
I’ve installed the Enfold theme and then the Child theme. Have increased PHP limits, deactivated plugins and still can’t import the demo. I’ve done this many, many times before for other clients and can’t see why this is happening.This is the error …
Error accessing file for download:
cURL error 28: Connection timeout after 10001 msI’ve followed the advice on another similar issue on this support but it didn’t work.
