Forum Replies Created

Viewing 30 posts - 1,591 through 1,620 (of 66,084 total)
  • Author
    Posts
  • in reply to: Strange inline height applied to Color Sections #1475470

    Hi,

    Thank you for the update.

    You can use the email address (Email address hidden if logged out) or any other email, but make sure to generate the password, as we don’t have access to the specified email. We’ll wait for the login info.

    Best regards
    Ismael

    in reply to: Accessibility Issues #1475468

    Hi,

    Yes, a text element is now displaying for each slide.

    <span class="visually-hidden hidden">Bowl360 Brooklyn</span>
    

    Best regards,
    Ismael

    Hi,

    There’s no error, but the site keeps loading indefinitely without displaying anything. We also tried it on incognito mode.

    Best regards,
    Ismael

    in reply to: Woocommerce Germanized unit price display #1475466

    Hi,

    Thank you for the info.

    The account is not an admin, so we are not able to edit the settings. Please add this css code to adjust the layout of the product unit.

    p.wc-gzd-additional-info.product-units-wrapper.product-units {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        justify-content: flex-end;
    }
    
    p.wc-gzd-additional-info.product-units-wrapper.product-units span.unit {
        margin: 0;
    }

    Best regards,
    Ismael

    in reply to: Background Image on Color Section Responsive? #1475464

    Hi,

    Thank you for the update.

    You may need to replace the Color Section with an actual Image or a Fullwidth Easy Slider element to make sure that the container resizes based on the size of the image, rather than the other way around. If you choose to use the Image element, you can adjust the container’s maximum width using css. Please refer to this documentation: https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width

    Thanks @Guenni007.

    Best regards,
    Ismael

    in reply to: Adding content on a page is limited #1475463

    Hi,

    Thank you for the inquiry.

    We checked the server info and found that the WP_MEMORY_LIMIT is set to only 40M. Please ask your hosting provider to increase it to at least 256M.

    // https://developer.wordpress.org/advanced-administration/wordpress/wp-config/?utm_source=chatgpt.com#increasing-memory-allocated-to-php

    Best regards,
    Ismael

    in reply to: Display portfolio categories #1475461

    Hey Richard,

    Thank you for the inquiry.

    You can add this code to the functions.php file:

    function avf_portfolio_extra_mod($output, $entry) {
        if (!is_object($entry) || !isset($entry->ID)) {
            return $output;
        }
    
        $term_list = get_the_term_list(
            $entry->ID,
            'portfolio_entries',
            '<div class="portfolio-term">',
            ', ',
            '</div>'
        );
    
        if (!is_wp_error($term_list) && !empty($term_list)) {
            return $output . $term_list;
        }
    
        return $output;
    }
    add_filter('avf_portfolio_extra', 'avf_portfolio_extra_mod', 10, 2);

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Burger Menu Position – small screens #1475460

    Hi,

    Great! Glad to know that this has been resolved. Please feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: ENFOLD Options and Extensions Noticeboard in Italian #1475459

    Hi,

    We’ve included a copy of version 6.0.7 in the private field. Please provide your Gmail account so we can grant you access.

    Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    The site is not loading on our end. Is it down?

    Best regards,
    Ismael

    in reply to: Background Image on Color Section Responsive? #1475403

    Hey tsays,

    Thank you for the inquiry.

    The background images applied to the color sections should be responsive by default. Just make sure that Styling > Background Image > Background Repeat is set to Stretch to Fit.

    Best regards,
    Ismael

    in reply to: Deutsche Silbentrennung #1475402

    Hey UweS,

    Thank you for the inquiry.

    There is no option for this in the theme by default, but you can try the hyphenation settings from this plugin: https://wordpress.org/plugins/wp-typography/

    Best regards,
    Ismael

    in reply to: Woocommerce Germanized unit price display #1475401

    Hey DeaPublishing,

    Thank you for the inquiry.

    Where can we check the site? Please provide a link to the product page so we can properly check the layout issue.

    Best regards,
    Ismael

    in reply to: How to enable the Enfold “Theme Options” for editors? #1475400

    Hi,

    Thank you for the update

    Unfortunately, you cannot modify or override the class avia_adminpages in the child theme. You may need to manually override the capability value in the parent file. Also, please note that edit_theme_options is not included in the capabilities of Editor roles by default. You can find a list of capabilities in the following link: https://wordpress.org/documentation/article/roles-and-capabilities/#editor

    Best regards,
    Ismael

    in reply to: blog-categories minor-meta on Masonry Blog #1475399

    Hey FW,

    Thank you for the inquiry.

    You can add the following filter to the functions.php file to display the date, author, and categories, but please note that they will not be accessible or will not be displayed as links.

    add_filter( 'avf_masonry_loop_prepare', 'avf_masonry_loop_prepare_mod_cat', 10, 2 );
    
    function avf_masonry_loop_prepare_mod_cat( $key, $entries ) {
        $categories = get_the_category($key['ID']);
        $separator = ' ';
        $output = '
        <div class="masonry-cat">';
        
        if ( ! empty( $categories ) ) {
            foreach( $categories as $category ) {
                $output .= '<span alt="' . esc_attr( sprintf( __( 'View all posts in %s', 'textdomain' ), $category->name ) ) . '">' . esc_html( $category->name ) . '</span>' . $separator;
            }
        }
        $output .= '</div>';
    
        $post_date = get_the_date( '', $key['ID'] );
        $output .= '<div class="masonry-date">' . $post_date . '</div>';
    
        $author_id = $key['post_author'];
        $author_name = get_the_author_meta( 'display_name', $author_id );
        $output .= '<div class="masonry-author">' . $author_name . '</div>';
    
        $key['text_after'] .= trim( $output, $separator );
    
        return $key;
    }
    

    Best regards,
    Ismael

    in reply to: previewing gallery thumbnails #1475398

    Hey seomar,

    Thank you for the inquiry.

    The account above is not an admin, so we were not able to check the site settings. Please change the user role to administrator. Did you install any plugins related to images?

    Best regards,
    Ismael

    Hey tczubkowski_priv,

    Thank you for the inquiry.

    There is no option for this by default. One solution is to duplicate the current logo slider element, set it to display 4 columns, and then toggle the visibility of both elements in the Advanced > Responsive > Element Visibility settings. Configure it so that one slider is visible only on desktop and the other on smaller screens. Please refer to the screenshot below:

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Team Member Fixed Image Size #1475396

    Hey sebastianpesl,

    Thank you for the inquiry,

    The sizes and aspect ratios of the images are different. We provided examples in the private field. Please make sure to upload images with the same size and aspect ratio.

    You can also try this css code:

    .team-img-container {
        max-height: 280px;
    }
    
    .team-img-container img {
        width: 100%;
        height: 100%;
        object-position: center;
        object-fit: cover;
    }

    Best regards,
    Ismael

    in reply to: Strange inline height applied to Color Sections #1475395

    Hey tedlyc,

    Thank you for the inquiry.

    This might be due to a custom script or a plugin. Have you tried temporarily disabling the plugins? Please create a test page and provide the login details in the private field.

    Best regards,
    Ismael

    Hey UweS,

    Thank you for the inquiry.

    The mobile menu seemed to be working correctly when we checked it on a different browser. Have you tried testing it on a different device?

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Add Icon to a colored Menu Button #1475279

    Hi,

    Thanks @Guenni007! The Icon shortcode seems to be working without the filter applied.

    Best regards,
    Ismael

    in reply to: Logo Centered Menu Right #1475278

    Hi,

    Thank you for following up.

    We added this css code to adjust the padding on mobile view:

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 0 !important;
      }
    }
    

    Please make sure to purge the cache before checking the page.

    Best regards,
    Ismael

    in reply to: Get rid of payment solutions on product and cart pages #1475277

    Hi,

    Alright! Glad to know you figured it out. Please feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Space between layout elements #1475276

    Hey vancestone,

    Thank you for the inquiry.

    The gap is caused by the parallax effect in the Advanced > Animation settings of the Column elements. We disabled the animation to get rid of the extra space.

    Best regards,
    Ismael

    in reply to: How to enable the Enfold “Theme Options” for editors? #1475275

    Hey Neverlands,

    Thank you for the inquiry.

    The suggestion is to use the plugin https://wordpress.org/plugins/members/, edit the “Editor” role, and add more capabilities to it until the Theme Options panel shows up. Did you try this?

    Best regards,
    Ismael

    in reply to: Blog grid equal image sizes #1475274

    Hi,


    @seomar
    : There is a script error on the page when we checked. Please try to deactivate the plugins and temporarily remove any custom scripts. If the issue persists, please open another thread, and we’ll continue there.

    cabina-aspirado-filtrado-depresion-recinto-comun/:437 Uncaught ReferenceError: jQuery is not defined
    at cabina-aspirado-filtrado-depresion-recinto-comun/:437:6


    @raslade
    : Glad we could help! Let us know if you have more questions.

    Best regards,
    Ismael

    in reply to: Accessibility Issues #1475273

    Hi,

    Thank you for the update.

    It looks like the link title is not being added to the html. Please add this 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;
    }

    Create a folder/file structure inside the child theme directory: shortcodes > logoslider > logoslider.php. Then, add this code to override the default logo slider element.

    // https://pastebin.com/AEKjwcRe

    The script should function correctly after this modification.

    Best regards,
    Ismael

    in reply to: Alignment Issues from Padding #1475272

    Hi,

    Thank you for the update.

    The shift or the spaces around the cells are due to the padding settings. Did you set the left or right padding to 20%?

    .responsive #top #wrap_all .flex_cell.av-kyn9tdd8-374b8bd1892b4b8013281e9880b054a8 {
        padding: 4% 20% 4% 4% !important;
    }
    

    You have to edit the Grid Row cells and adjust the Styling > Padding for the mobile view, as shown in the screenshot below.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Changing the color in the navigation background on home #1475271

    Hi,

    Thank you for the update.

    You can add this css code to adjust the header background on the home page.

    .home .header_color .header_bg {
        background: #ffffff;
    }

    Best regards,
    Ismael

    in reply to: Burger menu slow to load #1475270

    Hi,

    Great! Glad to know that you have figured out the issue. Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

Viewing 30 posts - 1,591 through 1,620 (of 66,084 total)