-
AuthorSearch Results
-
January 29, 2023 at 10:46 pm #1395855
In reply to: text editor alters code
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,
MikeHi,
Thanks for the login I found the you didn’t have Privacy and Cookies ▸ Advanced Options ▸ Auto Reload Page enabled, I enabled it for you and now the contact form works when the cookies are accepted.


I set your contact form back to number captcha like you had it, please clear your browser cache and check.Best regards,
MikeJanuary 29, 2023 at 9:50 pm #1395848In reply to: Submenu shows parent as submenu page on mobile
Hey the_digital_manager,
That is because gezichtsbehandelingen is a link to a page and on mobile for the parent menu item to expand to show the child items you have to show it so it can be clicked, otherwise cliking the menu item will take you to the page instead of showing the child items.
See the theme settings at Enfold Theme Options ▸ Main Menu ▸ Burger/Mobile Menu ▸ Clone title menu items to submenu
and read the notice:
Since you selected to display submenu items on click or on hover, the parent menu item does no longer navigate to the URL it contains, but toggles the visibility of its submenu items. If you want users to be able to open the parent menu URL the theme can create a clone of that item in the submenuBest regards,
MikeHey ilyas ghoul,
Glad to hear, it uses Enfold Responsive Multi-Purpose Theme, you can purchase it here.Best regards,
MikeJanuary 29, 2023 at 9:36 pm #1395845In reply to: text editor alters code
Hey the_digital_manager,
Thanks for your patience, but unfortunately the text field uses the WordPress function so there is not a way to disable this.
Try adding your second image as a data-url attribute like this:<img class="circular--square" src="https://mondzorgcentrum-winschoten.nl/wp-content/uploads/2023/01/lennie-van-vulpen-1-250x250px.jpg" data-url="https://mondzorgcentrum-winschoten.nl/wp-content/uploads/2023/01/lennie-van-vulpen-2-250x250px.jpg" />WordPress will not remove this attribute when you try to re-edit the page as long as you edit in the text tab

Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor to swap the images on hover:function swap_image_with_data_url() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $('.avia-testimonial-content').hover(function(e){ $(this).find('img').attr('data-src', $(this).find('img').attr('src')); $(this).find('img').attr('src', $(this).find('img').attr('data-url')); }, function(e){ $(this).find('img').attr('src', $(this).find('img').attr('data-src')); }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'swap_image_with_data_url');Now the images will change on hover and back on mouse-out
Please see my test page in the Private Content area.Best regards,
MikeJanuary 29, 2023 at 8:16 pm #1395842In reply to: Reversing the order of specific blog posts
Hi,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function avia_custom_query_extension($query, $params) { global $avia_config; if(!empty($avia_config['avia_custom_query_options']['order'])) { $query['order'] = $avia_config['avia_custom_query_options']['order']; } if(!empty($avia_config['avia_custom_query_options']['orderby'])) { $query['orderby'] = $avia_config['avia_custom_query_options']['orderby']; } unset($avia_config['avia_custom_query_options']); return $query; } add_filter('avia_masonry_entries_query', 'avia_custom_query_extension', 10, 2); add_filter('avia_post_grid_query', 'avia_custom_query_extension', 10, 2); add_filter('avia_post_slide_query', 'avia_custom_query_extension', 10, 2); add_filter('avia_blog_post_query', 'avia_custom_query_extension', 10, 2); add_filter('avf_magazine_entries_query', 'avia_custom_query_extension', 10, 2); add_filter('avf_template_builder_shortcode_elements','avia_custom_query_options', 10, 1); function avia_custom_query_options($elements) { $allowed_elements = array('av_blog','av_masonry_entries','av_postslider','av_portfolio','av_magazine'); if(isset($_POST['params']['allowed']) && in_array($_POST['params']['allowed'], $allowed_elements)) { $elements[] = array( "name" => __("Custom Query Orderby",'avia_framework' ), "desc" => __("Set a custom query orderby value",'avia_framework' ), "id" => "orderby", "type" => "select", "std" => "", "subtype" => array( __('Default Order', 'avia_framework' ) =>'', __('Title', 'avia_framework' ) =>'title', __('Random', 'avia_framework' ) =>'rand', __('Date', 'avia_framework' ) =>'date', __('Author', 'avia_framework' ) =>'author', __('Name (Post Slug)', 'avia_framework' ) =>'name', __('Modified', 'avia_framework' ) =>'modified', __('Comment Count', 'avia_framework' ) =>'comment_count', __('Page Order', 'avia_framework' ) =>'menu_order') ); $elements[] = array( "name" => __("Custom Query Order",'avia_framework' ), "desc" => __("Set a custom query order",'avia_framework' ), "id" => "order", "type" => "select", "std" => "", "subtype" => array( __('Default Order', 'avia_framework' ) =>'', __('Ascending Order', 'avia_framework' ) =>'ASC', __('Descending Order', 'avia_framework' ) =>'DESC')); } return $elements; } add_filter('avf_template_builder_shortcode_meta', 'avia_custom_query_add_query_params_to_config', 10, 4); function avia_custom_query_add_query_params_to_config($meta, $atts, $content, $shortcodename) { global $avia_config; if(empty($avia_config['avia_custom_query_options'])) $avia_config['avia_custom_query_options'] = array(); if(!empty($atts['order'])) { $avia_config['avia_custom_query_options']['order'] = $atts['order']; } if(!empty($atts['orderby'])) { $avia_config['avia_custom_query_options']['orderby'] = $atts['orderby']; } return $meta; }This should add a new sorting field to your blog element, try choosing Ascending Order:

