Forum Replies Created

Viewing 30 posts - 6,391 through 6,420 (of 35,206 total)
  • Author
    Posts
  • in reply to: On Mobile, the Full Screen Image is showing blank #1416646

    Hi,
    Thanks for the screenshot and the link to your site, from experience this looks like a lazy load issue with a caching plugin, so I put your 10Web Booster plugin into test mode and now the slider image loads on mobile. I couldn’t examine the plugin settings because it requires another login and when I went to disable the plugin it offered the “test” mode as an option. So check your plugin settings and try to disable the lazy load on the homepage or for mobile or whatever other option it gives you.

    Best regards,
    Mike

    in reply to: Customize Page Title in Breadcrumbs #1416645

    Hey Celeranttechnologycorp,
    First ensure that the Custom Fields option is enabled in the Screen Options at the top of your page in the Classic Editor:
    Enfold_Support_2989.jpeg
    Or in the Block Editor, go to Preferences ▸ Panels ▸ Custom Fields:
    Enfold_Support_2991.jpeg
    Then add a custom field custom_title and enter the value you want:
    Enfold_Support_2993.jpeg
    Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter( 'the_title', 'custom_field_title', 10, 2 );
    function custom_field_title( $title, $post_id )
    {
        if( $new_title = get_post_meta( $post_id, 'custom_title', true ) )
        {
            return $new_title;
        }
        return $title;
    }

    and your custom title will show in the title bar:
    Enfold_Support_2995.jpeg

    Best regards,
    Mike

    in reply to: Veraltete Api. Fehler bei PageSpeed Insights #1416644

    Hey Team-Survival,
    Thank you for your question, but in this specific case the overflow: visible is used to show the box shadow around your image along with the overflow-clip-margin: content-box
    Please note that at the bottom of the post it says If overriding the overflow property to visible is not intentional in this case it is intentional, PageSpeed can’t tell the difference, so this can be ignored.

    Best regards,
    Mike

    in reply to: Privacy policy buttons #1416643

    Hi,
    Yes I see, but this is not an option and not an easy change.

    Best regards,
    Mike

    in reply to: Open Street Map Marker line brakes #1416642

    Hi,
    Just to follow up, the Dev Team has applied this to the theme for the next update. So you could remove the above solution after the next update or leave it as it would not cause any issues.
    Unless there is anything else we can help with on this issue, shall we close this thread then?

    Best regards,
    Mike

    in reply to: Column Margin – Custom Margin Error #1416640

    Hi,
    The Dev Team has fixed this and will be in the next update, if you want to try it you can download the columns.php below and replace your via FTP at /enfold/config-templatebuilder/avia-shortcodes/columns/columns.php

    Best regards,
    Mike

    in reply to: Bibliothèque d’images #1416639

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Issue with the WooCommerce catalog thumbnail #1416638

    Hi,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 );
    function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) {
        return 'fullsize';
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    I tested on my test site and the images in a category product page used the original full size image, I couldn’t test on your site because the Authenticator blocked access.

    Best regards,
    Mike

    in reply to: Alternate Content #1416636

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Hide Post on Single Post #1416635

    Hey Celeranttechnologycorp,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter('avia_post_slide_query', 'avf_custom_post_grid_query');
    function avf_custom_post_grid_query ( $query ) {
      if(is_singular('post')) {
          global $post;
    
          $query['post__not_in'] = array($post->ID);
      }
      return $query;
    }

    Best regards,
    Mike

    in reply to: Bibliothèque d’images #1416634

    Hey Sébastien,
    You can go to our demos page and then choose any of the demos and right-click to save any of the images.
    For the video in the startup business demo it is on YouTube https://www.youtube.com/watch?v=Wq-DEL2ONGg
    Enfold_Support_2985.jpeg

    Best regards,
    Mike

    in reply to: Privacy policy buttons #1416633

    Hi,
    Sorry I misunderstood you, I thought that you wanted the cookie bar buttons rounded like your other buttons, like this:
    Enfold_Support_2983.jpeg
    The cookie bar doesn’t have this option.

    Best regards,
    Mike

    in reply to: deprecated functions #1416631

    Hey Heinz,
    I believe that this deprecation warning was added by the Dev Team as a part of the apply_filters_deprecated, the warning is shown while the new filter is applied, The warning is added so the theme is backward compatible. I assume that you are seeing this because you have wp_debug enabled, so you can ignore this warning.

    Best regards,
    Mike

    in reply to: Custom field in comments section #1416629

    Hey Fabian,
    You could modify the file at enfold/includes/loop-comments.php and add this line <div class="comment_author_email"><?php comment_author_email(); ?></div> on line 28:
    Enfold_Support_2981.jpeg
    but you won’t be able to add this to your child theme, so you will need to make this change each time that you update.
    The WordPress Developer Resources advises against making the email publicity visible to assure that email harvesters do not capture your commenter’s email address as most assume that their email address will not appear in raw form on the site.
    Perhaps using a plugin to allow commenters to engage with each other would be better, such as wpDiscuz, a quick look at this seems to allow users this ability, or perhaps Disqus Comment System or Vuukle Comments
    I don’t have any experience with any of these but there seems to be many comment form replacements that allow better engagements, using a plugin would be better as they would have worked out any loop holes the bad bots would use against your visitors information, which could be an issue.

    Best regards,
    Mike

    in reply to: Image size not full width in blog post #1416623

    Hi,
    If you want to try it you could use this css instead:

    #top .slide-entry .slide-entry-title {
    word-wrap: break-word;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Advanced Layer Editor with Pages vs Posts #1416622

    Hi,
    Do you have any other questions about using ALB for posts, or shall we close this then?

    Best regards,
    Mike

    in reply to: Vimeo videos do not play automatically #1416591

    Hey henrikm5,
    I tested your page in Windows in Chrome, Firefox, & Edge and your background video plays correctly, I see it after clicking the age gate without reloading.
    On Mac in Safari, Chrome, & Firefox the background video doesn’t play after clicking the age gate, but if you go to any other page that video does play fine, and going back to the homepage then plays fine.
    So I don’t think that it is a video setting because the videos are playing, I think it related to the age gate, try disabling the age gate and see if the videos then play.
    I assume that you need the age gate, does it have an option to reload the page when the accept button is clicked? This may help.

    Best regards,
    Mike

    in reply to: Background video on color section not working properly? #1416590

    Hey Illingco,
    I tested a color section set to 100% height with your video as the background of the color section and the video is full screen.
    See the link below, so I’m not sure what you may have done differently, perhaps you could include an admin login for us to examine.
    Also I don’t see any black bars in Edge.

    Best regards,
    Mike

    in reply to: Drop down menu: Transparent background #1416587

    Hey Lene,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .av_header_transparency #menu-item-1123 .sub-menu,
    #top .av_header_transparency #menu-item-1123 .sub-menu li,
    #top .av_header_transparency #menu-item-1123 .sub-menu a {
    background: transparent !important;
    box-shadow: none !important;
    border: none;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Demo import not possible #1416585

    Hi,
    As I understand your mockup your header needs to be 188px, the logo needs to be 102px centered in the header, but that gives you 43px above & below the logo, but your mockup says it’s 20px?
    Nonetheless, I changed the header height at Enfold Theme Options ▸ Header ▸ Header Layout ▸ Header Custom Height to 188px, then I added this css to make the logo 102px and center it.

    @media only screen and (min-width: 990px) { 
    #top .logo a {
    	display: flex;
        align-items: center;
    }
    #top .logo img {
    	height: 102px;
    }
    }

    You can adjust to suit by reducing the header or change the logo height so the space is down to 20px.
    As for the space between the menu items to add 50px I added this css:

    @media only screen and (min-width: 990px) { 
    #avia-menu.av-main-nav > li > a {
        padding: 0 38px;
    }
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Advanced Layer Editor with Pages vs Posts #1416582

    Hi,
    Unfortunately not, if you want to use ALB elements in your posts it may be easier for you to use the ALB editor and simply add your featured image & comment form manually using the elements, than the other way around where you would use the magic wand.

    Best regards,
    Mike

    in reply to: Privacy policy buttons #1416581

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .avia-cookie-consent-button {
    	 border-radius: 50px;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Full Width Easy Slider: Button’s background #1416580

    Hey Lene,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #main .avia-slideshow-button.avia-color-light {
        background-color: rgba(0,0,0,0);
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Unify search engines #1416579

    Hey Antonio,
    Thanks for your question, but I don’t think that it is possible to use the Filter Everything plugin to replace all WordPress searchs, it doesn’t seem to be an option for the plugin.

    Best regards,
    Mike

    in reply to: Transparent header #1416576

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Font color remains grey while it should be black #1416551

    Hey Jurriaan,
    This is due to your font weight set to 100 which is very light, I assume this is a custom font that you added, try changing it to normal (400) in your css for the font or in the Enfold Theme Options ▸ Advanced Styling, if that is where the font weight is set, or try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #wrap_all .all_colors p,#top #wrap_all .all_colors h3 {
    	font-weight: normal;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Too much padding between top image and content #1416550

    Hey daves1997,
    Try removing the bottom padding from your special heading:
    Enfold_Support_2974.jpeg
    and change your top color section height from 75% of the screen to 300px the size of the image:
    Enfold_Support_2976.jpeg

    Best regards,
    Mike

    in reply to: Disable “graphic” ampersands, quotes and apostrophes #1416548

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Horizontal Icons List #1416547

    Hey stephaniebLOS,
    In your footer I see this:
    Enfold_Support_2970.jpeg
    Try changing ypur iconlist_icon line-height to 20px like this:

    .horizontalicons .iconlist_icon {
        margin-right: 10px;
        height: 30px;
        width: 30px;
        line-height: 20px;
    }

    and the center icons will be centered:
    Enfold_Support_2972.jpeg
    To center the icons in the footer try adding this css:

    .horizontalicons {
    	display: flex;
    	justify-content: center;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Disable “graphic” ampersands, quotes and apostrophes #1416542

    Hi,
    When I check your page I see Yigit’s solution above loading:
    Enfold_Support_2966.jpeg
    Please remove this css and disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files then add this css to your WordPress ▸ Customize ▸ Additional CSS or Enfold Theme Options ▸ General Styling ▸ Quick CSS field and Then clear your browser cache and any cache plugin, and check.

    #top .special_amp {
    font-family: inherit;
    font-style: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit!important;
    }

    This is the results I see when I test on your page:
    Enfold_Support_2968.jpeg

    Best regards,
    Mike

Viewing 30 posts - 6,391 through 6,420 (of 35,206 total)