Forum Replies Created

Viewing 30 posts - 7,561 through 7,590 (of 67,463 total)
  • Author
    Posts
  • in reply to: recurring events not showing #1418721

    Hi,

    We have added the tribeHideRecurrence parameter to the tribe_get_events function and set the parameter’s value to false. Let us know if this changes anything.

    
    // Blog Posts: Query events by starting date
    function avia_blog_post_query_mod( $query, $params ) {
        if(! is_singular( 'portfolio' ) ) 
        {
            return $query;
        }
    
        $include = array();
        $posts = array();
    
        $events = tribe_get_events( [
            'posts_per_page' => 5,
            'start_date' => 'now',
            'orderby' => 'meta_value',
            'meta_key' => '_EventStartDate',
            'order' => 'DESC',
            'tribeHideRecurrence' => false,
            'tax_query' => $query['tax_query']
        ] );
    
        foreach($events as $event) {
            $date = tribe_get_start_date( $event, false, 'j F Y' );
            $include[$event->ID] = $date;
        }
    
        asort($include);
    
        foreach($include as $key => $value) {
            $posts[] = $key;
        }
    
        unset($query['tax_query']);
        $query['orderby'] = 'meta_value';
        $query['order'] = 'ASC';
        $query['meta_key'] = '_EventStartDate';
        $query['post__in'] = $posts;
    
        return $query;
    }
    add_filter('avia_blog_post_query', 'avia_blog_post_query_mod', 10, 2); 
    
    

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: disable Maginific Popup? #1418719

    Hi,

    No problem. 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: broken css link warning in ahrefs crawl #1418716

    Hi,

    Thank you for the update.

    We made some modifications to the code and combined the rules. These changes may take a day or two to take effect.

    User-agent: *
    crawl-delay: 10
    Disallow: /cgi-bin
    Disallow: /wp-admin
    Disallow: /wp-includes
    Disallow: /wp-content/plugins
    Disallow: /wp-content/uploads/dynamic_avia
    Disallow: /*?*
    Disallow: /*?
    Disallow: /feed/
    Disallow: /*/feed/
    Disallow: /xmlrpc
    Disallow: /?p=
    Disallow: /*trackback
    Allow: /wp-*/*.js
    Allow: /wp-content/uploads
    

    Another option is to disable the post css files by adding this code in the functions.php file.

    add_filter( 'avf_post_css_create_file', '__return_false', 10);
    

    Best regards,
    Ismael

    in reply to: Problem with page render #1418714

    Hi,

    We adjusted the code in the Quick CSS field a bit to make the container scrollable.

    /* Color section container width */
    #section-container-width .container {
      width: 100% !important;
      min-width: 100%;
      max-height: 100vh;
      padding: 0;
      margin: 0;
      overflow: scroll;
    }
    

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: recurring events not showing #1418713

    Hey sky19er,

    Sorry for the delay. Did you enable the recurring events option in the Event Settings > General panel?

    Best regards,
    Ismael

    in reply to: Performance hit of aviaPopupTemplatesBase #1418712

    Hi,

    Sorry for the delay. Do you see the same result when you remove the woocommerce cart hash? Please provide the login details in the private field. We have tagged @Guenter to check the issue.

    Best regards,
    Ismael

    in reply to: Page not showing anymore #1418711

    Hi,

    Glad to know that the issue 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: Restrict Masonry gallery title & description #1418710

    Hi,

    Thank you for the update.

    You can try this filter in the functions.php file to limit the masonry content to 50 characters.

    add_filter("avf_masonry_entry_content", function($content) {
        $limit = 50; 
    
        if (strlen($content) > $limit) {
            $content  = substr($content, 0, $limit);
            $content  .= '...';
        }
    
        return $content;
    }, 10, 1);
    

    You may need to remove the css modification temporarily and adjust the limit if necessary.

    Best regards,
    Ismael

    Hey nahmialm,

    Thank you for the inquiry.

    Please note that product filters will only be visible on the default shop page and the product archive pages. The filters will not appear on single product pages. If you wish to display a list of product attributes in the single product sidebar, you may need to look for a third-party plugin.

    Best regards,
    Ismael

    in reply to: Plugin Event Manager not working #1418707

    Hey Jables,

    Thank you for the inquiry.

    We have found a script error in the console which might be causing the issue with the events calendar. Please disable the cache and compression plugin temporarily, then upgrade the theme to version 5.6.6. Once the theme is updated, please temporarily disable the Enfold > Performance > File Compression settings to refresh the scripts and stylesheets.

    This is the error.

    Uncaught ReferenceError: AviaDatepickerTranslation is not defined
        at HTMLDocument.<anonymous> ((index):1833:16)
        at e (jquery.min.js?ver=3.7.0:2:26990)
        at t (jquery.min.js?ver=3.7.0:2:27292)
    

    Best regards,
    Ismael

    in reply to: Produktbild in WooCommerce auf Seite größer darstellen #1418706

    Hey Michael F,

    Thank you for the inquiry.

    You can use the following css code to adjust the size of the product image.

    .single-product-main-image {
        width: 50%;
        float: left;
        margin-right: 50px;
        overflow: hidden;
        padding-bottom: 50px;
    }
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect. By disabling the file compression settings, you will be able to make the necessary adjustments and updates without any conflicts. Once you have made the required modifications, you can re-enable the file compression settings to optimize the performance of your website.

    Best regards,
    Ismael

    in reply to: Problem Uploading Flaticon Set from Media Library.. #1418484

    Hi,

    Thank you for the update.

    Yes, it is possible that there are incompatible icons in the set and that the structure of the archived or compressed file has been altered. Please inform your client that the downloaded file should be kept as is and that only monocolored icons are allowed in the Iconfont Manager. We will keep the thread open.

    Best regards,
    Ismael

    in reply to: Main menu and footer #1418483

    Hi,

    Yes, you can insert style #3 and adjust the properties as required. You can change the background by adjusting this css rule for example.

    /* Icon background color */
    .av-share-box ul li a {
      background: #f0f0f0;
    }
    

    Best regards,
    Ismael

    in reply to: External Links Opening Incorrectly #1418482

    Hi,

    Would the easiest fix be to create separate columns for the other two links and align them vertically?

    Yes, that should work. Please note that when you apply a link to a column, all links inside will be ignored or overridden because there’s a script that activates the column link once you click on it.

    Best regards,
    Ismael

    in reply to: Problem with page render #1418481

    Hi,

    Thank you for the clarification.

    What happens when you limit the height of the section? Try adding this code in the Quick CSS field.

    #section-container-width .container {
        max-height: 100vh;
    }
    

    Best regards,
    Ismael

    in reply to: Restrict Masonry gallery title & description #1418480

    Hey adapt,

    Thank you for the inquiry.

    You might be able to use the avf_masonry_entry_content filter to adjust the length of the content. Usage example can be found in the following threads.

    // https://kriesi.at/support/topic/show-category-in-masonry-gallery-with-link-to-overview-posts-in-that-category/#post-1362994
    // https://kriesi.at/support/topic/how-to-remove-a-section-not-visible-on-edit-page-and-not-in-the-footer/#post-1369818

    Please provide the site URL in the private field so that we can check the Masonry element.

    Best regards,
    Ismael

    in reply to: sidebars and widgets erscheinen nicht in den Widgets #1418469

    Hi,

    Glad to know that the issue has been resolved. Please feel free to open another thread if you have more question about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    Did you set a custom footer or 404 page, or did you install WPML? Please provide the WP and S/FTP login details in the private field so that we can properly check the issue.

    Best regards,
    Ismael

    in reply to: Image slider Tablet View #1418465

    Hi,

    And so it now works on the ipad-tablet landscape format, but not on the desktop PC:

    Based on the css code above, you have set the #tabletquer-header slider to not be visible when the screen width is less than 1225px. Please note that most desktops or PCs have wider screens, standard is 1920x1080px. What is the default screen resolution of your desktop?

    Try adding this css media query to hide the #tabletquer-header slider on screens wider than 1225px.

    @media only screen and (min-width: 1225px) {
       #top.page-id-9907 #tabletquer-header { display:none !important; }
    }
    

    Best regards,
    Ismael

    in reply to: Color section backgrounbd video on mobile #1418463

    Hi,

    Background video of the Color Section is not supposed to display on mobile devices or smaller screens, but I’m glad that you managed to get around this limitation. Please let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: YouTube Related (Recommended) Videos #1418462

    Hi,

    Thank you for the update.

    This is possible but you may have to modify the enfold/config-templatebuilder/avia-shortcodes/video/video.php file directly. The query parameters for Youtube videos are located around line 651.

    $params[] = 'autoplay=' . $video_attributes['autoplay'];
    					$params[] = 'loop=' . $video_attributes['loop'];
    					$params[] = 'controls=' . $video_attributes['controls'];
    					$params[] = $youtube ? 'mute=' . $video_attributes['muted'] : 'muted=' . $video_attributes['muted'];
    

    You can append the rel parameter by adding this line.

    $params[] = 'rel=0';
    

    Best regards,
    Ismael

    in reply to: Second logo same behavior as the first (transparent header) #1418461

    Hey Jens,

    Thank you for the inquiry.

    The following css code should work, just replace the red background with an image and adjust the other properties as required.

    .responsive #top .av_header_transparency #header_main .inner-container .widget a img {
        opacity: 0;
    }
    
    .responsive #top .av_header_transparency #header_main .inner-container .widget a:before {
        content: '';
        width: 100px;
        height: 30px;
        background: red;
        display: block;
        position: absolute;
    }

    Best regards,
    Ismael

    in reply to: Poertfolio Raster – Square (180×180) does not work #1418456

    Hi,

    Thank you for the info.

    We’ve checked the site but we are not yet sure what is causing the issue. Have you tried regenerating the thumbnails? You can use the following plugin to regenerate the images, but please make sure to create a site backup before doing so.

    // https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    in reply to: Main menu and footer #1418455

    Hi,

    Did you register a custom social icon using the filters as described in the documentation? If you want to adjust the style of the social icons, please check the documentation below.

    // https://kriesi.at/documentation/enfold/social-share-buttons/#custom-styled-social-icons

    Best regards,
    Ismael

    in reply to: Links in MegaMenu / Open to new page won’t work #1418452

    Hey R_Menn,

    Thank you for the inquiry.

    Which of the menu items did you set to open in a new tab? Please provide a screenshot, and in the meantime, try to upgrade the theme to version 5.6.6.

    Best regards,
    Ismael

    in reply to: Masonry no entries fallback #1418451

    Hey vdlpwp,

    Thank you for the inquiry.

    Adding the following code in the functions.php file should work.

    add_filter('avf_masonry_query_no_entries_fallback', '__return_false');
    

    Best regards,
    Ismael

    in reply to: Problem Uploading Flaticon Set from Media Library.. #1418450

    Hey newmediologo,

    Thank you for the inquiry.

    Please note that only monocolored icon sets from Flaticon are allowed in the Iconfont Manager, and the downloaded file should not be modified in any way. It seems that, according to your description, your client manually organized the icons and compressed them into an archive file. For more information, please check the documentation provided below.

    // https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-

    Best regards,
    Ismael

    in reply to: Problem with page render #1418336

    Hey!

    Thank you for the update.

    It appears to be displaying correctly now. The section container is full-width, with the map on the left and hotel items on the right. Please make sure that you clear the cache before revisiting the page.

    Best regards,
    Ismael

    in reply to: enfold header with elementor footer #1418333

    Hi,

    If you can edit the header template file from the plugin, you might be able to use the get_header function to call the default header from the theme. You may need to create another file and copy the content of the default header.php template from the theme and rename it.

    // https://developer.wordpress.org/reference/functions/get_header/

    Best regards,
    Ismael

    Hi,

    Thank you for following up.

    We cannot edit the pages or access the Pages panel. Would you mind giving us full admin rights to the site so that we can thoroughly check the issue?

    Best regards,
    Ismael

Viewing 30 posts - 7,561 through 7,590 (of 67,463 total)