Forum Replies Created
-
AuthorPosts
-
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,
IsmaelHi,
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,
IsmaelFebruary 1, 2019 at 9:07 am in reply to: Customize shortcode of post_meta_infos to display the last modified date #1061422Hi,
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`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,
IsmaelFebruary 1, 2019 at 8:47 am in reply to: Where do I place html and css for Mailchimp newslatter sign up form? #1061415Hi,
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,
IsmaelFebruary 1, 2019 at 8:45 am in reply to: 4.5.2 gets 404 error but 4.3.2 gets code 200 (everything works fine) #1061414Hi,
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,
IsmaelFebruary 1, 2019 at 8:34 am in reply to: improved: added rel='nofollow' ? Excuse me? What? This is the biggest nonsense #1061411Hi!
@tangerinemoons: You have to remove the attribute from the functions-enfold.php file directly, at least for now, as previously suggested here:
@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,
IsmaelHi,
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,
IsmaelHey 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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi!
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!
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelJanuary 31, 2019 at 1:32 pm in reply to: improved: added rel='nofollow' ? Excuse me? What? This is the biggest nonsense #1060965Hi,
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,
IsmaelHi,
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,
IsmaelHi,
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-1060546Or post the WP and FTP details in the private field so that we can debug the issue.
Best regards,
IsmaelHi,
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,
IsmaelHi,
You don’t need to add that id for now. The custom shortcode should work with or without that unique id.
Best regards,
IsmaelJanuary 31, 2019 at 1:07 pm in reply to: "undefined" text displayed on products with WooCommerce Add On fields #1060950Hi,
@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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelJanuary 31, 2019 at 12:57 pm in reply to: Unable to set browser caching.May be because of theme? #1060944Hi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelJanuary 31, 2019 at 12:27 pm in reply to: Adding Social Media Icons at bottom of mobile menu #1060926Hi,
Thanks for the update.
I modified this line a bit:
if($('.burger-social').length) { clearInterval(int); return false; };
Best regards,
Ismael -
AuthorPosts