Forum Replies Created

Viewing 30 posts - 6,601 through 6,630 (of 67,463 total)
  • Author
    Posts
  • in reply to: Shrinking side bar menu #1426662

    Hi,

    Thank you for the screenshots.

    3.) We adjusted the script a bit to hide the initial logo on scroll and prevent it from reverting back while the burger overlay is active.

    // https://kriesi.at/support/topic/shrinking-side-bar-menu/#post-1426577

    4.) You can adjust the padding with this css code.

    @media only screen and (min-width: 989px) {
    
      /* Add your Desktop Styles here */
      #top #av-burger-menu-ul {
        padding: 100px 0 !important;
      }
    }
    
    

    Best regards,
    Ismael

    in reply to: Immage, accordion #1426661

    Hi,

    Thank you for following up.

    1.) You can try pulling the portfolio grid element to the left with this css code.

    .page-id-3949 div#av-sc-portfolio-1 {
        margin-left: -5px;
        width: calc(100% + 15px);
    }

    The number 3949 is the ID of the page and the class name page-id-3949 is applied to the body element of each page. You should be able to inspect the page elements using a browser inspector.

    // https://developer.chrome.com/docs/devtools/open/

    2.) We tried logging in to the site but the login info above is invalid. Have you tried adjusting the position of the toggle symbols?

    .togglecontainer.av-minimal-toggle .single_toggle .toggle_icon {
        left: auto;
        right: 20px;
        position: absolute;
        text-align: right;
    }
    

    Best regards,
    Ismael

    in reply to: Widget Area sidebar pages creating large blank space #1426660

    Hi,

    Thank you for the update.

    Have you considered using the Portfolio Grid or the Masonry element? It allows you to display the title and excerpt below the featured image. The only downside is that you have to create a Portfolio or Post item for each entry.

    Best regards,
    Ismael

    in reply to: Hide footer for smartphones #1426592

    Hi,

    @teotaban: You can try either of the solutions mentioned above. Let us know if you need further assistance.

    Best regards,
    Ismael

    in reply to: Reiter #1426582

    Hi,

    No problem! Glad we could be of help. Please feel free to open another thread when you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    We may need to access the site via S/FTP in order check the issue further. Please provide the login details in the private field. Temporarily, you can add this css code to hide the calendar.

    .single.single-tribe_event_series .tribe-common.tribe-events.tribe-events-view.tribe-events-view--summary.tribe-events-view--list.tribe-events--has-filter-bar.tribe-events--filter-bar-vertical.alignwide.tribe-events-pro.tribe-common--breakpoint-xsmall {
        display: none !important;
    }
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We can now reproduce the issue, but we are not yet sure what is causing it. It seems like the browser automatically adds the HTML tags after translation. And when you perform the translation while the text is rotating, it also leaves the rotated text in the element and makes it static, duplicating the text. Unfortunately, we can’t control the behavior of the browser translator, so we may not be able to assist you further.

    Best regards,
    Ismael

    in reply to: WooCommerce issues #1426578

    Hi,

    No problem! Glad we could be of help. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Shrinking side bar menu #1426577

    Hi,

    Thank you for the update.

    1.) To add an alternate logo on scroll, please update the script with the following code.

    
    function custom_shrinking_sidebar_menu_script() { ?>
        <script>
      (function($) {
        $(document).ready(function () {
            if (window.innerWidth > 989) {
                var html = $('html');
                var header = $('#header');
                var main = $('#main');
                var logo = $('.logo a'); 
                var logo_alt = $('<img src="IMAGE_URL_HERE" class="av-logo-on-scroll" height="100" width="300" alt="Griegos Farms" title="">').appendTo(logo).hide();
                var burger = $('.html_header_sidebar #top div .av-burger-menu-main');
                var burger_icon = burger.find('.av-hamburger');
                var footer = $('.html_header_sidebar.html_header_left .av-curtain-footer.av-curtain-activated .av-curtain-footer-container');
                var menu = $('.responsive.html_header_sidebar #header .av-main-nav > li').not('.av-burger-menu-main, .av-active-burger-item');
      
                $(window).scroll(function () {
                  if ($(this).scrollTop() > 200) {
                    burger.show();
                    menu.hide();
                    logo_alt.show();
                    logo.hide();
                    header.css({'width': '120px', 'transition': 'all 1s ease'});
                    main.css({'margin-left': '120px', 'transition': 'all 1s ease'});
                    footer.css({ 'width': 'calc(100% - 120px)', 'margin-left': '121px'  });
                  } else {
                    if(burger_icon.hasClass('is-active') == false)
                    {
                        menu.show();
                        burger.hide();
                        logo_alt.hide();
                        logo.show();
                        html.css('overflow', 'auto');
                        header.css({'width': '300px', 'transition': 'all 1s ease'});
                        main.css({'margin-left': '300px', 'transition': 'all 1s ease'});
                        footer.css({ 'width': 'calc(100% - 300px)', 'margin-left': '301px'  });
                    }
                  }
                });
            } 
          });
      })(jQuery);
      </script>
        <?php
      }
      add_action('wp_footer', 'custom_shrinking_sidebar_menu_script', 99);
    

    Make sure to update the logo or image URL in this line.

    var logo_alt = $('<img src="IMAGE_URL_HERE" class="av-logo-on-scroll" height="100" width="300" alt="Griegos Farms" title="">').appendTo(logo).hide();
    

    2.) To center align the burger menu, please add this css code.

    @media only screen and (min-width: 989px) {
    
      /* Add your Desktop Styles here */
      #top .av-burger-menu-main.menu-item-avia-special a {
        text-align: center;
      }
    }

    2.5) :D

    Best regards,
    Ismael

    in reply to: I give up #1426507

    Hi,

    Thank you for the update.

    Yes, the modification should affect all pages. If you want this to apply to a specific page, please provide the page URL in the private field, and we’ll adjust the code accordingly.

    Best regards,
    Ismael

    in reply to: Hide footer for smartphones #1426506

    Hey teotaban,

    Thank you for the inquiry.

    The following css code should hide the footer and socket on mobile view.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #footer,
      #socket {
        padding: 15px 0 30px 0;
        z-index: 1;
        display: none;
      }
    }

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.

    Best regards,
    Ismael

    in reply to: Shrinking side bar menu #1426505

    Hey James,

    Thank you for the inquiry.

    You can try this script to toggle the display of the default menu and burger menu on scroll.

    function av_custom_inline_script()
    {
        wp_add_inline_script( 'jquery', 
            "
        (function($) {
            $(document).ready(function () {
                if (window.innerWidth > 989) {
                    var burger = $('.html_header_sidebar #top div .av-burger-menu-main');
                    var menu = $('.responsive.html_header_sidebar #header .av-main-nav > li').not('.av-burger-menu-main, .av-active-burger-item');
                    $(window).scroll(function () {
                      if ($(this).scrollTop() > 200) {
                        burger.show();
                        menu.hide();
                      } else {
                        menu.show();
                        burger.hide();
                      }
                    });
                } 
              });
        })(jQuery);
        "
        );
    }
    add_action( 'wp_enqueue_scripts', 'av_custom_inline_script' );

    Best regards,
    Ismael

    • This reply was modified 2 years, 3 months ago by Rikard.
    in reply to: Line-element background transparent #1426395

    Hi,

    No problem! Glad to know that the solution worked for you. If you have any more questions, feel free to let us know.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Immage, accordion #1426394

    Hi,

    Thank you for the update.

    1.) The issue with your alignment request is that if we adjust the alignment for pages with the portfolio grid element, the logo won’t align properly on pages containing different elements with different positioning. That’s why we specifically targeted the page. If you want to apply these changes to other pages, simply duplicate the css rule that we provide above and replace the ID in the selector (.page-id-3949) with the ID of the page containing the portfolio grid element.

    they fix the alignment of the photos but the underlying text is no longer aligned,

    Would you mind providing a screenshot of the issue?

    2.) Have you tried removing the css code to bring back the toggle symbols (+ – ) to the accordion element? You can also switch the accordion style to classic.

    Best regards,
    Ismael

    in reply to: Masonry no entries fallback #1426393

    Hi,

    Thank you for the info.

    Did you enable the .htpassword? We can’t access the site because it is requiring another authentication. Please provide the info in the private field and try to add the filter again in the functions.php file.

    add_filter('avf_masonry_query_no_entries_fallback', function($fallback) {
        return false;
    }, 10, 1);
    

    Best regards,
    Ismael

    in reply to: Bigger preview images in gallery block #1426388

    Hi,

    Thank you for the update.

    We may need to access the site in order to check the issue further. Please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Breaking Point #1426387

    Hi,

    Thank you for the update.

    The screenshot above is not accessible. Please try to use Savvyify, Imgur or Dropbox to upload and share the screenshot.

    Did you add this css code somewhere?

    .container {
        max-width: 1010px;
    }
    

    Please try to override it with this css code.

    /*
    Desktop Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the desktop view of your site */
    
    @media only screen and (min-width: 989px) {
    
      /* Add your Desktop Styles here */
      #footer .container {
        max-width: 1360px;
      }
    }
    
    

    Or try to adjust the Maximum Container Width value in the Enfold > General Layout > Dimensions tab.

    Best regards,
    Ismael

    Hey FW,

    Thank you for the inquiry.

    Have you tried using the avf_load_google_recaptcha_api_prohibited filter as described in the previous thread? Please check the link below.

    // https://github.com/KriesiMedia/enfold-library/blob/a2a93f0004d530dedaa1576ae63a3f2915ac407d/actions%20and%20filters/External%20Services/avf_load_google_recaptcha_api_prohibited.php

    Best regards,
    Ismael

    in reply to: Easy Slider effects animation to the elements below #1426384

    Hey Christof_Deinhard,

    Thank you for the inquiry.

    Where can we check the issue? Please provide the link in the private field. In the demo, you might have noticed that the images in the slider have the exact same size. That’s why the height of the slider remains consistent when transitioning to the next item. Did you use images with different size and aspect ratio?

    Best regards,
    Ismael

    Hi,

    Thank you for the screenshot.

    The theme modifies some of the product templates, but there’s nothing related to the rating element, so it’s probably modified or generated by a plugin. You can hide the rating container above the thumbnail with this css code.

    .thumbnail_container .rating_container {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Unfold textblock performance issues #1426381

    Hi,

    Thank you for the update.

    Is there a staging version of the site? Also, where can we find check the element with the fold/unfold option? We couldn’t find any on the page above. Please provide the link to the staging site and post the login details in the private field.

    Best regards,
    Ismael

    in reply to: Change element order on mobile view. #1426380

    Hey Tibor,

    Thank you for the inquiry.

    You have to edit the first column in the row and adjust the Row Settings > Row Screen Options > Column Behaviour When Fullwidth settings to either the second or third option. If you choose the third option, you’ll also need to modify the Advanced > Responsive > Mobile Breakpoint Position settings for every column in the row.

    Best regards,
    Ismael

    in reply to: Line-element background transparent #1426379

    Hi,

    Thank you for the inquiry.

    would it be possible to stretch the width of the news-ticker (NÄCHSTE EVENTS)

    Yes, that should be possible. Please add this code in the Quick CSS field.

    .home #av_section_1 .container.av-section-cont-open {
        padding: 0;
    }
    
    .home #av_section_1 .container.av-section-cont-open .ticker-news {
        margin: 0;
    }

    Best regards,
    Ismael

    in reply to: Label for post types creating a link in Avia Builder #1426378

    Hi,

    Thank you for the update.

    Did you remove the above screenshot? How did you create the custom post type? If you register the CPT manually, make sure that the post type name is wrapped in the following functions so that they can be translated to other languages.

    // https://developer.wordpress.org/reference/functions/_x/
    // https://developer.wordpress.org/reference/functions/__/

    You can find the label examples for the Portfolio post type in the /enfold/includes/admin/register-portfolio.php file around line 11.

    $labels = array(
    					'name'				=> _x( 'Portfolio Items', 'post type general name','avia_framework' ),
    					'singular_name'		=> _x( 'Portfolio Entry', 'post type singular name','avia_framework' ),
    					'add_new'			=> _x( 'Add New', 'portfolio', 'avia_framework' ),
    					'add_new_item'		=> __( 'Add New Portfolio Entry', 'avia_framework' ),
    					'edit_item'			=> __( 'Edit Portfolio Entry', 'avia_framework' ),
    					'new_item'			=> __( 'New Portfolio Entry', 'avia_framework' ),
    					'view_item'			=> __( 'View Portfolio Entry', 'avia_framework' ),
    					'search_items'		=> __( 'Search Portfolio Entries', 'avia_framework' ),
    					'not_found'			=>  __( 'No Portfolio Entries found', 'avia_framework' ),
    					'not_found_in_trash' => __( 'No Portfolio Entries found in Trash', 'avia_framework' ),
    					'parent_item_colon'	=> ''
    				);
    

    Best regards,
    Ismael

    in reply to: How to format in the webshop #1426377

    Hi,

    Thank you for the inquiry.

    Looks like you’re using a plugin to display products on the shop page. And it seems to strip all html tags from the product description, causing the text not to move to the second line. Could you share the name of the plugin? To shift the description to the next line, give this css code a try.

    .<a href="https://refer.wordpress.com/r/84/woocommerce/" target="_blank" rel="nofollow">woocommerce</a>-product-details__short-description {
        width: 82%;
    }

    Best regards,
    Ismael

    in reply to: Immage, accordion #1426323

    Hey Intercettazioni,

    Thank you for the inquiry.

    1.)

    https://img.savvyify.com/image/9Cx3t

    In the home page, the alignment of the logo against the content is not really that noticeable, but you can add this css code to adjust the position of the logo,

    .home div .logo {
        left: -5px;
    }
    

    https://img.savvyify.com/image/9CGMd

    In the “cellulari-spia” page, please note that each portfolio item has a 20px padding around it, which is why the first items in the row don’t align with the logo. If you want to get rid of the padding, you can add this css code.

    .grid-sort-container .grid-entry {
        padding: 0;
    }
    

    Or push the logo to the left with this css.

    .page-id-3949 div .logo {
        left: 20px;
    }
    

    2.) How did you remove the toggle icon in the Accordion element? The toggle_icon container is missing when we checked one of the accordion element in the site.

    Best regards,
    Ismael

    in reply to: strange black bar #1426322

    Hi,

    Glad to know that this has been resolved. Please do not hesitate to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: All content disappears when I click publish #1426321

    Hi,

    Thank you for the updat.e

    the error occurs due to these HTML tags, which were either invalid or not properly closed.

    We completely understand your frustration, and we’re sorry to hear that you’re dealing with these issues. The error related to invalid HTML tags is indeed a problem, but it can be easily avoided by making sure not to add incorrect HTML tags in the first place, like the one we mentioned above. After removing the invalid HTML tags, we successfully edited the Contact page and updated it without losing any content.

    Best regards,
    Ismael

    in reply to: Unfold textblock performance issues #1426318

    Hey emilconsor,

    Thank you for the inquiry.

    Do you also have the Enfold > Performance > File Compression settings enabled? You might need to disable these settings when the cache plugin’s CSS/JS optimization options are turned on. We didn’t find any element with the fold/unfold option when we checked the page above, but it looks like you have found an alternative.

    Best regards,
    Ismael

    in reply to: Page options bar disappeared after updating to 5.6.8 #1426317

    Hey marxsvjetlana64,

    Thank you for the update.

    Have you tried to disable Fullscreen mode? The sidebar or Settings panel should appear once Fullscreen mode is deactivated. But we will add a fix in the next patch that will allow access to the Settings panel while Fullscreen mode is enabled.

    Best regards,
    Ismael

Viewing 30 posts - 6,601 through 6,630 (of 67,463 total)