In my test before adding this my blog element grid put 1 at the bottom and 9 at the top

When I set the new option to Ascending Order it reversed the order:

Best regards,
MikeJanuary 29, 2023 at 6:54 pm #1395831In reply to: color section error
Hi,
Thanks for the login on your /prrc-dispositivi-medici/ page you had 3 special headings with strong tags in the title field that were not closed breaking the page layout:

This is why the theme warns about using HTML tags in the title fields and points to our documentation and a special plugin, please be very careful.
I tried to correct the error and was able to restore the layout but for some reason the grid cell background image and color didn’t restore, I thought it might be due to caching so I disabled your two caching plugins but that didn’t help, but I was able to create a new page and the grid cell background image and color did restore.
You may need to delete the original page and use the new page.
I checked your /mandatario-europeo/ page and it had the same problem, I was able to restore the layout but not the last grid cell background image and color, but I created a new page for it and it works correctly, You may need to delete the original page and use this new page also.Best regards,
MikeJanuary 29, 2023 at 4:36 pm #1395820In reply to: Image size of Blog archiv and Category
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,
MikeJanuary 29, 2023 at 3:42 pm #1395814In reply to: Startseite wird nicht mehr geladen
This reply has been marked as private.January 29, 2023 at 1:47 pm #1395803HOOGVELD
GuestHELLO dear customer service am the webmaster of http://www.rabauds.eu and i advice my client to get and pay the
enfold theme, which he did . i could install it on a wordpress core, the problem is that it does not match with my email and i cant login to your website and acces help and forum and everyhtning in fact.
Please after verifications could you send me new credentiels my client is logged i suppose with (Email address hidden if logged out) but i cannot login with it because of google security purposes.My google account is (Email address hidden if logged out) and my usual mail is (Email address hidden if logged out)
this is the one to use
Sorry to distrub you with stupid installation but i, really need to login by my own on your web site and envato if it is neessary
Please help this is an urgent request thanks for your help i do appreciateAll my gratefulness Bill
January 29, 2023 at 1:43 pm #1395802In reply to: Add dotted navigation to testimonial block
Hi,
I found that the file Guenni007 linked to added the navigation dots to my testimonial element, this is the steps that I followed to add it to my child theme. First I ensured that my child theme functions.php had this code:function avia_include_shortcode_template( $paths ) { if( ! is_array( $paths ) ) { $paths = array(); } $template_url = get_stylesheet_directory(); array_unshift( $paths, $template_url . '/shortcodes/' ); return $paths; } add_filter( 'avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1 );Then via FTP I added the directories /shortcodes/testimonials/
Then I downloaded Guenni007 linked file above

and uploaded it via FTP to my child theme testimonials directory so the structure from my child theme is like this:
/enfold-child/shortcodes/testimonials/testimonials.php
Then the css I used is:.responsive #top .avia-slideshow-dots.avia-slideshow-controls a { opacity: 1; } .avia-slideshow-dots a.active { background: #b0b0b0; } .avia-slideshow-arrows.avia-slideshow-controls { opacity: 0; }This shows the navigation dots always and hides the navigation arrows:

Thank you Guenni007 for thaking the time to edit this file and sharing it with us 🙂Best regards,
MikeJanuary 29, 2023 at 12:57 pm #1395801In reply to: Fullscreen picture in the blog post
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,
MikeJanuary 29, 2023 at 12:50 pm #1395798Topic: Startseite wird nicht mehr geladen
in forum Enfoldwils_wp
ParticipantHallo Support,
seit WordPress 6.11 und Enfold 5.3.1.1 wird die Startseite/Homeseite in meiner Website Folktreff-Konstanz.de nicht mehr angezeigt. Es erscheint nur
https://folktreff-konstanz.de und Vor folktreff… noch das WordPress Icon. Darunter gibt es nur ein leere weiße Fläche. Alle anderen Seiten der Website haben kein Problem.
Ich hab jetzt fast eine Woche lang alles versucht, aber die Homeseite startet nicht. Das einzigste was manchmal geht, ist, dass die Seite beim bearbeiten mit dem Erweiterter Layout Architekt erscheint. Danach nicht mehr.-
This topic was modified 3 years, 2 months ago by
wils_wp.
January 28, 2023 at 11:55 pm #1395782In reply to: Adjustment of the Portfolio Category page
Hi,
Unfortunately, I don’t have an iPad but when I test on browserstack.com/live on a iPad Pro 12 I don’t see the gap from the missing item:


Perhaps your iPad is still showing you the cache, Please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.Best regards,
MikeJanuary 28, 2023 at 11:26 pm #1395777In reply to: Import Demo error 28
Hi,
Thanks for the link to your site, I see your PHP time limit is 165, please change to 300, and your Max input time is a negative number (-1) please change to 300 also, then try again.

If that doesn’t help try manually importing the demo.Best regards,
MikeJanuary 28, 2023 at 11:00 pm #1395773In reply to: Portfolio layout
Hi,
The page uses the Portfolio Grid element with the Link Handling set to Open a preview of the entry (known as AJAX Portfolio)

Then in each of the portfolio items in the Additional Portfolio Settings ▸ Ajax Portfolio Preview Settings ▸ Preview Text add your video link:

Also ensure that Display Preview Images is set to Don’t show the images at all and display the preview text only
Then on the frontend when you click a portfolio item and the Portfolio Ajax opens only the video will show:

Best regards,
MikeJanuary 28, 2023 at 10:09 pm #1395771last conversation to envato – FYI:
Hi,
What is the reason that I have to explain the same thing over and over again?
I get really angry.
Don’t you guys talk to each other?Don’t you read what I already wrote?
Didn’t anyone see that I said exactly that several times?Didn’t noone read that I normally didn’t need the Envato WP plugin to update Enfold. The created token can be entered directly into Enfold.
I only installed the WP plugin because I was advised to do so.And I say it now for the fourth time:
YES, ALL ENFOLD THEMES FROM 2022 CANNOT BE UPDATED.Yes, and that’s exactly the problem now with the Envato WP plugin installed:
the problem is , that the Envato WP Plugin is not allowing me to update the Enfold themes purchases in 2022?
Understood ? Or do I have to repeat myself 10 more times?
It’s unbearable: the same questions over and over again….I also have an Enfold theme from 2021 that I only use for testing.
When the test phase is over, I usually delete the subdomain,
create a new subdomain and use the same theme, purchased in 2021, again to offer a new customer a first
to show the presentation of his new website (= from scratch on)
Then I also use the same token – it works.
And I have clients that I use Enfold for – bought earlier than 2022. Everything works.Don’t tell me again, I have to control the permissions… Please, I don’t want to hear it anymore
YES, THAT’S EXACTLY THE REASON : the Envato WP Plugin is not allowing me to update the Enfold themes purchases in 2022?
Stefan
January 28, 2023 at 10:07 pm #1395770In reply to: Columns on mobile
Hi,
Glad to hear that you have this sorted out, 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,
MikeJanuary 28, 2023 at 9:49 pm #1395768Hi,
Thanks for your patience and the link to your site, it looks like you are using the grid cell element with a download button to a PDF, I tried to recreate this on my demo site and the button works and I don’t have any further issues with the ALB Builder:

Please see the link to my test page below

Please try disabling all of your plugins and If this doesn’t help, please include an admin login in the private content area so we can be of more assistance.Best regards,
MikeJanuary 28, 2023 at 9:21 pm #1395766In reply to: insert a Schema JSON-LD script to specific pages
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,
MikeJanuary 28, 2023 at 9:19 pm #1395765In reply to: Accordion Slider Image Captions don’t show
January 28, 2023 at 8:57 pm #1395763Hey css202301,
Thanks for the link to your site, your PHP time limit & Max input time are 60 try changing to 300

If that doesn’t help try manually importing the demo.Best regards,
MikeJanuary 28, 2023 at 8:48 pm #1395762In reply to: Polylang not compatible
Hi,
Sorry, I have not seen this before, updating Enfold doesn’t change the status of pages.Best regards,
MikeJanuary 28, 2023 at 8:37 pm #1395760In reply to: Fullwidth Background images
Hi,
Glad to hear that you have this sorted out, 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,
MikeJanuary 28, 2023 at 7:33 pm #1395756In reply to: SVG borders requests
January 28, 2023 at 7:19 pm #1395751In reply to: Polylang not compatible
Thank you Mike. Another question has come up.
After I upgraded Enfold, the last 4 blog posts did not get published on the site. Even though they were published prior to this and looks as published in admin. Any thoughts on this?
all the best, Mariann
January 28, 2023 at 7:16 pm #1395750In reply to: [WooCommerce] Simple building blocks missing?
Hey tixxpff,
Thank you for your question, when you manually create a product with the Advanced Layout Builder you will use other elements such as the special heading to add the product title, this is by design. The ALB meant to give you the ability to create custom layouts such as this one and here is another example
You can also use Shortcodes included with WooCommerce, but unfortunately WooCommerce doesn’t have a shortcode for displaying a product name, however, you can create your own by adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function displayProductName($item) { global $post; $product_title = get_the_title( $post->ID ); return $product_title; } add_shortcode('product_name', 'displayProductName');and use this shortcode
[product_name]

Best regards,
MikeJanuary 28, 2023 at 6:01 pm #1395743Topic: Using multiple sizes favicons
in forum EnfoldAlwin
ParticipantHello,
How can I use different sizes of favicons within the Enfold theme?
For example I want to use these sizes:
– android-chrome-192×192.png
– android-chrome-512×512.png
– apple-touch-icon.png
– favicon-16×16.png
– favicon-32×32.png
– Favicon.icoIn the Enfold settings I can only upload 1 favicon file, so how can I make use of different sizes?
Thanks :)
AlwinJanuary 28, 2023 at 5:48 pm #1395741In reply to: Drop down menu in conent section
Hey Sebastian,
Thanks for your question, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function print_menu_shortcode($atts, $content = null) { extract(shortcode_atts(array( 'name' => null, 'class' => null ), $atts)); return wp_nav_menu( array( 'menu' => $name, 'menu_class' => 'menu-shortcode', 'echo' => false ) ); } add_shortcode('menu', 'print_menu_shortcode');This will let you show a menu in your page content as a shortcode, if your menu name is test then the shortcode to show it would be:
[menu name="test"]
Add the shortcode to a code block element:
Then add this css:.entry-content-wrapper ul.menu-shortcode, .entry-content-wrapper .menu-shortcode li { list-style: none outside; } .menu-shortcode .sub-menu { height:0; opacity: 0; visibility: hidden; transition: all 0.5s ease 0s; } .menu-shortcode .menu-item-has-children:hover > .sub-menu { height: 100%; opacity: 1; visibility: visible; transition: all 0.5s ease 0s; }I added transition to the css to ease in and out the sub-menus so it was not so fast.
Click the image to see the gif play

