Forum Replies Created
-
AuthorPosts
-
Hi,
The first product page doesn’t exist or is not found. We would like to help you with this but we are not familiar with the plugin’s code. Please contact the plugin author for additional help.
Best regards,
IsmaelHi,
Thanks for the update.
The “avia_slideshow_video_helper” class has been overridden in the functions.php file. You have to update it and include the “is_extern_service” function.
/** * Checks, if teh video * @since 4.4 * @param string $video_url * @return boolean */ static public function is_extern_service( $video_url ) { $ervice = avia_slideshow_video_helper::which_video_service($video_url); return in_array( $ervice, avia_slideshow_video_helper::$extern_services ); }The original class is inside the config-templatebuilder > aviashortcodes > av-helper-slideshow.php file.
Best regards,
IsmaelHi,
Thanks for the update.
The theme doesn’t interfere, at least not directly, with any of those scripts but it is possible that the scripts they depend on such as “jquery migrate” are being disabled. Please ask the plugin author for script name and the list of dependencies it relies on.
// https://developer.wordpress.org/reference/functions/wp_register_script/
Best regards,
IsmaelHi,
I’m not really sure which background you’re referring to. And the tooltip size depends on the length of the text in the image description. Please provide a screenshot using imgur or dropbox.
Best regards,
IsmaelFebruary 4, 2019 at 3:41 am in reply to: Unable to set browser caching.May be because of theme? #1062461Hi,
Can we access the site? We would like to check the settings.
Best regards,
IsmaelHi,
Thanks for the update.
I can reproduce the issue but I’m not seeing any errors in the console. Unfortunately, we are not familiar with their code or how their script works, so it is a bit difficult to debug. Please ask the plugin or the script authors for additional info. Is there any documentation that we can check?
Best regards,
IsmaelHi,
You can use the “wp_head” or the “wp_footer” hooks to render those snippets inside the head tag or after the body tag.
Best regards,
IsmaelHi,
You’re welcome. We’ll close the thread now.
Have a nice day.
Best regards,
IsmaelHi,
@MCGWebMaster: This css code should change the background color of the masonry caption:.av-fixed-size .av-masonry-entry .av-inner-masonry-content, .av-caption-on-hover .av-masonry-item-with-image.av-masonry-entry .av-inner-masonry-content, .av-flex-size.av-caption-on-hover-hide .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content { background-color: rgba(0,0,0,0.5); }If it doesn’t change anything, please create a new ticket with the site url or the link to the actual page with the masonry element.
Best regards,
IsmaelHey 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,
Ismael -
AuthorPosts
