Forum Replies Created
-
AuthorPosts
-
December 4, 2018 at 1:41 pm in reply to: Content-subnavi – highlighting work not correctly, may interfere with other elem #1040718
Hi,
Thanks for the info.
The second item is always set as the “active-menu-item” regardless of the scroll position, so it’s always highlighted. Did you add any modifications to the theme? You can remove the highlight color temporarily.
.active-menu-item a * { color: inherit; }
Best regards,
IsmaelHi,
Thank you for using Enfold.
What is that css code for? This css modification hides the 3rd image.
.avia-image-overlay-wrap a.avia_image { overflow: hidden; }
Best regards,
IsmaelHi,
I would like to apologize for the late response. I’m not really sure what’s going on here. I’ll ask the dev team to take a look.
Best regards,
IsmaelHi,
Thank you for the update.
1.) Yes, it’s possible. Set the Enfold > Shop Options > Product gallery to the second option.
2.) Are you referring to the product tabs? Try this css code:
#top div div.product .woocommerce-tabs .panel { border: 0; }
3.) This is possible but you have to switch to the Advance Layout Builder (ALB). The tab section element is not available from the default editor.
4.) Again, this is possible but you have to manually create the product content using the ALB.
Best regards,
IsmaelHey EWAKOPI,
Thank you for using Enfold.
This css code should remove that outline:
.tabcontainer .tab { outline: none; }
Best regards,
IsmaelHi,
@marcoabis81: I can’t find this filter in your functions.php file anywhere.// https://kriesi.at/support/topic/sort-magazine-items-in-alphabetical-order/#post-758856
Where did you add it ?
Best regards,
IsmaelHi,
You can only specify the “ids” attribute when you’re using the Masonry Gallery element or when you’re working with attachments/images. It’s not going to work with posts.
Example:
[av_masonry_gallery ids='3503,3488,3591,3368' items='24' columns='flexible' paginate='pagination' size='flex' orientation='' gap='large' overlay_fx='active' animation='active' container_links='active' id='' caption_elements='title excerpt' caption_styling='' caption_display='always' color='' custom_bg='' av-medium-columns='' av-small-columns='' av-mini-columns='' av_uid='av-jp9l3263' custom_class='']
However, it’s still possible to display items based on post ids by using the “avia_masonry_entries_query” filter.
add_filter('avia_masonry_entries_query', 'avia_masonry_entries_query_mod', 10, 2); function avia_masonry_entries_query_mod($query, $params) { $query['posts__in'] = array( 2, 5, 12, 14, 20 ); return $query; }
Best regards,
IsmaelDecember 4, 2018 at 12:07 pm in reply to: Updating to Enfold 4.5 and validating Personal Token #1040684Hi,
@salalah: That warnings stems from a different issue, completely unrelated to the token. Please refer to the following thread:// https://kriesi.at/support/topic/fehler-beim-update/#post-1024333
You need to modify the enfold/framework/php/class-htmlhelper.php file around line 1571.
Best regards,
IsmaelDecember 4, 2018 at 11:51 am in reply to: WooCommerce Currency Converter – problem with Variants in Enfold #1040679Hey aerobis,
Thank you for using Enfold.
The theme is using the default price template or it doesn’t change how the prices are rendered. Can we check one of the product pages?
Best regards,
IsmaelHi!
We created an enfold recaptcha plugin here: https://github.com/KriesiMedia/enfold-library/tree/master/customizations/enfold-recaptcha
This is going to add a recaptcha widget to the theme’s contact form. Get a site and secret key from your recaptcha admin or console, make sure that it is set to V2, activate the plugin and then go to the Enfold > Google Services panel to register your keys. This should mitigate the spams meanwhile or, if we are lucky, prevent it completely.
Cheers!
IsmaelDecember 3, 2018 at 8:18 am in reply to: How to configurate Google Captcha in Contact Form because of spamming problem #1040163Hi,
That plugin is only compatible with their own contact form plugin according to their docs.
Google Captcha (reCAPTCHA) is compatible with Contact Form by BestWebSoft. You can download Contact Form plugin by following the link https://bestwebsoft.com/products/wordpress/plugins/contact-form/.
// https://docs.google.com/document/d/1yTDdMSLqvgATbo5lPzuNn4QRF0EyEPFuLoFB15beMww/edit#
It’s also compatible with the CF7 plugin but you have to purchase the pro version.
If you’d like an alternative, we created an enfold recaptcha plugin here: https://github.com/KriesiMedia/enfold-library/tree/master/customizations/enfold-recaptcha
Get a site and secret key from your recaptcha admin or console, activate the plugin and then go to the Enfold > Google Services panel to register your keys.
Best regards,
IsmaelDecember 3, 2018 at 7:19 am in reply to: Duplicate H1 and meta being displayed on blog posts #1040150Hey 01AgencyLtd,
Thanks for the update.
I don’t see the title or breadcrumb container on that page. Is this fixed?
Best regards,
IsmaelDecember 3, 2018 at 7:15 am in reply to: Portfolio Grid Abstand / Padding / mousover effect #1040147Hi,
Thanks for the update. Looks like you’ve managed to accomplish what you need. Did you add this css code?
.grid-entry.flex_column { padding: 0 20px 40px 20px; }
Best regards,
IsmaelDecember 3, 2018 at 7:02 am in reply to: Enfold Contact Form Tracking with Google Analytics #1040145Hi,
Thanks for the update.
The event is being sent properly. (see private field)
Please try to check it again today. It may take a while to propagate to or be seen in your google analytics console.
Best regards,
IsmaelDecember 3, 2018 at 6:49 am in reply to: Autoplay Vimeo video added to homepage with Avia Video block #1040143Hi,
It’s possible to enable autoplay but you have to mute the video. This is in accordance with the browsers’ autoplay policy.
// https://developers.google.com/web/updates/2017/09/autoplay-policy-changes
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,
IsmaelHi,
These steps should help you troubleshoot the issue:
// https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-
You may need to set a unique “from” address, one that is using your domain name.
Best regards,
IsmaelHi,
Thanks for the update.
The !important syntax or rule in the z-index property of the “donate” selector is invalid.
z-index: 100 !important!;
It should be:
z-index: 100 !important;
.. without the exclamation point at the end. And try to adjust it from 1 to 100.
Best regards,
IsmaelHi,
Yes, you need to create a copy of those files in your child theme folder. And then add this code in the functions.php file so that they take priority over the parent shortcode files.
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths){ $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }
If you don’t have a child theme yet, this should help.
// https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#why-child-theme
Best regards,
IsmaelHi,
Thanks for the update. And sorry for the late response.
This tutorial should help: https://www.w3schools.com/howto/howto_js_sticky_header.asp
What the script does is it sets the class attribute “sticky” when it reaches the element’s scroll position. That particular script is created for the “myHeader” element but you can apply it to any other elements.
Best regards,
IsmaelHi,
Thanks for the update. You can use this css code to disable the portfolio animation.
.grid-image { opacity: 1 !important; }
Best regards,
IsmaelHi,
Where are you testing it? Have you read this post? Toggling the mobile menu on hover won’t work nor it makes sense because mobile phones don’t have a hover state.
// https://kriesi.at/support/topic/opening-burger-menu-on-hover/#post-764580
Best regards,
IsmaelHi,
I would like to apologize for the late response. The login credentials are not working. Please check it carefully.
Best regards,
IsmaelHey Chris,
Thank you for using Enfold.
If you’re not using the ALB then you should render the the ACF fields in the page.php file. If ALB is active, edit the template-builder.php file. Unfortunately, you can’t create a clone of the template-builder.php file or rename it.
Best regards,
IsmaelHi,
You can increase the size of the rest of the images. I think that’s the only solution left if you don’t want to decrease the size of the “tomato” image.
Best regards,
IsmaelHi,
You can wrap the “same_category” parameter inside a conditional function like is_category or is_tax.
// https://developer.wordpress.org/reference/functions/is_tax/
// https://developer.wordpress.org/reference/functions/is_category/Best regards,
IsmaelHi,
Unfortunately, we can’t add every other options in the theme without adding unnecessary bloat, especially options that can be easily achieve with css. The performance trade off of adding a new option to change an element’s color for example, compare to a simple css color declaration in the Quick CSS field is not that reasonable.
Best regards,
IsmaelHi,
The header sticks on scroll when I use the code on my installation but it doesn’t shrink, so I adjusted it a bit. Please try it again.
Best regards,
IsmaelHi,
Thanks for the update. This should work:
add_action( 'init', 'enfold_customization_woocommerce_related' ); function enfold_customization_woocommerce_related() { remove_action('woocommerce_after_single_product', 'wrprrdisplay'); add_action('woocommerce_after_single_product_summary', 'wrprrdisplay', 20); }
Again, you can adjust the priority value. If it doesn’t work, try this:
add_action( 'init', 'enfold_customization_woocommerce_related' ); function enfold_customization_woocommerce_related() { remove_action('woocommerce_after_single_product', 'wrprrdisplay'); add_action('woocommerce_after_single_product_title', 'wrprrdisplay', 20); }
Best regards,
IsmaelHi,
Weird. Unfortunately, we can’t help any further if we can’t access the site. Please hire a freelance developer or contact our partner, Codeable.
// https://kriesi.at/contact/customization
Best regards,
Ismael -
AuthorPosts