Forum Replies Created

Viewing 30 posts - 23,701 through 23,730 (of 67,155 total)
  • Author
    Posts
  • in reply to: Mobile menu color #1085169

    Hey Pas7o,

    Thank you for using Enfold.

    You have to remove the following css code or wrap it inside a css media query if you intend to change the background of the submenu on desktop view.

    #top #wrap_all .sub-menu {
        background: #002fa7;
    }

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Then they block the account until you contact them

    You should probably move to a different host then. They should know how WordPress handles images. Are you uploading images on a regular basis?

    Enfold however kicks that up to 12+

    A default theme doesn’t offer new elements or shortcodes, so it doesn’t really need that many thumbnails. The theme on the other hand has to generate thumbnails for a slider, color section, masonry, portfolio items etc. I’m sure you get the point.

    rather than recommending child themes and functions hacking and adding third party plugins

    Using the child theme to override existing functions is not “hacky” nor using a third party plugin. That’s how WordPress works. Why would you develop something from scratch if there is an available tool out there that can do the same thing?

    for instance Enfold adds sizes for portfolio, if I am not a photography site I probably wont have a portfolio section and I am likely to never use portfolio image sizes so I don’t need the portfolio size images generated

    We provided you with a filter that can do just that. You can also use a third party plugin if you don’t want to get into coding or use a snippet in the functions.php file.

    Best regards,
    Ismael

    in reply to: How to change related post style to grid #1084541

    Hi,

    Thanks for the update.

    Use this filter in the functions.php file to exclude the current post.

    add_filter('avia_post_slide_query','avia_post_slide_query_mod', 10, 2);
    function avia_post_slide_query_mod($query, $params)
    {
        if(is_singular('post')) {
            $query['post__not_in'] = array(avia_get_the_ID());
        }
        return $query;
    }
    

    Best regards,
    Ismael

    in reply to: Main Menu Overlapping Page Content While Scrolling #1084538

    Hi,

    Thanks for the update.

    Can you provide a screenshot of the overlap issue? We can’t reproduce it on our end. You can upload the screenshot to imgur or dropbox.

    Best regards,
    Ismael

    in reply to: Landing page plugin conflict #1084536

    Hi,

    You should try adding the css code in the General Styling > Quick CSS field. And don’t forget to toggle the Performance > File Compression settings afterwards.

    Best regards,
    Ismael

    in reply to: Widget area #1084411

    Hey Lara,

    Thank you for using Enfold.

    Are you expecting it to render automatically because it’s the parent page? You have to manually add that page in the “Career subnav” menu.

    Best regards,
    Ismael

    in reply to: Spam emails being set through Contact Forms #1084410

    Hey jamesbarren,

    Thank you for using Enfold.

    You can enable the Google ReCAPTCHA option in the Enfold > Google Services panel on version 4.5.5. All you need is a API key pair for v2 or v3, which can be generated from the recaptcha admin console.

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    This css code should display the menu-fx container or menu underline on hover.

    .avia-menu li:hover a .avia-menu-fx {
        position: absolute;
        bottom: -1px;
        height: 2px;
        z-index: 10;
        width: 100%;
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    Best regards,
    Ismael

    in reply to: Avia Builder Not Resolving #1084391

    Hi,

    Thanks for the update.

    The admin_ajax.php file is currently not accessible. Please try to deactivate the plugins temporarily and ask your hosting provider if the mod_sec/mod_security module blocks or blacklists the said file. Is the site hosted on GoDaddy?

    admin-ajax.php:1 Failed to load resource: the server responded with a status of 403 (Forbidden)

    Best regards,
    Ismael

    in reply to: Installing latest version to correct Woo Commerce error #1084387

    Hi,

    Did you add the image as a layer? Try to set it as the slider background or create another layer using the same image and then toggle both layers’ device visibility. Also, you have the option to hide the layer slider on mobile view and replace it with a different slider or element.

    Best regards,
    Ismael

    Hey weathertight,

    Thank you for using Enfold.

    That is the default behavior of the sliders. It can’t load different versions of the image based on the screen or device width. We can add the srcset attribute to an image tag, but the images in the slider are set as background, so that’s not possible. With that said, what you can do is make sure that the images in the slider are fully optimized having the smallest size possible without losing quality.

    // https://kriesi.at/archives/4-key-wordpress-image-optimization-tips

    You can read more about site optimization in the following link.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Best regards,
    Ismael

    in reply to: Padding custom bullet #1084374

    Hey kruispunt40,

    Thank you for using Enfold.

    Add a margin to the image or bullet so that it separates from the text.

    
    .avia_textblock li:before {
    margin-right: 10px;
    }

    Best regards,
    Ismael

    in reply to: Mega Menu 6 Columns #1084372

    Hey whdsolutions,

    Thank you for using Enfold.

    You can add another menu item and set it as the child or second level of the mega menu. It’s going to be automatically converted to a column.

    Best regards,
    Ismael

    in reply to: footer mobil phone #1084367

    Hi,

    You should configure the Screen Options of the separator/whitespace element inside the third 1/3 column so that it’s only visible on desktop or tablet view or both. Set it so it’s hidden on mobile view.

    Best regards,
    Ismael

    in reply to: Featured Image -Posts #1084366

    Hi,

    You can add the “avf_modify_thumb_size” filter in the child theme’s functions.php file to adjust the size of the existing thumbnails.

    Example:

    add_filter( 'avf_modify_thumb_size', 'avf_modify_thumb_size_mod', 10, 1 );
    function avf_modify_thumb_size_mod( $size ) {
      $size['entry_with_sidebar'] = array('width'=>845, 'height'=>475);
      return $size;
    }

    Best regards,
    Ismael

    in reply to: Header on site marked with "noindex" #1084365

    Hi,

    Thanks for the update.

    That function should allow bots as long as the following conditions are met: it is a post, a page, the home page or is not on a paginated page. That is the existing logic in the function.

    if ((is_single() || is_page() || is_home() ) && ( !is_paged() ))
    		{
    			$meta = '<meta name="robots" content="index, follow" />' . "\n";
    		}
    

    Please enable the function back and try to deactivate the plugins temporarily.

    Best regards,
    Ismael

    in reply to: Meta data in posts #1084362

    Hi,

    Thanks for the update.

    You can use this css code to remove the posts date from the news widgets.

    #top .news-time {
        display: none;
    }

    Best regards,
    Ismael0

    in reply to: Banner above and second menu below the header #1084360

    Hi,

    Did you enable the top header? If so, try to replace the “ava_after_main_menu” hook with “avia_meta_header” so that it renders the banner above the main header container.

    add_action( 'avia_meta_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
        dynamic_sidebar( 'header' );
    }

    Best regards,
    Ismael

    in reply to: LayerSlider showing only blank white space #1084358

    Hi,

    You can download the files manually from your Themeforest account and upload it via FTP to your server.

    // https://kriesi.at/documentation/enfold/install-enfold-theme/#reinstall-or-update-using-ftp
    // https://kriesi.at/archives/the-complete-guide-to-updating-enfold

    Best regards,
    Ismael

    in reply to: Before I buy Enfold: Feature or Error #1084357

    Hi,

    Their font ‘titillium web’ is locally installed on my server (imported via Enfold Child Font Manager’s Import feature).

    Is the site hosted on a shared server? Slow server response time could cause this issue because it’s not able to load the font files immediately. Optimizing the site speed should decrease the delay. The following articles should help.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
    // https://kriesi.at/archives/4-key-wordpress-image-optimization-tips

    Best regards,
    Ismael

    in reply to: play video links in lightbox #1084355

    Hi,

    Great! Glad it helped.

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: Social Icons in Footer #1084354

    Hi,

    Try to remove the second social_bookmarks container and move the instagram li or icon inside the first one. That should cause the icons to realign themselves.

    Best regards,
    Ismael

    in reply to: Contact form not sending emails #1084352

    Hi,

    Awesome! Glad it’s working now. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    You should probably include this in the init hook that you’ve just created.

    add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 11 );
    

    We set the priority from 30 to 11, so the add to cart renders right after the product title.

    Best regards,
    Ismael

    in reply to: Comments working in one post and not in another #1084349

    Hi,

    Yes, you should add it in the functions.php file. Does the comment form display properly when you switch to the default editor?

    Best regards,
    Ismael

    in reply to: mailchimp API key – cannot connect to server #1084348

    Hi,

    Thanks for the reply. You can send the invite to the email address in the private field.

    Best regards,
    Ismael

    in reply to: Dreamhost Enfold Update Loads to Page not Found #1084346

    Hi,

    Thanks for the update.

    We are able to reproduce the issue. The admin-ajax.php file is not loading properly — causing an internal server error. Please ask your hosting provider if the said file is being blocked or blacklisted by the mod_sec/mod_security rule. Have you tried deactivating the plugins?

    Best regards,
    Ismael

    in reply to: Icon List #1084345

    Hi,

    Yes, that’s what I meant. More info about that can be found in the following documentation.

    // https://www.w3schools.com/css/css_rwd_mediaqueries.asp

    Best regards,
    Ismael

    in reply to: Masonry grid inside colour block #1084344

    Hi,

    Glad it worked. For the second column, edit the first column in the row and make sure that the “Equal Height Columns” and the “Vertical Alignment” settings are the same for every portfolio items.

    Best regards,
    Ismael

    in reply to: Enfold Theme & Avia Builder Issue #1084342

    Hi,

    No, you don’t have to modify it because it is set as the blog page unless the Blog Layout > Blog Layout settings is set to the last option. This option allows you to add custom content or modify the blog page using the advance layout builder.

    Best regards,
    Ismael

Viewing 30 posts - 23,701 through 23,730 (of 67,155 total)