Forum Replies Created

Viewing 30 posts - 601 through 630 (of 66,254 total)
  • Author
    Posts
  • Hi,

    Deprecated: Function avia_font_manager::frontend_icon is deprecated since version 7.0! Use Use

    Did you modify any shortcodes in the child theme? It’s possible they are still using a deprecated function. You should also check the child theme’s functions.php file. We can’t access the file anymore because the Appearance > Theme File Editor is no longer available.

    We also recommend testing this on a different host, as it’s possible the issue is server-related. Try cloning the site to a server hosted by another company or platform.

    Best regards,
    Ismael

    Hi,

    We are not sure how the form saves the post, but for the default post editor, you can use either the wp_insert_post_data or the save_post hook to add additional functionality, such as applying a custom layout to a post, before it is saved to the database.

    https://developer.wordpress.org/reference/hooks/save_post/
    https://developer.wordpress.org/reference/hooks/wp_insert_post_data/

    The required fields were already included in the previous post.

    Best regards,
    Ismael

    in reply to: YouTube not loading on certain pages #1484059

    Hi,

    Great! Let us know if the issue occurs again. Have a nice day.

    Best regards,
    Ismael

    Hey extraeyes,

    Thank you for the inquiry.

    Try to add this code in the functions.php file to return a list of pages containing icon elements:

    add_action('wp_head', function () {
        global $wpdb;
    
        $shortcodes = ['av_iconlist', 'av_icongrid', 'av_icon_circles', 'av_font_icon'];
    
        $like_clauses = array_map(function ($sc) use ($wpdb) {
            return $wpdb->prepare("post_content LIKE %s", '%' . $sc . '%');
        }, $shortcodes);
    
        $where = implode(' OR ', $like_clauses);
    
        $query = "
            SELECT ID FROM $wpdb->posts
            WHERE post_type = 'page'
            AND post_status = 'publish'
            AND ($where)
        ";
    
        $results = $wpdb->get_col($query);
    
        echo '<pre style="background: #fff;">';
        var_export($results);
        echo '</pre>';
    });
    

    In the frontend, this should return a list of pages that may look like this:

    View post on imgur.com

    Best regards,
    Ismael

    Hey eldrico,

    Thank you for the inquiry.

    You can use this filter in the functions.php file to reverse the order of the items in the post nav.

    add_filter( 'avf_post_nav_entries', 'avf_post_nav_entries_mod_reverse', 10, 3);
    function avf_post_nav_entries_mod_reverse($entries, $settings, $queried_entries)
    {
        $settings['same_category'] = true;
        $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); 
        $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    
        return $entries;
    }

    Best regards,
    Ismael

    in reply to: Envato private Token for multiple websites #1484055

    Hi,

    It’s possible that the automatic update is not working in the current version and fails to retrieve the latest one. You may need to update the theme manually this time. Please check the link below for more info:

    https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    in reply to: Partner Logo slider for Mobile devices #1484053

    Hi,

    We adjusted the column count of the “customers” element, then added the css code in the Quick CSS field.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Color section header for mobile and desktop #1483903

    Hi,

    We are not seeing the big white gap. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox.

    Best regards,
    Ismael

    in reply to: trying to hide the “by” on the blog posts. #1483902

    Hi,

    Yes, you can put a copy of the includes > loop-index.php file in the child theme to override it. Make sure the folder structure is the same. Let us know the result.

    Best regards,
    Ismael

    Hi,

    Good to know that this has been resolved! Feel free to open another thread if you have more questions. Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You can add this code in the Enfold > General Styling > Quick CSS field to adjust the position of the onsale or promo badge.

    #top .onsale {
        top: -29px;
        right: 8px;
        left: auto;
    }

    View post on imgur.com

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    Do you have a staging or development site where we can test it with version 6.8.0? The notices above should not affect loading speed, and wp.editPost is not directly included in the theme, so this is likely related to a plugin or a custom script.

    Regarding the unclosed select tag, please edit the enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-modal-elements.php file, look for this code around line 901:

    			$filter .=		'</select>';
    

    Replace it with:

    			$filter .=		'</select>';
    

    Best regards,
    Ismael

    in reply to: Problem of transition with content slider #1483897

    Hi,

    To adjust the size and position of the slider arrows, try to add this css code:

    #top .avia-smallarrow-slider .avia-slideshow-arrows a {
      opacity: 0;
      margin: 0;
      width: 50px !important;
      height: 50px !important;
      line-height: 50px !important;
      font-size: 20px !important;
      top: 0;
    }
    
    #top .avia-smallarrow-slider .avia-slideshow-arrows a.avia-svg-icon svg:first-child, #top .avia-smallarrow-slider .avia-slideshow-arrows a.avia-svg-icon img[is-svg-img="true"] {
      height: 20px;
      width: auto;
      margin-top: 15px;
    }
    
    #top .avia-smallarrow-slider .avia-slideshow-arrows {
      position: relative;
      width: 120px;
      top: 20px;
      left: auto;
      height: 24px;
      right: 10px;
    }

    If you’re trying to disable the image overlay, add this code:

    .image-overlay, .image-overlay .image-overlay-inside {
        display: none !important;
    }

    Best regards,
    Ismael

    Hi,

    We may need to adjust the maximum width of the nav menu itself and the left/right margin of the elements in the top header including the logo and the custom header widgets.

    /*
    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: 768px) {
    
      /* Add your Desktop Styles here */
      .responsive #top #header #header_main .inner-container .main_menu {
        order: 5;
        flex-basis: 100%;
        align-items: center !important;
        align-self: center !important;
        justify-content: center !important;
        height: inherit !important;
        margin-bottom: 0px;
      }
    
      .responsive #top #header #header_main .inner-container .main_menu .avia-menu {
        max-width: 1340px;
      }
    
      .responsive #top #header #header_main .inner-container .logo {
        margin-left: calc(50% - 570px);
      }
    
      .responsive #top #header #header_main .inner-container .widget:nth-child(5) {
        margin-right: calc(50% - 640px);
      }
    }

    View post on imgur.com

    Best regards,
    Ismael

    Hey Launebaer1981,

    Thank you for the inquiry.

    The following thread should help: https://kriesi.at/support/topic/importing-lots-of-data-to-scf-custom-posts-all-having-same-template/#post-1473810

    You may need to update the custom layout ID in _aviaLayoutBuilderCleanData and make sure the post type slug is correct. Also, remove this line to prevent the header from being set to transparent.

    update_post_meta($post_id, 'header_transparency', 'header_transparent header_hidden');
    

    Best regards,
    Ismael

    Hey Mat,

    Thank you for the inquiry.

    The portfolio seems to be displaying properly on our end. Is the plugin currently deactivated? Unfortunately, as stated in our support policy, we do not provide support for third-party plugins. You may need to contact the plugin developers for additional assistance.

    Best regards,
    Ismael

    in reply to: Change settings on hover on slider images #1483893

    Hey Pierre,

    Thank you for the inquiry.

    We may need to inspect the site to fully understand your request. Please create a test page and provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Content Protection #1483828

    Hi,

    Thank you for the update.

    The images seems to be accessible when we check, but it’s possible that an image overlay is blocking access to the context menu or download option. We added the following code to the Quick CSS field to disable the overlay on mobile view.

    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
    
    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .avia_transform a .image-overlay {
        display: none !important;
      }
    }

    Best regards,
    Ismael

    in reply to: YouTube not loading on certain pages #1483826

    Hi,

    The site is not loading properly on our end anymore. Did you impose any limitations to site access?

    Best regards,
    Ismael

    in reply to: Problem of transition with content slider #1483825

    Hi,

    You can try this css code but it might affect the slider transition a bit.

    .slide-entry-wrap:not(.active-slide) .slideimage .fg-image-viewer .fiv-inner .fiv-inner-container .fg-item .fg-thumb img {
        opacity: 0;
    }

    For additional assistance, please contact the developers of the slider plugin.

    Best regards,
    Ismael

    in reply to: Color section header for mobile and desktop #1483823

    Hi,

    Try adding this css code to adjust the padding of the black section.

    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
    
    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top #main #av_section_2.avia-section .template-page {
        padding: 20px 0;
      }
    }
    

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Edit buttons in fullscreen-slider #1483822

    Hi,

    You’re quite welcome! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Content Protection #1483820

    Hey joceywatts,

    Thank you for the inquiry.

    The theme doesn’t include a built-in content protection feature by default. Did you install any security or copyright plugins? Please create a test page and provide the site URL along with login details in the private field so we can check the issue.

    Best regards,
    Ismael

    Hey epkdesign,

    Thank you for the inquiry.

    Do the portfolio entries share the same category aside from commercial or residential? If they do, sorting by category will not be possible since they are all grouped under the same category. If that’s not the case, you can use the following filter in the functions.php file.

    add_filter( 'avf_post_nav_settings', 'avf_post_nav_settings_mod', 10, 1);
    function avf_post_nav_settings_mod($settings)
    {
        $settings['same_category'] = true;
        return $settings;
    }

    Best regards,
    Ismael

    in reply to: Changing Left Hand menu font size #1483815

    Hi,

    Try to use this css code to adjust the font size of the menu items inside the nav widget:

    #top .widget_nav_menu li {
        font-size: 16px;
    }

    Best regards,
    Ismael

    Hey JennyGr,

    Thank you for the inquiry.

    You can use this css code to adjust the styte of the header and the breadcrumbs container on mobile view:

    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
    
    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all .av-logo-container .widget {
        display: none;
      }
    
      #top #wrap_all .title_container .main-title {
        display: none;
      }
    
      .responsive .title_container .main-title+.breadcrumb {
        top: 10px;
        left: 0px;
      }
    
      .responsive #header_meta .sub_menu>ul>li {
        display: none;
      }
    
      .responsive #header_meta .sub_menu>ul>li:last-child {
        display: block;
      }
    }

    Best regards,
    Ismael

    in reply to: Image, Gallery like This #1483812

    Hey mickhb,

    Thank you for the inquiry.

    You can use either the Masonry or Masonry Gallery element. Make sure to upload tall portrait images. If you choose the Masonry element, you can control the item sizes by adding the tags “portrait” or “landscape” to your portfolio items. Make sure to set the Styling > Masonry Settings > Size Settings to Perfect Manual Masonry.

    Please check the links below for more info:

    https://kriesi.at/themes/enfold/shortcodes/masonry-gallery/
    https://kriesi.at/documentation/enfold/masonry/

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The page seems to be editable when we checked. Please retfrain from switching to the classic editor while the Advanced Layout Builder (ALB) is active.

    Best regards,
    Ismael

    in reply to: Problem of transition with content slider #1483809

    Hey Pierre,

    Thank you for the inquiry.

    Looks like you’re using a custom gallery from a plugin in the content slider. Please edit the gallery settings and check if there’s an option for a slider background. If not, consider reaching out to the plugin developers for further assistance.

    Best regards,
    Ismael

    in reply to: trying to hide the “by” on the blog posts. #1483808

    Hey Tina,

    Thank you for the inquiry.

    You have to modify the includes > loop-index.php file, and look for this code around line 548:

    
    $meta_author  = '<span class="blog-author minor-meta">' . __( 'by', 'avia_framework' ) . ' ';
    

    Remove the word "by", or replace it with:

    
    $meta_author  = '<span class="blog-author minor-meta">';
    

    Best regards,
    Ismael

Viewing 30 posts - 601 through 630 (of 66,254 total)