Forum Replies Created

Viewing 30 posts - 14,821 through 14,850 (of 66,813 total)
  • Author
    Posts
  • in reply to: Archive settings – How to change #1291930

    Hi,

    Thank you for the update.

    Which posts element are you actually using? You should be able to use the avia_blog_post_query filter to adjust the default query of a specific Blog Posts element. The pagination option can be enabled/disabled in the Blog Posts settings, under the Styling tab.

    Best regards,
    Ismael

    in reply to: How to hide Avia_Forced_Reroute form url #1291929

    Hi,

    Thank you for the inquiry.

    Have you tried setting the Custom Error 404 Page settings to the second option (Display selected page without redirect)? This should show the 404 page without appending the query arg avia_forced_reroute=1.

    Best regards,
    Ismael

    in reply to: How to delete debugging Info for Theme support #1291928

    Hey Jon,

    Thank you for the inquiry.

    We can use the avf_debugging_info filter to remove the content of the debugging info. Please add this code in the functions.php file.

    add_filter("avf_debugging_info", function($debug) {
       return '';
    }, 10, 1);
    

    Related thread: https://kriesi.at/support/topic/hide-debugging-info-verion-4-4-1/#post-991515

    Best regards,
    Ismael

    in reply to: Hamburger menu not working/pictures gone in shop?? #1291927

    Hey Edwin,

    Thank you for the inquiry.

    The mobile menu is working properly when we checked the site. Have you tried disabling the css and script compression or minification settings temporarily? This is to ensure that the updated files are actually loaded. You may also need to purge the cache afterwards, or disable it temporarily.

    Best regards,
    Ismael

    in reply to: Fixierte Kopfzeile verkleinern #1291926

    Hey Reinhard,

    Thank you for the inquiry.

    By default, the theme will apply half of the initial height to the shrank header, but we could manually modify the enfold/js/avia-snippet-sticky-header.js to adjust it.

    Please look for this code around line 90..

    newH = el_height/2;
    						//header.addClass('header-scrolled');
    						av_change_class( header, 'add', 'header-scrolled' );
    

    .. and replace it with:

    newH = 60;
    						//header.addClass('header-scrolled');
    						av_change_class( header, 'add', 'header-scrolled' );
    

    You may need to disable the Performance > File Compression settings after the modification.

    Best regards,
    Ismael

    in reply to: social links #1291925

    Hi,

    Did you use the avf_social_icons_options filter to assign an icon name to the social icon?

    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    	$icons['Weibo'] = 'icon_name';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    

    After assigning an icon name to a social icon, only then you can define the actual icon.

    // WIEBO - Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['icon_name']	 = array( 'font' =>'entypo-fontello', 'icon' => 'ue854');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    

    Best regards,
    Ismael

    in reply to: Probleme with anchor #1291924

    Hey edechauvigny92,

    Thank you for the inquiry.

    The anchors seem to be working properly on our end. Did you replace the masonry elements with sliders? If you prefer to use the masonry element, we could disable the animation of the items so that the actual window height is available right from the beginning, which will hopefully fix the anchor issue.

    .avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry {
        -webkit-animation: none;
        animation: none;
    }

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We could prepend the page id to the css or selector above so that the changes only applies to a particular page.

    .page-id-2531 .mfp-title {
        display: none !important;
    }
    

    Sadly, there is no available option for this specific case, so the use of css as recommended above is required.

    Best regards,
    Ismael

    in reply to: Title of the Cookiebar: #1291922

    Hey Raph,

    Thank you for the inquiry.

    You can use either one of the following plugins to adjust the default text of the cookie badge.

    // https://wordpress.org/plugins/say-what/
    // https://wordpress.org/plugins/loco-translate/

    Or manually edit it in the enfold/includes/helper-privacy.php file around line 1931.

    Best regards,
    Ismael

    Hi,

    Glad it is fixed. The gray line is probably the default top border of the color section. Is there a test page where we could see the issue?

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: Images are out of alignment #1291759

    Hi,

    Thank you for the info.

    Did you set the second row of columns to have an equal height? You may also need to adjust the column breakpoint. The first row behaves differently because the “equal height” option is enabled.

    Best regards,
    Ismael

    in reply to: Update not working #1291755

    Hey!

    Sorry for the delay. We replied in your previous thread regarding the theme update.

    // https://kriesi.at/support/topic/is-ticket-made/

    Again, the current version of the theme in your installation contains the old updater, which is now deprecated or is no longer working. You have to upgrade the theme manually this time.

    Regards,
    Ismael

    in reply to: Is ticket made? #1291753

    Hey Kellyherman,

    Thank you for the inquiry.

    You should be able to open a new ticket or forum post in the form below.

    // https://kriesi.at/support/forum/enfold/#new-post

    Are you having issues with the automatic update? It is possible that the current version of the theme in your site contains the old theme updater, which is no longer working. You have to update the theme manually via FTP.

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

    Best regards,
    Ismael

    in reply to: How to reduce spacing before Easy Slider ? #1291751

    Hey dominiquehurley,

    Thank you for the inquiry.

    Have you tried moving the text block inside a column? That should decrease the space above the slider. You could also set a negative bottom margin to the column to pull the slider upwards, decreasing the space further between it and the text block.

    Best regards,
    Ismael

    Hey Peter,

    Thank you for the inquiry.

    It is possible that the layout of the row breaks because of a particular content. Did you add any custom content in the columns such as scripts or input tags? You may need to re-add the columns and move the existing content, then remove the old ones.

    Best regards,
    Ismael

    in reply to: Border colour #1291708

    Hey split-vote,

    Thank you for the inquiry.

    We may need to check the page containing the div in order to provide a fix or recommend an appropriate css code, if necessary. Please post the page URL in the private field, and provide an account for the dashboard if possible.

    Best regards,
    Ismael

    in reply to: Avia Layout Builder not loading on some Pages #1291706

    Hi,

    Please let me if you can think of a different workaround than [sel] since that seems to no longer be working for us, and I do need to use this word.

    Does the custom shortcode that we provided above still exists in the functions.php file?

    function select_shortcode() {
       return "select";
    }
    add_shortcode( 'sel', 'select_shortcode' );
    

    Maybe it was removed after one of the updates?

    Best regards,
    Ismael

    Hi,

    We are not certain what you mean by that. Would you mind explaining further? If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: Timeline – Milestone Bullet #1291703

    Hi,

    Glad it is fixed. Thanks to @Guenni007 :). Please do not hesitate to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Hamburger menu on mobile not working under 4.8 #1291702

    Hi,

    @tsays: The mobile menu seems to be working properly on our end. Have you tried removing the cache and/or disabling the Enfold > Performance > File Compression settings?

    @xenobyte: We can reproduce the issue on your site, but we are not yet sure what is causing it and we do not see any errors in the browser console. Did you modify the header.php or the includes > helper-main-menu.php file?

    Please try to install the following plugin, then set jQuery to the legacy version.

    // https://wordpress.org/plugins/enable-jquery-migrate-helper/

    Best regards,
    Ismael

    in reply to: Blog image totally visible #1291700

    Hi,

    Thank you for the inquiry.

    When the size of the registered thumbnail is not the same as the size of the uploaded image, WordPress automatically crops it to the specified thumbnail dimension. We could set it so that the thumbnail is not cropped, but the blog grid or the current blog layout may look different than it is now.

    Best regards,
    Ismael

    in reply to: Gap above main menu bar #1291696

    Hey ConistonCommunityCentre,

    Thank you for the inquiry.

    We do not see any spaces or gaps above the header or main menu on desktop view. Would you mind providing a screenshot of the issue using imgur or dropbox?

    Best regards,
    Ismael

    in reply to: Change Search Widget Search button color #1291671

    Hi,

    Glad @Guenni007 helped! Please feel free to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hey sescha,

    Thank you for the inquiry.

    The theme is using the avia_woocommerce_output_upsells function in the enfold > config-woocommerce > config.php file to render upsells, and you should be able to use almost the same function to include cross-sell products in the product page.

    The function can be found around line 1303 of the mentioned file above, and it is attached to the woocommerce_after_single_product_summary hook.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    We are able to reproduce issue on Chrome Windows 10, but we are not yet sure what is causing it. Temporarily, the solution in the following thread should help.

    // https://kriesi.at/support/topic/enfold-photo-gallery-thumbnail-issue/#post-1260613

    Best regards,
    Ismael

    Hey ddezylva,

    Thank you for the inquiry.

    The missing elements or content are visible on our end even when we are not logged in, and the background image is correctly removed when we resize the browser. Is this still an issue on your end? We checked the site on Firefox Dev Windows 10.

    Best regards,
    Ismael

    in reply to: Video background not filling color section #1291665

    Hi,

    Thank you for the update.

    We could not find the video in any of the color sections in the front page. Where did you apply it? Please provide a direct link to a test page so that we could check it.

    Best regards,
    Ismael

    in reply to: video background from youtube not working #1291663

    Hi,

    Thank you for the info.

    The videos do not play automatically because the Privacy & Cookies > Cookie Handling > Default Cookie Behavior is set to the 4th option, which requires the users to manually opt in to external services including videos. You may have to set it to the first or second option if you want the videos to play automatically on page load.

    Best regards,
    Ismael

    in reply to: Contentslider Background #1291662

    Hi,

    Thank you for the info.

    We could use nth-child selectors to apply a different background for each slider item.

    .avia-content-slider-inner .slide-entry-wrap:nth-child(1) {
    	background: red;
    }
    
    .avia-content-slider-inner .slide-entry-wrap:nth-child(2) {
    	background: orange;
    }
    
    .avia-content-slider-inner .slide-entry-wrap:nth-child(3) {
    	background: blue;
    }
    

    // https://www.w3schools.com/cssref/sel_nth-child.asp

    And if you want to apply this to a specific content slider element only, you have to give the element a unique class name or ID.

    // https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    in reply to: Mansonry gallery uses wrong title for captions #1291661

    Hi,

    Thank you for the update.

    What is the login URL? We tried the default login URL and direct access to the dashboard, but it returned 404. Please post the login URL in the private field and the link to the test page with the masonry gallery.

    Best regards,
    Ismael

Viewing 30 posts - 14,821 through 14,850 (of 66,813 total)