-
Search Results
-
Topic: Navigation
Hi there, how can i achieve a menu alignment like this? is there a quick solution in ENFOLD? https://www.screencast.com/t/tfxe4idtY5
If you see the last navigation item we used as button which we want to float on the right side. Please suggest.
Topic: Rounded Buttons
Hi all,
I’m wanting round buttons for a site I’m working on and am having no luck applying some custom CSS code that I’ve found in previous searches.
The button is embedded in a color section, pretty much like the Enfold Construction demo. Likewise, it appears that font size changes to a text block inside the color section aren’t working either, does it have something to do with being embedded in the color section?
Hi @all,
after we updated to Enfold 4.5.4, the custom text on the submit button from the contact form will not appear.
That is not a big problemt, but we generally build german sites and at these pages the text at the submit button is still english -> “Submit”. That looks terrible and is not really serious.
I hope someone can help us. Thanks in advance.Hello,
Currently I’m doing some refreshment work on our website and I came across some issues.
It does happen on some pages not all ( I can not define exactly what causes the issue)
Problems:
1. Preview does not load anything just shows loading animation forever.
2. Update button does the same it turns gray and shows “Updating…” but it never ends.
3. Can not save Template it shows: Error fetching content – please reload the page and try again
4. I tried to remove objects from draft to see if anyone causes problems and finally: I could update website and save the draft as template and also I could load the preview but preview showed old version of website ( like no changes have been made at all)My guess is that all these issues are caused by same reason.
What I already tried to do and did not help:
WP and Enfold updated to latest ver.
Disabled all plugins.
Cleared Cache with W3 Total Cache plugin
Flushed permalinks.Please Help
Topic: Recaptcha plugin SPAM issue
Hi,
the recaptcha plugin you provided seems to have a very low securised implementation. (https://github.com/KriesiMedia/enfold-library/tree/master/integration%20plugins/Enfold/Enfold%20G%20Recaptcha)Spam bots can easily reactivate the disabled/hidden submit button without properly validating the recaptcha process.
Several clients reported us this issue with unwanted porn spams and scams in their emails. Can you dig into this for a quick update?
Thank you.
Topic: avia-button equal width
Hi there,
I tried custom css in the Enfold Child theme to get equal width avia buttons (avia-button). I’ve tried different code in the quick css and in the theme.css (editor) but nothing seems to have effect. I’ve read https://kriesi.at/documentation/enfold/button/ but also that code doesn’t work at maikegerritsen.nl/home. Any tips?
Kind regards,
ChrisTopic: Video Volume control bug
We have a video on our homepage playing in fullscreen MUTED using the fullscreen slider module
We want to allow the visitor to unmute the video if they wish to do so, however the video control from enfold shown are very tiny located in the bottom right corner and disappear as soon as you try to adjust the volume, looks like a bug?
As a workaround we wanted to have one button play the video in a lightbox window with sound so we added this URL to one of the slider button with this parameter ?iframe=true, but instead of opening in the same window in a lightbox, it opens on a new window, how can we fix this?
and more importantly, how can we make the mute button more user friendly on the fullscreen slider so we dont need to use the UNMUTE button workaround
Or is there a different approach you recommend maybe that would be easier to implement and more user friendly?
The checkout process is painfully slow for our customers. From the time a customer clicks the “Place Order” button in the checkout, it takes up to 30 seconds to complete the order. It doesn’t matter if they are paying with a credit card, using a purchase order or the check option, every time it’s a long long delay.
We have several plug-ins on our live site. However, on our development site we only have 2 plugins and the Enfold theme. The plugins we are using are listed below:
- WooCommerce 3.5.4
- UPS WooCommerce Shipping Plug-in by PluginHive
We are using WordPress 5.0.3 with <Enfold Parent 4.5.3 & Enfold Child Theme 1.0
It doesn’t matter if we are on the LIVE site (lots of plugins) or the DEVELOPMENT site (3 basic plugins), the results are the same … a very long wait between clicking the “Place Order” button and the order confirmation page.
The only solution I found so far is to add a preloader so at least it looks like the cart is doing something.
If you’d like to experience the delay I’m talking about, please visit our development site [link provided in private content]
As I mentioned this site only has the necessary plug-ins and themes to function. Feel free to test the checkout process using Check payment.With all my testing, I have narrowed the problem down to one of these 3 things…
- Enfold Theme
- WooCommerce
- UPS Shipping Plugin
-
Could the size of our database (1.1GB) be related to the delay? Any other idea of what may be causing this long delay?
Thank you in advance!
Hello lovely Enfold Team,
i have a strange Problem:
Sometimes the second line of toolbars won´t show when i´m in my textblock editor. There is no second toolline and the “toggle toolbar” is also missing. I can´t narrow it down since i have the problem on both languages and can´t see a pattern why its sometimes showing and why not. : /
I did add some code in my functions.php file which i removed days ago because i thought maybe thats the reason, but nothing changed. Sometimes its showing, sometimes not.
Right now its still commented out.//font and fontsize picker @ editor if ( ! function_exists( 'wdm_add_mce_fontoptions' ) ) { function wdm_add_mce_fontoptions( $buttons ) { array_unshift( $buttons, 'fontselect' ); array_unshift( $buttons, 'fontsizeselect' ); return $buttons; } } add_filter( 'mce_buttons_3', 'wdm_add_mce_fontoptions' ); //Custom fonts showing in editor function load_custom_fonts($init) { $stylesheet_url = '/wp-content/themes/enfold-child/fonts/custom-fonts.css'; if(empty($init['content_css'])) { $init['content_css'] = $stylesheet_url; } else { $init['content_css'] = $init['content_css'].','.$stylesheet_url; } $font_formats = isset($init['font_formats']) ? $init['font_formats'] : 'Trebuchet MS=trebuchet ms'; $custom_fonts = ';'.'WorstveldSling=WorstveldSling'; $init['font_formats'] = $font_formats . $custom_fonts; return $init; } add_filter('tiny_mce_before_init', 'load_custom_fonts'); function load_custom_fonts_frontend() { echo '<link type="text/css" rel="stylesheet" href="/wp-content/themes/enfold-child/fonts/custom-fonts.css">'; } add_action('wp_head', 'load_custom_fonts_frontend'); add_action('admin_head', 'load_custom_fonts_frontend');The only thing left in my functions.php file – regarding to my Problem – is this:
/* Adds Worstveld Sling @ the enfold theme */ add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Worstveld Sling'] = 'Worstveld Sling'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Worstveld Sling'] = 'Worstveld Sling'; return $fonts; }Maybe you have a clue for me or can point me in the right direction? :)
Best regards,
chrisHi as i ask in the Comments Section on Themeforrest here are my Questions again.
1. i want to use the youtube-nocookie URL for using youtube videos in the video element, but after add the link and save setting, include a preview image, only the preview image is shown. By click on the play button only the link to youtube is shown over the preview image and you must click on the link to again to open the video in a new tab.
Is it possible to release it in this way, that you add a youtube no cookie link to a preview image and if you click on the image the video starts in a lightbox?
2. i read here some posts about GA and deactivate it. some as i read is that there a a problem to add the opt out in this way
<a href="javascript:gaOptout()">Disable Google Analytics</a>and it will formated new (as text), aber change something again on the page.2a. does this shortcode with the GA switch works propperly?
so my question is have you (enfold team) a best practice, maybe a tutorial how to add GA GDPR compline to a webproject? include using it anoyminous? i have read something like to add this to the google service section, but i’m not save if this is anoyminous:
<script type="text/javascript"> var gaProperty = 'UA-xxxxx-xx'; var disableStr = 'ga-disable-' + gaProperty; if (document.cookie.indexOf(disableStr + '=true') > -1) { window[disableStr] = true; } function gaOptout() { document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/'; window[disableStr] = true; alert('Das Tracking durch Google Analytics wurde in Ihrem Browser für diese Website deaktiviert.'); } </script>because i read that this must look like something like taht:
<script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-XXXXXXX-X', 'website.de'); ga('set', 'anonymizeIp', true); ga('send', 'pageview'); </script>or that:
<script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-XXXXXXX-YY']); _gaq.push(['_gat._anonymizeIp']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script>thx for a tipp, link or somethings else tom
Hi there,
Found a problem with my shopping cart. Not sure if this is an Enfold issue or a Woocommerce issue? When I open my cart on my desktop device and click on “weiter zur Kasse” (should be on English something like “proceed with checkout” I am immediately directed to http://www.mydomain.com/kasse. When I do the same on a mobile device (tried with IPhone SE and with IPad Mini 4) I am directed to http://www.mydomain.com/mein-konto where the user can chose wether he would likes to login – or alternatively can click on “proceed with Kasse without customer account” (sorry – my version is german and I have no idea what the standard text does look like on English…
This also happens when I click on “zur Kasse gehen” in my menu. Desktop device leads me directly to http://www.mydomain.com/kasse. Mobile devices to http://www.mydomain.com/mein-konto.
My settings do not allow customers to open an account which should force them to order always as guest. Therefore this site does not make any sense at all. But I am pretty sure that I did not modify this button – nor do I know where to change the link on this button.
Do you have an idea about this? Is this a theme issue or a WooCommerce issue?
Thank you!
Topic: Google Map problems
I can’t get Google Maps to work properly.
When I write the adress and press the Longitude/Latitude button, I get this message:Too many requests at once, please wait a few seconds before requesting coordinates again
Waiting makes no difference.
My Enfold version is 4.5.3
I can see that others have had the same problem, but none of the solutions seems to work
Topic: icons
it would be amazing if you add a twitch and snapchat icon to the pool of buttons in enfold. only a thing for you to think about. thanks for your awesome work :)!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! All the best, Alex
Topic: Modal window
Hi!
I want to open a modal window with a “Close” button via text link (like Enfold / Theme Options / Privacy). There are plugins on the internet, but they open the popup automatically when the page starts. But I do not want that. Can someone help me?
Best regards
Morcy

