Forum Replies Created

Viewing 30 posts - 2,731 through 2,760 (of 66,166 total)
  • Author
    Posts
  • in reply to: styling and position arrows in gallery #1467780

    Hey Woutski,

    Thank you for the inquiry.

    Are you using a alider element? Please provide the link to the page so that we can inspect the slider or the gallery.

    Best regards,
    Ismael

    in reply to: Right Sidebar Menu Sticky #1467779

    Hi,

    Thank you for the update.

    it does not have the “scroll otherwise” feature.

    Unfortunately, this feature is unavailable when the right sidebar is enabled. You may need to switch back to the left sidebar if you require the sticky scroll behavior.

    Best regards,
    Ismael

    in reply to: Adding hyphenation to a text #1467778

    Hi,

    You’re welcome! Glad to know the suggestions worked. Please fee free to start another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Unable to view/edit header element #1467777

    Hi,

    Thank you for the update.

    This was a custom modification that the previous developer might have added to the functions.php file. Look for a template hook like ava_main_header, ava_after_main_menu or any hook with “header” or “menu” in its title.

    Best regards,
    Ismael

    in reply to: No responsive #1467776

    Hi,

    Thank you for the update.

    We adjusted the css code a bit. Please try it again and make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterward.

    @media only screen and (max-width: 767px) {
      #top .logo img,
      #top .logo svg {
        top: -1px !important;
      }
    
      .html_av-overlay-side-classic #top .av-burger-overlay li a {
        border-bottom-style: none;
      }
    }

    Best regards,
    Ismael

    in reply to: Use of, AVIA editor in popup maker plugin #1467775

    Hey cuccarini,

    Thank you for the inquiry.

    I saw that Ismael in a support post had indicated a code to activate AVIA editor also in popup maker

    I don’t remember suggesting this, but it could work since the popup should be able to display the content of a single post or page. Where did you find the previous post? Could you provide a link to the previous post and the page where you’re testing the popup?

    // https://docs.wppopupmaker.com/article/370-add-a-single-post-page-or-custom-content-type-to-a-popup

    Best regards,
    Ismael

    in reply to: Logo on homepage doesn’t update #1467774

    Hi,

    Great! Glad to know that this has been resolved. 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: icon box size #1467773

    Hi,

    Thank you for the update.

    When you set the columns in a row to have equal height, it will only affect the columns themselves, not the elements within them. To ensure icon boxes have the same height, apply the class name “av-icon-box-same-height” in the Advanced > Developer Settings > Custom CSS Class field, and then add this script to the functions.php file.

    function ava_custom_script_here()
    {
        ?>
        <script>
            (function ($)
            {
                function setEqualHeight() {
                    var maxHeight = 0;
                    $('.av-icon-box-same-height .iconbox_content').css('height', 'auto');
                    
                    $('.av-icon-box-same-height .iconbox_content').each(function () {
                        var contentHeight = $(this).outerHeight();
                        if (contentHeight > maxHeight) {
                            maxHeight = contentHeight;
                        }
                    });
                    
                    $('.av-icon-box-same-height .iconbox_content').css('height', maxHeight + 'px');
                }
    
                document.addEventListener('DOMContentLoaded', function () {
                    setEqualHeight();
                    $(window).on('resize', function () {
                        setEqualHeight();
                    });
                });
            })(jQuery);
        </script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_script_here');
    

    Best regards,
    Ismael

    in reply to: Video einbetten funktioniert nicht #1467772

    Hi,

    It might be due to this change, and according to other sources, the behavior of the rel parameter could vary depending on whether you’re logged in or not: https://developers.google.com/youtube/player_parameters#august-23,-2018

    Best regards,
    Ismael

    in reply to: Sorting custom posts oldest to newest #1467713

    Hi,

    Thank you for the info.

    It seems that the sorting is not working due to the custom query in the archive.php template. We’ll get back to you once we find a suitable modification.

    Best regards,
    Ismael

    in reply to: Mega Menu (1) #1467712

    Hey Mariarita,

    Thank you for the inquiry.

    Do you really need to use the mega menu option for this? The mega menu is usually used for large sets of menu items and sub-menu items. Since the items don’t have any child menu items, you can simply choose to use the default submenu and disable the mega menu option.

    Best regards,
    Ismael

    in reply to: navigation column width #1467711

    Hey Diana,

    Thank you for the inquiry.

    The burger menu is active when checked. To adjust the width of the sidebar, you can try the following css code:

    @media only screen and (min-width: 768px) {
    
      /* Add your Desktop Styles here */
      .html_header_sidebar #top #header {
        width: 400px;
      }
    
      .html_header_left #main {
        margin-left: 400px;
      }
    }

    Best regards,
    Ismael

    Hey Anette,

    Thank you for the inquiry.

    Did you add the following css code? It reduces the size of the events container in mobile view.

    #tribe-events-content {
        padding: 50px 100px !important;
    }
    

    To override it, you can add this css code;

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #tribe-events-content {
        padding: 0 !important;
      }
    }
    

    Best regards,
    Ismael

    in reply to: Make phone number and mail clickable #1467709

    Hey annac166,

    Thank you for the inquiry.

    You can use replace the phone number or text with this html to make the number clickable and directly trigger a call or open an email app.

    Phone number:

    <a href="tel:+1234567890">Contact Us: +1 (234) 567-890</a>
    

    Email:

    <a href="mailto: (Email address hidden if logged out) ">Email Us:  (Email address hidden if logged out) </a>
    

    Best regards,
    Ismael

    in reply to: Limit filters on Events Calendar #1467708

    Hey amyncuih,

    Thank you for the inquiry.

    You may need to contact the plugin developer regarding this, as these options are added by the plugin, not by the theme. You can try adding this script to the functions.php file, but we cannot guarantee that it will work.

    
    function ava_custom_script_here()
    {
        ?>
        <script>
            (function ($)
            {
                document.addEventListener('DOMContentLoaded', function ()
                {
                    const checkboxes = document.querySelectorAll('.tribe-common-form-control-checkbox__input[name="tribe_dayofweek[]"]');
    
                    checkboxes.forEach(function (checkbox)
                    {
                        checkbox.addEventListener('change', function ()
                        {
                            if (this.checked)
                            {
                                checkboxes.forEach(function (otherCheckbox)
                                {
                                    if (otherCheckbox !== checkbox)
                                    {
                                        otherCheckbox.checked = false;
                                    }
                                });
                            }
                        });
                    });
                });
            })(jQuery);
        </script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_script_here');

    Best regards,
    Ismael

    in reply to: Incorrect line height since update version 6.0.4 #1467707

    Hey Olligator,

    Thank you for the inquiry.

    We don’t really see any difference between the screenshots above. Where can we check the issue? Please provide the site URL in the private field.

    Best regards,
    Ismael

    in reply to: Right Sidebar Menu Sticky #1467706

    Hey manurimini,

    Thank you for the inquiry.

    You can try this css code but it might break the layout of the content container:

    .html_header_right #top #header {
        right: 0;
        position: fixed;
        -webkit-backface-visibility: hidden;
    }

    Best regards,
    Ismael

    in reply to: Adding hyphenation to a text #1467704

    Hi,

    Thank you for the inquiry.

    Try to add this css code:

    
    body {
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    
    [lang="it"] {
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    

    And if you want to apply hyphenation to a specific text or paragraph, you can just add the lang attribute.

    
    <p lang="it">L’animale e il suo custode sono anime in cammino su un percorso comune.</p>
    
    

    Best regards,
    Ismael

    in reply to: prevent image large size duplicates #1467703

    Hi,

    Thank you for the info.

    Try to remove this line in the remove_enfold_image_sizes function above.

    remove_image_size('portfolio');
    

    The post slider or the blog grid layout uses the “portfolio” thumbnail by default.

    Best regards,
    Ismael

    in reply to: Unable to view/edit header element #1467702

    Hey jackis2,

    Thank you for the inquiry.

    You can use this css code to adjust the style of the phone number container:

    #header_main .call {
        background: red;
        min-width: 400px;
        color: white;
        right: 10%;
        top: 0;
        text-align: center;
        text-transform: uppercase;
        font-family: 'gotham-bold', sans-serif;
        font-size: 1.5em;
    }

    Best regards,
    Ismael

    in reply to: Avia Builder only slightly visible. Appear far right. #1467634

    Hi,

    Thank you for the update.

    Looks like this is a general WordPress issue occurring in the latest versions of macOS and Safari.

    // https://wordpress.org/support/topic/safari-18-0-breaking-classic-editor/

    To fix the issue the temporarily, please try this code in the functions.php file:

    function ava_custom_admin_styles() {
        echo '
        <style>
            #postbox-container-2 { clear: left; }
            .index-php #postbox-container-2 { clear: none; }
        </style>
        ';
    }
    add_action('admin_head', 'ava_custom_admin_styles');
    

    Best regards,
    Ismael

    in reply to: Sorting custom posts oldest to newest #1467632

    Hi,

    Are you trying to sort the posts based on the date in their title, e.g., “Constabulary Gazette, Jun 1980”? Please note that the filter will sort the posts based on their publication date. Unfortunately, there is no option to sort posts based on text in the title.

    Best regards,
    Ismael

    in reply to: Bug, WebP direct image upload #1467631

    Hey Martin,

    Thank you for the inquiry.

    The theme automatically sets the upload quality to 100%, whereas the WordPress default is 82%. However, this can be adjusted by adding the following filter in the functions.php file:

    add_filter("avf_jpeg_quality", "avf_set_quality_mod", 9999, 1);
    add_filter("avf_wp_editor_set_quality", "avf_set_quality_mod", 9999, 1);
    function avf_set_quality_mod($quality) { $quality = 70; return $quality;}

    Best regards,
    Ismael

    in reply to: Grid view blog posts order #1467630

    Hi,

    Thank you for the update.

    Where can we check this? Please provide the site URL and login details in the private field. Make sure that the Appearance > Theme File Editor is accessible.

    Best regards,
    Ismael

    in reply to: Database to large #1467629

    Hey Jak73,

    Thank you for the inquiry.

    Consider using one of the plugins listed below to clean up your database. However, please make sure to create a backup beforehand.

    // https://wordpress.org/plugins/wp-optimize/
    // https://wordpress.org/plugins/wp-sweep/

    Best regards,
    Ismael

    in reply to: prevent image large size duplicates #1467628

    Hi,

    I noticed that I had issues with posts featured image on post silder

    It should automatically fallback to the original image when the required thumbnail is not available. Where can we see the issue?

    Best regards,
    Ismael

    in reply to: Indexing Issue #1467513

    Hi,

    It’s possible that the servers where the other sites are hosted already have this directive in place, possibly because they are WordPress-managed sites or for other reasons. Either way, you can prevent crawlers from indexing unnecessary files by using the robots.txt file. Please note that it may take some time for the search results to be updated.

    Best regards,
    Ismael

    Hey!

    UPDATE: We noticed that the code above is using the filter for the Masonry element instead of the avia_post_slide_query filter. We adjusted the filter a bit.

    Cheers!
    Ismael

    in reply to: Grid view blog posts order #1467511

    Hey ibuzaev,

    Thank you for the inquiry.

    1-2.) To allow sticky posts and adjust the order of the items in the grid layout, please add this filter in the functions.php file:

    add_filter("avia_post_slide_query", function($query, $params) {
        $sticky_posts = get_option('sticky_posts');
        $include = [];
    
        $args = [
            'taxonomy' => $params['taxonomy'],
            'post__not_in' => $sticky_posts,
            'order' => 'ASC',
            'fields' => 'ids',
        ];
        $posts = get_posts($args);
    
        $include = array_merge($sticky_posts, $posts);
        $include = array_map('intval', $include);
    
        $query['post__in'] = $include;
        $query['orderby'] = 'post__in';
        $query['order'] = 'ASC';
    
        return $query;
    }, 10, 2);
    

    Best regards,
    Ismael

    in reply to: Advanced Styling edits revert other settings #1467509

    Hey paulreali,

    Thank you for the inquiry.

    We can’t reproduce the issue on a fresh install, so it’s possible that a plugin or a custom script is causing the issue. Please try to deactivate the plugins temporarily, then try to adjust the configurations of the elements in the Advanced Styling panel again.

    Best regards,
    Ismael

Viewing 30 posts - 2,731 through 2,760 (of 66,166 total)