Forum Replies Created

Viewing 30 posts - 13,711 through 13,740 (of 65,711 total)
  • Author
    Posts
  • in reply to: Advanced Layout Editor (under posts) is not working #1291942

    Hey Eefke,

    Thank you for the inquiry.

    You may need to update the theme to the latest version, 4.8.1, to make it compatible with WP 5.7. And please toggle or temporarily disable the Enfold > Performance > File Compression settings after updating the theme.

    Best regards,
    Ismael

    in reply to: Page won't appear one published #1291938

    Hi,

    Glad to know that the initial issue is fixed.

    random
    are being added by the theme

    Are you using a text or code block? You might be hitting the return or enter key in your keyboard, creating a new line. If that is not the case, please create a test page so that we could check the issue properly.

    And 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: Remove thumbnails from a specific category page #1291937

    Hi,

    Looks like you have managed to remove the featured image in the news and the other section in the home page.

    .home .avia-content-slider .wp-post-image {
        display: none!important;
    }

    Let us know if you need anything else.

    Best regards,
    Ismael

    in reply to: do_shortcode issue on visual builder #1291936

    Hi,

    Are you also creating a new template? Please post the actual template file and the link where it should be applied so that we can properly check the issue.

    You may also need to add this filter to enable execution of builder shortcodes externally.

    // https://kriesi.at/support/topic/how-to-get-placeholder-to-correctly-output-shortcode/#post-1279016

    Best regards,
    Ismael

    in reply to: Menu colour issue and logo issue #1291935

    Hi,

    Thank you for the update.

    The home page’s Layout > Header visibility and transparency settings should be set to the 5th option. Currently, it is set to the second or the Transparent Header option, which is why it is always transparent.

    But you should still update the theme to the latest version, v4.8.1, as previously suggested.

    Best regards,
    Ismael

    in reply to: Mobile menu overlay – Logo and subtitle #1291934

    Hey sue007,

    Thank you for the inquiry.

    We can use the following css code to set the opacity of the subtext on mobile view.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .logo .subtext {
        opacity: 0 !important;
      }
    }

    Best regards,
    Ismael

    in reply to: Partner/Logo Element – permanent text under picture #1291932

    Hi,

    Thank you for the update.

    Did you follow the suggestion in the following thread?

    // https://kriesi.at/support/topic/partnerlogo-element-no-tooltip-but-fixed-text-under-the-picture/#post-1290582

    To style the caption, change its color or size, you can use the following css.

    .custom-caption {
      color: red;
      font-size: 12px;
    }

    Best regards,
    Ismael

    in reply to: Google reCaptcha V2 and V3 not working #1291931

    Hi,

    Thank you for the update.

    There is an available filter called avf_contact_form_recaptcha_disabled_msg, which we can use to adjust the default error message when recaptcha is disabled.

    Please add this code in the functions.php file.

    add_filter("avf_contact_form_recaptcha_disabled_msg", function($msg) {
        $msg = "My custom error message.";
        return $msg;
    }, 10, 1);
    

    Adjust the text as you wish.

    Best regards,
    Ismael

    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

Viewing 30 posts - 13,711 through 13,740 (of 65,711 total)