Forum Replies Created

Viewing 30 posts - 6,571 through 6,600 (of 67,463 total)
  • Author
    Posts
  • in reply to: Customised Toggle element doesn’t show #1427094

    Hi,

    Thank you for the info.

    The new shortcode or builder element is working correctly on our end. Did you place the toggles.php file inside the toggles folder? Please check the screenshot in the private field.

    Best regards,
    Ismael

    in reply to: gravity forms conditional logic conflict with theme #1427093

    Hi,

    Thank you for the info.

    The form doesn’t display because of an inline css rule. To override it, please try adding the following css code, which should adjust the display of the form inside the popup container.

    #popmake-1109 .pum-content #gform_wrapper_2 {
        display: block !important;
    }
    
    #popmake-1109 {
        top: 30px !important;
    }

    Best regards,
    Ismael

    in reply to: Add meta information to search results #1427092

    Hi,

    Thank you for the update.

    We may need to access the site in order to properly test the modification. Please provide the login details in the private field and make sure that the Appearance > Theme File Editor is accessible.

    Best regards,
    Ismael

    in reply to: Many problems since the WordPress update 6.4.1 #1426882

    Hi,

    But there is still problems when I enable file compression for Javascript.

    It’s possible that the default Javascript compression is not compatible with the plugins or custom scripts. You may need to look for a different compression plugin such as Autoptimize or use compression settings included in your cache plugin.

    Best regards,
    Ismael

    in reply to: Breakpoint for iPad display #1426881

    Hi,

    Thank you for the clarification.

    To adjust the breakpoint of the element visibility settings, please try to add this css code.

    
    @media only screen and (min-width: 990px) {
    
        .responsive.av-no-preview #top #wrap_all .av-desktop-hide,
        .responsive.av-no-preview #top #wrap_all .av-desktop-font-size-hidden,
        .responsive.av-no-preview #top #wrap_all .av-desktop-font-size-title-hidden {
            display: block;
        }
    }
    
    @media only screen and (min-width: 768px) and (max-width: 989px) {
    
        .responsive.av-no-preview #top #wrap_all .av-medium-hide,
        .responsive.av-no-preview #top #wrap_all .av-medium-font-size-hidden,
        .responsive.av-no-preview #top #wrap_all .av-medium-font-size-title-hidden {
            display: block;
        }
    }
    
    @media only screen and (min-width: 1366px) {
    
        .responsive.av-no-preview #top #wrap_all .av-desktop-hide,
        .responsive.av-no-preview #top #wrap_all .av-desktop-font-size-hidden,
        .responsive.av-no-preview #top #wrap_all .av-desktop-font-size-title-hidden {
            display: none;
        }
    }
    
    @media only screen and (min-width: 768px) and (max-width: 1366px) {
    
        .responsive.av-no-preview #top #wrap_all .av-medium-hide,
        .responsive.av-no-preview #top #wrap_all .av-medium-font-size-hidden,
        .responsive.av-no-preview #top #wrap_all .av-medium-font-size-title-hidden {
            display: none;
        }
    }
    

    Best regards,
    Ismael

    in reply to: Add meta information to search results #1426876

    Hey nebuddlho,

    Thank you for the inquiry.

    You can try this filter in the functions.php file to adjust the order of the post meta info.

    
    add_filter('avf_post_metadata_array', function($meta, $context) {
        global $post;
    
        $cats = '';
    
        $excluded_taxonomies = array_merge( get_taxonomies( array( 'public' => false ) ), array( 'post_tag', 'post_format' ) );
    
        /**
         *
         * @since ????
         * @since 4.8.8						added $context
         * @param array $excluded_taxonomies
         * @param string $post_type
         * @param int $post->ID
         * @param string $context
         * @return array
         */
        $excluded_taxonomies = apply_filters( 'avf_exclude_taxonomies', $excluded_taxonomies, get_post_type( $post->ID ), $post->ID, 'loop-index' );
    
        if ( ! empty( $taxonomies ) ) {
            foreach ( $taxonomies as $taxonomy ) {
                if ( ! in_array( $taxonomy, $excluded_taxonomies ) ) {
                    $cats .= get_the_term_list( $post->ID, $taxonomy, '', ', ', '' ) . ' ';
                }
            }
        }
    
        $meta_cats  = '<span class="blog-categories minor-meta">' . __( 'in', 'avia_framework') . ' ';
        $meta_cats .=	trim( $cats );
        $meta_cats .= '</span>';
    
        $meta_info['categories'] = $meta_cats;
    
        $meta_author  = '<span class="blog-author minor-meta">' . __( 'by', 'avia_framework' ) . ' ';
        $meta_author .=		'<span class="entry-author-link" ' . avia_markup_helper( array( 'context' => 'author_name', 'echo' => false ) ) . '>';
        $meta_author .=			'<span class="author">';
        $meta_author .=				'<span class="fn">';
        $meta_author .=					get_the_author_posts_link();
        $meta_author .=				'</span>';
        $meta_author .=			'</span>';
        $meta_author .=		'</span>';
        $meta_author .= '</span>';
    
        $meta_info['date'] = $meta['date'];
        $meta_info['author'] = $meta_author;
        $meta_info['comments'] = '';
    
        return $meta_info;
    }, 10, 2);
    

    Best regards,
    Ismael

    in reply to: slider above the password entry? #1426875

    Hey schweg33,

    Thank you for the inquiry.

    Are you trying to edit the password protected page? If so, try to add this filter in the functions.php file and add your own modifications.

    function avf_custom_password_form()
    {
        global $post;
        $label = 'pwbox-' . ( empty( $post->ID ) ? rand() : $post->ID );
        $output = '
        <div class="boldgrid-section">
            <div class="container">
                <div class="av-more-info">More info here</div>
                <form action="' . esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ) . '" class="form-inline post-password-form" method="post">
                    <p>' . __( 'This content is password protected. This is a custom message. To view it please enter your password below:' ) . '</p>
                    <label for="' . $label . '">' . __( 'Password:' ) . ' <input name="post_password" id="' . $label . '" type="password" size="20" class="form-control" /></label><button type="submit" name="Submit" class="button-primary">' . esc_attr_x( 'Enter', 'post password form' ) . '</button>
                </form>
            </div>
        </div>';
        return $output;
    }
    add_filter('the_password_form', 'avf_custom_password_form', 99);
    

    If you want to add a slider, try setting the builder to debug mode so that you can extract the shortcode of a builder element from one of your pages.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    what does “Wenige” mean?

    In the Demo Images included: section, in English, it says “A few”, which means that NOT all images in the demo are included in the import due to copyright issues.

    Also after demo import it does not really look like the demo?

    The site has the same configuration and looks the same as the demo, albeit with missing images.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    The css code above should not have affected the home page. Please try this code again.

    .single.single-tribe_event_series .tribe-common.tribe-events.tribe-events-view {
        display: none !important;
    }

    Best regards,
    Ismael

    Hey jasonlthornton,

    Thank you for the inquiry.

    Have you tried adjusting the color options in the Enfold > General Styling > Alternate Content tab? We didn’t find any blog posts element when we checked the home page. Did you remove the element?

    Best regards,
    Ismael

    in reply to: Many problems since the WordPress update 6.4.1 #1426763

    Hi,

    Thank you for the update.

    It turned to be an issue with the Enfold > Performance > File Compression settings. We temporarily disabled the option to regenerate the head scripts. You can re-enable the file compression settings back to optimize the performance of your website.

    Best regards,
    Ismael

    in reply to: Contact Form to use user-mail instead of no-reply #1426762

    Hey John,

    Thank you for the inquiry.

    You can use the avf_form_from filter to change the “from” address to the sender’s email address, but this might lead to the messages being filtered as spams and not reaching the receiving address.

    function avf_change_cf_from($send_from, $new_post, $form_params) {
        return $new_post['1_1'];
    }
    add_filter('avf_form_from', 'avf_change_cf_from', 10, 3);
    

    The key 1_1 refers to the first field in the contact form. If the email field is the third field in the contact form, you should replace the key with 3_1.

    Best regards,
    Ismael

    in reply to: Customised Toggle element doesn’t show #1426761

    Hi,

    Thank you for the update.

    Please provide the content of the modified toggles.php file using pastebin.com. We would like to test it on our end.

    I did add this part of code in the functions.php located i the Enfold-Child shortcodes folder.

    The functions.php file should be located in the root directory of the child theme folder, not inside the shortcodes folder.

    Best regards,
    Ismael

    in reply to: gravity forms conditional logic conflict with theme #1426760

    Hi,

    Thank you for the info.

    2.) We don’t see any script errors in the browser console. Where did you add the popup form?

    Best regards,
    Ismael

    in reply to: Child theme’s style.css #1426759

    Hey grabowski,

    Thank you for the inquiry.

    Instead of manually adding a counter or timestamp to the style.css file, consider installing a compression plugin or a cache plugin with a compression option. These plugins automatically generate a new file when there are changes to the site. You can also use the theme’s Enfold > Performance > File Compression settings and enable the Unique Timestamp Of Merged Files And WP Object Cache Bug option to append a timestamp to the compressed file

    Best regards,
    Ismael

    in reply to: centered horizontally – Youtube Video in iFrame #1426758

    Hey Monika,

    Thank you for the inquiry.

    Looks like you already managed to center align the video using the Column elements. Let us know if you need more help.

    Best regards,
    Ismael

    in reply to: Envato Market Api Failed #1426757

    Hi,

    Thank you for the update.

    The OAuth Personal Token could not be verified. Please check that the Token has been entered correctly and has the minimum required permissions.

    The error above indicates that the token lacks the required permissions. Did you review the necessary permissions for the token?

    // https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token

    Please generate another token and make sure that it has the following permissions.

    – View and search Envato sites (checked by default) (Required)
    – View the user’s Envato Account username
    – View the user’s email address
    – View the user’s account profile details
    – Download the user’s purchased items (Required)
    – Verify purchases of the user’s items
    – List purchases the user has made (Required)

    Best regards,
    Ismael

    in reply to: Remove Green Circle from appearing on Image Link Hover #1426755

    Hey David,

    Thank you for the inquiry.

    There is no option for this by default but you can add this css code to hide the overlay that displays on hover.

    .avia_transform a .image-overlay {
        display: none !important;
    }
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

    in reply to: Products grid causes 503 Service Unavailable error #1426754

    Hi,

    Thank you for the update.

    How many items are included in these categories? It’s possible that they contain more items compare to other categories consuming more memory during database queries and causing server overloads. You might want to contact your hosting provider for more info about this issue.

    Best regards,
    Ismael

    in reply to: switch logo at browser width #1426753

    Hey sky19er,

    Thank you for the inquiry.

    You can include this script in the functions.php file to dynamically switch to a different logo on browser resize. Please ensure to replace the placeholder with the actual URL of the logo image, one for mobile and another for desktop view.

    // switch logo on resize
    function ava_custom_script_mod()
    {
        ?>
        <script type="text/javascript">
            (function($) {
                function switchLogoImage() {
                    var logo = $('.logo a img');
                    var windowWidth = $(window).width();
    
                   if(windowWidth < 1024)
                   {
                       logo.attr('src', 'MOBILE LOGO IMAGE URL HERE');
                   } else {
                       logo.attr('src', 'DESKTOP LOGO IMAGE URL HERE');
                   }
                }
    
                $(window).on('debouncedresize', function() {
                    switchLogoImage();
                });
            })(jQuery);
        </script>
        <?php
    }
    add_action( 'wp_footer', 'ava_custom_script_mod', 9999 );

    Best regards,
    Ismael

    in reply to: Breakpoint for iPad display #1426752

    Hey nancyT,

    Thank you for the inquiry.

    There are Element Visibility option in the builder elements’ Advanced > Responsive toggle. You can use these options to control the visibility of the element on different screen sizes.

    Best regards,
    Ismael

    in reply to: Same author posts #1426751

    Hey nebuddlho,

    Thank you for the inquiry.

    If you’re using the Advanced Layout Builder, you can insert a Blog Posts element in the post, then add this filter in the functions.php file to display other posts from the same author.

    add_filter("avia_post_slide_query", function($query) {
        global $post;
        if(is_singular('post'))
        {   
             $author_id = $post->post_author;
             $query["author__in"] = array($author_id)
        }
        return $query;
    }, 10, 1);

    To display the category list and author info, please go to the Enfold > Blog Layout > Blog Meta Elements section and toggle the elements as you wish.

    Best regards,
    Ismael

    in reply to: How to insert line with own icon #1426750

    Hey dorisb123,

    Thank you for the inquiry.

    Are you referring to the Separator/Whitespace element? If yes, you can set the Horizontal Ruler Styling to Custom to be able to select a different icon.

    Best regards,
    Ismael

    in reply to: Many problems since the WordPress update 6.4.1 #1426685

    Hi,

    Thank you for the update.

    We may need to inspect the site in order to properly understand the issue. Please provide the login details in the private field. Have you tried temporarily disabling the Enfold > Performance > File Compression settings? Make sure to purge the cache afterwards.

    Best regards,
    Ismael

    in reply to: Shrinking side bar menu #1426684

    Hi,

    We edited functions.php file and adjust the following line a bit. Please make sure to purge the cache before testing the page.

     var logo = $('.logo a img'); 
                var logo_alt = $('<img src="https://jamesj173.sg-host.com/wp-content/uploads/2023/11/Griegos_Branch_BLK.png" class="av-logo-on-scroll" height="100" width="300" alt="Griegos Farms" title="">').appendTo(logo.parent('a')).hide();
    

    Best regards,
    Ismael

    in reply to: Customised Toggle element doesn’t show #1426683

    Hey xaviero7,

    Thank you for the inquiry.

    Why did you replace the name of the toggle shortcode? If you intend to override an element or shortcode in the child theme, you should create a folder called “shortcodes”, copy the shortcode files inside that folder, and then add this code to the functions.php file.

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
    
      return $paths;
    }
    

    For more info, please check the documentation below.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    Best regards,
    Ismael

    in reply to: Many problems since the WordPress update 6.4.1 #1426681

    Hey annesite,

    Thank you for the inquiry.

    What is the current version of the theme? Please make sure to upgrade the theme to version 5.6.8 after upgrading WordPress to the latest version. The issues that you mentioned above probably occurred because the site contains an older version of the theme.

    Best regards,
    Ismael

    in reply to: Maps were disabled by the visitor on this site. #1426679

    Hey whdsolutions,

    Thank you for the inquiry.

    Did you enable the options in the Enfold > Privacy & Cookies panel? It’s possible that the map is being blocked because the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior is set to the third or fourth option

    Best regards,
    Ismael

    in reply to: gravity forms conditional logic conflict with theme #1426667

    Hey James,

    Thank you for the inquiry.

    1.) The wp_footer() function is present in the theme’s footer.php file by default.

    2.) We may need to check the site in order to properly inspect the issue. Please provide the site URL in the private field. In the meantime, please keep in touch with the plugin developers for additional assistance.

    Best regards,
    Ismael

    in reply to: Shrinking side bar menu #1426666

    Hi,

    Did you remove the script? The alternate logo doesn’t display because it uses http instead of https. Please check the private field.

    Best regards,
    Ismael

Viewing 30 posts - 6,571 through 6,600 (of 67,463 total)