Forum Replies Created

Viewing 30 posts - 23,611 through 23,640 (of 66,046 total)
  • Author
    Posts
  • in reply to: Image gallery in LayerSlider #1061433

    Hey Freek,

    Thank you for using Enfold.

    Did you check the actual page? The shortcode will not render in the layer slider editor but it is going to work in the front end.

    Best regards,
    Ismael

    in reply to: Video controls and autoplay #1061427

    Hi,

    That is a browser autoplay policy that we don’t have control over. You can read more about that policy here:

    // https://developers.google.com/web/updates/2017/09/autoplay-policy-changes

    Have you tried muting the video?

    Chrome’s autoplay policies are simple:

    Muted autoplay is always allowed.
    Autoplay with sound is allowed if:
    User has interacted with the domain (click, tap, etc.).
    On desktop, the user’s Media Engagement Index threshold has been crossed, meaning the user has previously play video with sound.
    On mobile, the user has [added the site to their home screen].
    Top frames can delegate autoplay permission to their iframes to allow autoplay with sound.

    Best regards,
    Ismael

    Hi,

    I would like to apologize for the confusion. It’s true that we are swamp with inquiries at the this moment, so we can’t comply with every customization requests.
    I’m glad that you’ve found the solution yourself. Thanks for sharing it. Let us know if we can help you with anything else.

    Best regards,
    Ismael`

    in reply to: Center footer widgets in mobile only #1061420

    Hi,

    You need to move this css code:

    #footer .widget  p:nth-child(5) {
        text-align: center;
        display: flex;
        justify-content: center;
    }
    

    … inside the mobile css media query because it is affecting the desktop view.

    Best regards,
    Ismael

    Hi,

    Thanks for the update. Have you tried adding the css code in the child theme’s style.css file or the Enfold > General Styling > Quick CSS field panel?

    Please provide the url of the page where the sign up form resides and post your css modifications on pastebin.com.

    Best regards,
    Ismael

    Hi,

    We are very sorry for the confusion. Do you have a staging or a dev site where we can see this issue?
    The site is currently using 4.4.1 so it checks out fine when I tested it. Have you tried it without the 404 page option enabled?

    Best regards,
    Ismael

    Hi!

    @tangerinemoons: You have to remove the attribute from the functions-enfold.php file directly, at least for now, as previously suggested here:

    // https://kriesi.at/support/topic/improved-added-relnofollow-excuse-me-what-this-is-the-biggest-nonsense/#post-1051813

    @HokusPocus: Thank you for your inputs. I’m sure you can handle adding that filter for your clients, but we’ll take that into consideration. I’ll forward it to our developers.

    Best regards,
    Ismael

    in reply to: Custom Error 404 Page not work correctly #1061410

    Hi,

    Thank you for your patience. Would you mind if we access the file server? We will need the FTP login details. Please post it in the private field.

    Best regards,
    Ismael

    in reply to: Link to shipping in lightbox #1061409

    Hey Create-my-Apps,

    Thank you for using Enfold.

    This is probably possible with the help of a third party plugin, but it’s not available as an option in the theme. Unfortunately, no plugin comes in to mind with that functionality. Please ask the Woocoomerce authors or contact their support team.

    Best regards,
    Ismael

    in reply to: Permanently show scrollbar in dropdown menu #1061407

    Hi,

    Thanks for the update.

    It’s possible but I don’t know why you need a scrollbar when the list of menu items are not that long. I mean the menu items are completely visible above the fold. Anyway, you can use this css code to display the scroll bar.

    .sub-menu {
        overflow-y: scroll;
    }

    Best regards,
    Ismael

    in reply to: PROBLEM WITH UPDATE #1061405

    Hi,

    I would like to apologize for the late response. Did you happen to add new image sizes, or edit existing ones?
    Please post the FTP and WP details in the private field so that we can debug the issue.

    Best regards,
    Ismael

    in reply to: Issues installing enfold #1061040

    Hi!

    Thanks for the update.

    The theme has been activated in your installation. All you need to do is generate a private token for Envato API and put it in the Enfold > Theme Updates panel so that you can verify your account. Please let us know if you need anything else.

    Cheers!
    Ismael

    in reply to: Blog and Portfolio categories nested #1060969

    Hi,

    You can remove the default “portfolio_register” function and create your own custom post type registration.

    // https://codex.wordpress.org/Function_Reference/remove_action

    remove_action('init', 'portfolio_register');
    add_action('init','portfolio_register_new');
    function portfolio_register_new() {
       // the portfolio_register function here
    }
    

    Best regards,
    Ismael

    in reply to: image link #1060966

    Hi,

    Thanks for the info.

    This should remove every image overlay in the site including the ones in the blog page.

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

    Best regards,
    Ismael

    Hi,

    Yes, you have to add it in the functions.php file but that filter is not available yet, so you have to modify the code manually for now. It should be available on the next patch.

    Best regards,
    Ismael

    in reply to: picture problem #1060964

    Hi,

    Thank you for the info and I would like to apologize for the misunderstanding. The theme is actually using a predefined thumbnail for the grid layout because it has to make sure that every thumbnails are square. The maximum size is 450x450px and the thumbnail is called “portfolio”. If you want to change that, you have to modify the index.php file. Look for this code around line 44:

     $atts 	= array('type' => 'grid', 'items' => get_option('posts_per_page'), 'columns'=> 3, 'class'=>'avia-builder-el-no-sibling', 'paginate'=>'yes');
    

    .. and add the “image_size” parameter:

     $atts 	= array('type' => 'grid', 'items' => get_option('posts_per_page'), 'columns'=> 3, 'class'=>'avia-builder-el-no-sibling', 'paginate'=>'yes', 'preview_mode' => 'custom', 'image_size' => 'entry_without_sidebar');
    

    The changes above sets the thumbnail from the default value “portfolio” to “entry_without_sidebar”.

    Best regards,
    Ismael

    in reply to: Cant update my Enfold theme > Forbidden #1060960

    Hi,

    Thanks for the info. Have you tried doing the update on the browser’s incognito mode?
    If it doesn’t work, try this suggestion: https://kriesi.at/support/topic/an-error-occurred-while-updating-enfold-download-failed-forbidden/#post-1060546

    Or post the WP and FTP details in the private field so that we can debug the issue.

    Best regards,
    Ismael

    in reply to: Recaptcha Plugin #1060954

    Hi,

    You’re welcome. Please let us know of the results.
    We will possibly implement V3 in the future if the current version is stable enough or is proven effective.

    Best regards,
    Ismael

    in reply to: Enfold and Custom Content Shortcode plugin #1060951

    Hi,

    You don’t need to add that id for now. The custom shortcode should work with or without that unique id.

    Best regards,
    Ismael

    Hi,

    @Jaap de Wit: Did you modify this line?

    'heading_html'	=> "<{heading} class='main-title entry-title product_title'>{title}</{heading}>",
    

    The “product_title” class attribute has to be added there.


    @rmf339
    : Thank you for the confirmation and for sharing your solution.

    Best regards,
    Ismael

    in reply to: Ajax not working since updates #1060949

    Hi,

    Thanks for the update.

    Which of the scripts are they referring to? The theme doesn’t de-register any of their scripts as far as I know. Please ask them for the scripts’
    handle or name.

    Best regards,
    Ismael

    in reply to: masonry blog styling enfold 2017 #1060947

    Hi,

    Thanks for the update.

    You can use this css code to adjust the style of the captions.

    #top .av-fixed-size .av-masonry-entry.av-masonry-item-no-image .av-inner-masonry-content-pos, #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content-pos {
        vertical-align: bottom;
        text-align: center;
    }
    
    .av-inner-masonry-content-pos-content {
        background: rgba(255,255,255,.9);
        color: black;
        min-height: 128px;
        padding: 13px 0 13px 0;
    }
    
    span.av-masonry-date.meta-color {
        color: red;
    }

    Adjust the color values as you wish.

    Best regards,
    Ismael

    in reply to: Unable to set browser caching.May be because of theme? #1060944

    Hi,

    I forgot to ask for the site url. Please add it in the private field along with the login credentials so that we can tweak the settings if necessary.

    Best regards,
    Ismael

    in reply to: Maintenance Mode – Enfold 4.3 + Yoast SEO #1060942

    Hi,

    Thanks for the update. Do you mind if we take a look at the site? Please create a new ticker or thread and post the login details in the private field. Make sure that the Appearance > Editor panel is accessible.

    Best regards,
    Ismael

    in reply to: minify and concatenate option not working #1060940

    Hi,

    Yes, you can use those plugins as an alternative if the default file compression settings is not compatible with your server or setup. Or install a cache plugin such as WP Super Cache, which has its own minification option.

    Best regards,
    Ismael

    in reply to: Gridrow with Boxedlayout override #1060936

    Hi,

    Try to set the background color of the grid to transparent.

    #av-grid-custom-width-top {
        background-color: transparent !important;
        background: transparent !important;
    }

    Best regards,
    Ismael

    in reply to: Background Videos Break Page #1060930

    Hi,

    There’s a copy of the section.php shortcode file in the child theme folder. Please get a fresh copy of that file from the parent theme and re-do the modifications.

    Best regards,
    Ismael

    in reply to: product_page shortcode #1060928

    Hi,

    Thanks for the update.

    This css code should work for the product shortcode.

    div.product div.images {
        float: left;
        width: 100%;
    }
    
    .single-product-main-image {
        width: 70%;
    }
    
    div.product div.summary {
        float: right;
        width: 100%;
    }

    Best regards,
    Ismael

    in reply to: Adding Social Media Icons at bottom of mobile menu #1060926

    Hi,

    Thanks for the update.

    I modified this line a bit:

    if($('.burger-social').length) {
    				clearInterval(int);
    				return false;
    			};
    

    Best regards,
    Ismael

    in reply to: Problem about rel next/ previous in pagination #1060922

    Hi,

    Try to create an array with key value pair.

    array (
      0 => '6084',
      1 => '5880'
    ),
    

    Best regards,
    Ismael

Viewing 30 posts - 23,611 through 23,640 (of 66,046 total)