https://img.savvyify.com/images/2023/01/28/Enfold_Support_216.gifBest regards,
MikeJanuary 28, 2023 at 5:08 pm #1395733In reply to: Import Demo error 28
Hi,
The login token is still not working. You can check the documentation here for troubleshooting suggestions: https://kriesi.at/documentation/enfold/import-demos/
Best regards,
Rikard -
This topic was modified 3 years, 2 months ago by
-
AuthorSearch Results
-
Search Results
-
HELLO dear customer service am the webmaster of http://www.rabauds.eu and i advice my client to get and pay the
enfold theme, which he did . i could install it on a wordpress core, the problem is that it does not match with my email and i cant login to your website and acces help and forum and everyhtning in fact.
Please after verifications could you send me new credentiels my client is logged i suppose with (Email address hidden if logged out) but i cannot login with it because of google security purposes.My google account is (Email address hidden if logged out) and my usual mail is (Email address hidden if logged out)
this is the one to use
Sorry to distrub you with stupid installation but i, really need to login by my own on your web site and envato if it is neessary
Please help this is an urgent request thanks for your help i do appreciateAll my gratefulness Bill
Hallo Support,
seit WordPress 6.11 und Enfold 5.3.1.1 wird die Startseite/Homeseite in meiner Website Folktreff-Konstanz.de nicht mehr angezeigt. Es erscheint nur
https://folktreff-konstanz.de und Vor folktreff… noch das WordPress Icon. Darunter gibt es nur ein leere weiße Fläche. Alle anderen Seiten der Website haben kein Problem.
Ich hab jetzt fast eine Woche lang alles versucht, aber die Homeseite startet nicht. Das einzigste was manchmal geht, ist, dass die Seite beim bearbeiten mit dem Erweiterter Layout Architekt erscheint. Danach nicht mehr.Hello,
How can I use different sizes of favicons within the Enfold theme?
For example I want to use these sizes:
– android-chrome-192×192.png
– android-chrome-512×512.png
– apple-touch-icon.png
– favicon-16×16.png
– favicon-32×32.png
– Favicon.icoIn the Enfold settings I can only upload 1 favicon file, so how can I make use of different sizes?
Thanks :)
Alwin


