Viewing 30 results - 19,441 through 19,470 (of 244,585 total)
  • Author
    Search Results
  • #1395855

    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,
    Mike

    #1395854

    In reply to: reCaptcha

    Hi,
    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.
    Enfold_Support_258.jpeg
    Enfold_Support_260.jpeg
    I set your contact form back to number captcha like you had it, please clear your browser cache and check.

    Best regards,
    Mike

    #1395848

    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 submenu

    Best regards,
    Mike

    #1395847

    In reply to: script

    Hey ilyas ghoul,
    Glad to hear, it uses Enfold Responsive Multi-Purpose Theme, you can purchase it here.

    Best regards,
    Mike

    #1395845

    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
    Enfold_Support_256.jpeg
    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,
    Mike

    #1395842

    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:
    Enfold_Support_252.jpeg
    In my test before adding this my blog element grid put 1 at the bottom and 9 at the top
    Enfold_Support_250.jpeg
    When I set the new option to Ascending Order it reversed the order:
    Enfold_Support_254.jpeg

    Best regards,
    Mike

    #1395831

    In 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:
    Enfold_Support_248.jpeg
    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,
    Mike

    #1395820

    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,
    Mike

    #1395814
    This reply has been marked as private.
    HOOGVELD
    Guest

    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 appreciate

    All my gratefulness Bill

    #1395802

    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
    Enfold_Support_242.jpeg
    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:
    Enfold_Support_244.jpeg
    Thank you Guenni007 for thaking the time to edit this file and sharing it with us 🙂

    Best regards,
    Mike

    #1395801

    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,
    Mike

    #1395798
    wils_wp
    Participant

    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.

    • This topic was modified 3 years, 2 months ago by wils_wp.
    #1395782

    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:
    Enfold_Support_238.jpeg
    Enfold_Support_240.jpeg
    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,
    Mike

    #1395777

    In 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.
    Enfold_Support_236.jpeg
    If that doesn’t help try manually importing the demo.

    Best regards,
    Mike

    #1395773

    In 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)
    Enfold_Support_230.jpeg
    Then in each of the portfolio items in the Additional Portfolio Settings ▸ Ajax Portfolio Preview Settings ▸ Preview Text add your video link:
    Enfold_Support_232.jpeg
    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:
    Enfold_Support_234.jpeg

    Best regards,
    Mike

    #1395771

    last 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

    #1395770

    In 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,
    Mike

    Hi,
    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:
    Enfold_Support_226.jpeg
    Please see the link to my test page below
    Enfold_Support_228.jpeg
    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,
    Mike

    #1395766

    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

    #1395765

    Hey Tanja,
    Thanks for the link to your site, you need to enable Display Excerpt
    Enfold_Support_224.jpeg
    I did this for you, please clear your browser cache and check.

    Best regards,
    Mike

    Hey css202301,
    Thanks for the link to your site, your PHP time limit & Max input time are 60 try changing to 300
    Enfold_Support_222.jpeg
    If that doesn’t help try manually importing the demo.

    Best regards,
    Mike

    #1395762

    Hi,
    Sorry, I have not seen this before, updating Enfold doesn’t change the status of pages.

    Best regards,
    Mike

    #1395760

    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,
    Mike

    #1395756

    In reply to: SVG borders requests

    Hey JannyPolak,
    Thanks for your question but I don’t understand why your SVG border is not going 100% width, in my test it does:
    Enfold_Support_220.jpeg
    Perhaps you can make a test page so we can see the issue.

    Best regards,
    Mike

    #1395751

    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

    #1395750

    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]
    Enfold_Support_218.jpeg

    Best regards,
    Mike

    #1395743
    Alwin
    Participant

    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.ico

    In the Enfold settings I can only upload 1 favicon file, so how can I make use of different sizes?

    Thanks :)
    Alwin

    #1395741

    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
    Enfold_Support_216.gif
    https://img.savvyify.com/images/2023/01/28/Enfold_Support_216.gif

    Best regards,
    Mike

    #1395733

    In 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

Viewing 30 results - 19,441 through 19,470 (of 244,585 total)