Forum Replies Created
-
AuthorPosts
-
Hey L!
Please add this code to your child theme functions.php file to change the version number:
add_filter( 'avf_google_maps_source', 'avia_maps_version_number', 10, 1); function avia_maps_version_number( $api_src ) { $api_src['version'] = '3.32'; return $api_src; }
Regards,
PeterJune 15, 2018 at 7:22 pm in reply to: Enfold Child Theme makes the website no secure padlock #973419Hi!
The issue is caused by the SuperCache plugin. Please try to clear the supercache cache and your browser cache.
Best regards,
PeterJune 15, 2018 at 7:19 pm in reply to: Partner/Logo Element using insecure images instead of https #973418Hey jasaunders!
Enfold just fetches the image url from wordpress. If wordpress returns a http:// url Enfold will use it for the the logo element. Please try to install this plugin: https://de.wordpress.org/plugins/really-simple-ssl/ and check if it fixes the issue.
Cheers!
PeterHey StefanMayrhofer!
Bitte versuche das Theme über ftp neu zu installieren – hierzu:
1) die Enfold Dateien von Themeorest laden und entpacken,
2) den wp-content/themes/enfold Ordner in enfold_bak umbenennen,
3) den entpackten Enfold-Ordner in den wp-content/themes/ Ordner mit ftp hochladen.Wenn dies nicht hilft, erstelle uns bitte einen Admin Account und wir sehen uns die Sache an.
Best regards,
PeterJune 15, 2018 at 7:08 pm in reply to: Slide-Show volle Breite Hintergrundfarbe für Textfeld ändern #973416Hi!
Bitte versuche folgenden Code in das Quick CSS Feld einzutragen:#top.home .caption_framed .slideshow_caption .avia-caption-content p, #top.home .caption_framed .slideshow_caption .avia-caption-title, #top.home .avia-caption .avia-caption-content p, #top.home .avia-caption .avia-caption-title { background: #fff; filter: alpha(opacity = 80); background: rgba(255, 255, 255, 0.5); }
Cheers!
PeterHey!
I’m not sure if my code triggers the error. Please try to add this code to the functions.php fileadd_filter( 'avf_google_maps_data', 'avia_maps_widget_saturation', 999, 4 ); function avia_maps_widget_saturation ( $data, $context, $object, $args ) { return $data; }
Does the warning disappear with this code?
Cheers!
PeterHi,
Ok, I’ll leave this thread open for now :)
Best regards,
DudeHey Esther,
Yes, you can translate these terms by using a plugin like https://de.wordpress.org/plugins/loco-translate/
Best regards,
DudeHey Bewohnerfrei!
Du könntest einen Post Slider (Demo https://kriesi.at/themes/enfold-2017/elements/post-slider/ ) verwenden, um mehrere Einträge nebeneinander in einem Karussell darzustellen. Als Alternative bleibt nur der von Dir bereits erwähnte Content Slider. Beide Slider können den Effekt nicht genau reproduzieren, aber ermöglichen zumindest eine ähnliche Darstellungsweise. Du könntest auch einen Accordion-Slider wie https://kriesi.at/themes/enfold-2017/elements/accordion-slider/ probieren, um einen anderen Effekt zu erzeugen.
LG,
PeterJune 14, 2018 at 9:02 pm in reply to: Avia Layout Builder, custom post types and post type templates #973001Hi,
Yes, the builder uses its own templates and overwrites other templates.
Best regards,
DudeHey Rainer Telesko,
Ja Enfold unterstützt die Standard-Wordpress hooks und kann daher auch mit JS/PHP Code befüllt werden. Hierzu kann entweder das Code-Element des Template Builders genutzt werden oder ihr programmiert zB ein Plugin oder Child Theme und verwendet hooks wie https://developer.wordpress.org/reference/functions/wp_enqueue_script/ um eure scripts zu laden.
Best regards,
DudeHey Bkag,
Yes it’s possible but you must hack the theme files and it’s not update safe (thus you must modify the theme file after every update). If we get more request for such a feature we might add an option but for now you must modify the file directly. Open up enfold\framework\js\conditional_load\avia_google_maps_front.js and replace line 134
confirm.on('click', object.AviaMapsLoadConfirmed );
with
confirm.on('dblclick', object.AviaMapsLoadConfirmed );
Best regards,
DudeJune 14, 2018 at 8:09 pm in reply to: Modal window with privacy and cookie info in German Language? #972988Hi,
Einfach unter Enfold > Theme Optionen > Privacy and Cookies die Checkbox bei “Modal window with privacy and cookie info” aktivieren. Dann werden unten neue Optionen eingeblendet, wo die englischen Texte erscheinen (Überschrift, Tab Beschriftung und Tab Inhalt). Einfach dort die Texte austauschen und mit + neue Texte hinzufügen und mit X löschen.
Best regards,
DudeHey!
Great, let us know if you need more help :)
Best regards,
PeterJune 14, 2018 at 7:20 pm in reply to: Comment Form – Error: You must agree to our privacy policy…….Return Link? #972968Hi,
I didn’t test this code but you can try to use the javascript go back method like:add_filter('avf_privacy_comment_checkbox_error_message', 'avia_privacy_comment_checkbox_error_message', 10, 1); function avia_privacy_comment_checkbox_error_message($message) { return "Error: You must agree to our privacy policy…. <a href='#' onclick='window.history.back()'>Back to previous page.</a>"; }
Best regards,
DudeHey havi,
This is the default wordpress comment form validation function. You could install a plugin like: https://de.wordpress.org/plugins/wp-ajaxify-comments/ to validate the comments on the same page.
If you just want to edit the error message you can try to add this code to the child theme functions.php file:
add_filter('avf_privacy_comment_checkbox_error_message', 'avia_privacy_comment_checkbox_error_message', 10, 1); function avia_privacy_comment_checkbox_error_message($message) { $url = htmlspecialchars($_SERVER['HTTP_REFERER']); return "Error: You must agree to our privacy policy…. <a href='$url'>Back to previous page.</a>"; }
However I’m no sure if this code will work with the current theme version or if you must wait for the next theme update (because the filter “avf_privacy_comment_checkbox_error_message” might be missing in the current version).
Best regards,
DudeJune 14, 2018 at 7:07 pm in reply to: Enfold Child Theme makes the website no secure padlock #972964Hi,
I fixed it by deactivating the super cache plugin and by regenerating the enfold dynamic stylesheets.
Best regards,
DudeHi!
Please try to add this code to the child theme:
add_filter( 'avf_google_maps_data', 'avia_maps_widget_saturation', 999, 4 ); function avia_maps_widget_saturation ( $data, $context, $object, $args ) { $data['saturation'] = '-50'; return $data; }
Maybe you need to write -50 instead of ‘-50’. It should work even if you update the parent theme.
Cheers!
PeterHey!
Great – glad we could help you :)
Regards,
PeterHi,
Bitte erstelle mir einen Admin-Zugang – ich werde mir die Konfiguration schnellstmöglich ansehen und nach einer Lösung suchen!
LG,
DudeHi,
Yes because the default Enfold contact form does not support recaptcha. If you want to use it with contact form 7 you can follow the instructions here: https://contactform7.com/recaptcha/Personally I use Formidable on my websites but it’s not necessary for simple forms.
Best regards,
DudeHey!
Glad you solved it :)
Cheers!
PeterHey Kevin!
I guess you found a solution because the title is tagged as solved :)
Regards,
PeterHey!
Ich habe Dir einmal den Demo Text importiert. Du kannst die Seite nun hier bearbeiten: https://kueper-rechtsanwalt.de/wp-admin/post.php?post=126&action=editDas Menü kann nun hier bearbeitet werden: https://kueper-rechtsanwalt.de/wp-admin/nav-menus.php
Cheers!
PeterHey!
Kannst Du mir bitte einen Admin Account einrichten und einen Link zu deiner Seite schicken (wo der Fehler auftritt) – ich sehe mir die Sache schnellstmöglich an.
Best regards,
PeterHi kynologisch!
Unfortunately there’s no other reliable solution to block spam. I’d recommend to activate Google Recapcha again and to add some information to your privacy policy. Because I assume you run a German website I searched the popular https://datenschutz-generator.de/ for a recaptcha text snippet and found it (go to “Social Media, Tools und fremde Inhalte” > “Nutzen Sie das ReCaptcha von Google zwecks Erkennung von Bots?” for the text snippet).Best regards,
PeterJune 13, 2018 at 1:04 pm in reply to: Menü-Darstellung: kann die Mobile-Darstellung auch auf Desktop angezeigt werden? #972270Hey!
1) Ah ok, nein in dieser Konfiguration ist eine Umstellung leider nicht möglich. Das Sidebar-Menü ist von der Konzeption her nur für kleine (One-Pager) Seiten ausgelegt – zB wie hier: https://kriesi.at/themes/enfold-consulting/ oder hier https://kriesi.at/themes/enfold-photography/
2) Bzgl zweite Anweisung – ich habe mich verklickt – hätte hier hinein sollen: https://kriesi.at/support/topic/disable-google-fonts/ und hat nichts mit diesem Thread zu tun :)
Best regards,
PeterJune 13, 2018 at 12:51 pm in reply to: Unterschiedliche Logos auf Desktop und Mobile, und pro Sprache auf Mobile #972265Hey Esther,
Technisch wäre das schon machbar, würde aber zeitaufwendige Theme-Anpassungen erfordern. Enfold bietet diese Funktionen ohne Anpassungen leider nicht an.
LG,
DudeHey Eike,
Bitte überprüfe einmal, ob du im Icon-Liste Element die Linkfarbe manuell auf schwarz gesetzt hast.
LG,
DudeHi,
Ok I found the problem – I added this code to the functions.php file:function enqueue_av_quiz_assets() { wp_enqueue_script('av_quiz_assets', 'http://drnachonline.com/wp-content/plugins/lifterlms/assets/js/llms-quiz.min.js'); } add_action('wp_enqueue_scripts', 'enqueue_av_quiz_assets', 9999);
and replaced:
avia_enqueue_script_conditionally( $condition , 'wp-mediaelement'); avia_enqueue_style_conditionally( $condition2 , 'wp-mediaelement'); //With WP 4.9 we need to load the
with
wp_enqueue_script( $condition , 'wp-mediaelement'); wp_enqueue_style( $condition2 , 'wp-mediaelement'); //With WP 4.9 we need to load the
Best regards,
Dude -
AuthorPosts