Forum Replies Created
-
AuthorPosts
-
Hi,
Odd. The “no-reply” email address is automatically set as the default “from” address when the autoresponder email is not set or when an email field does not exist in the contact form. Again, you can set the “from” address manually by using the filter.
Best regards,
IsmaelHi,
Thanks for the update.
The AJAX portfolio is using the “Large” thumbnail by default, so adjusting the thumbnail size from the Settings > Media panel should help. You have to regenerate the thumbnails after the adjustment.
// https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelHi,
Sorry if we can’t be of much help this time. Please open a new thread if you need anything else. I’ll close the thread for now.
Best regards,
IsmaelHi,
Add this css code to remove the top margin of the heading element inside the very first color section in that page.
.forum-archive.bbpress #main #av_section_1 .av-special-heading { margin-top: 0; }Best regards,
IsmaelHi,
Thanks for the info. Please refer to this doc.
// https://developers.google.com/maps/documentation/javascript/get-api-key#premium-key
You need to set key restrictions or specify the allowed http referrers.
On the dialog, click Restrict Key.
(For more information, see Restricting an API key.)
On the API key page, under Key restrictions, set the Application restrictions.
Select HTTP referrers (web sites).
Add the referrers (follow the instructions).
Click Save.// https://developers.google.com/maps/documentation/javascript/get-api-key#key-restrictions
Best regards,
IsmaelDecember 5, 2018 at 3:07 am in reply to: How to configurate Google Captcha in Contact Form because of spamming problem #1041048Hi,
Are you sure that you’re using V2? The plugin is not going to work with V3. I added a placeholder or text field so that you can replace the text after the widget. Please download the plugin again and re-install it.
Best regards,
IsmaelHi,
I think I found the issue but I couldn’t test it because the Appearance > Editor panel is disabled. Please edit the js > avia.js file, look for the AviaAjaxSearch function and edit this code around line 1328:
minChars: 3,Try to set the value from 3 to 6. Actually, the default value should work just fine but it’s being hindered by another ajax script. Do you know where this is coming from?
ttps://events-writer.smartlook.com/rec/events?rid=jpw-KEmkygW&sid=bc5mOUzBvmK6&pid=5824f01a673eec64628b456a&vid=L8k8wiy1oKP&group=10d&source=websiteBest regards,
IsmaelHi,
I adjusted the code a bit, increase the “tick” interval and set it to target the very last masonry item in the container.
Best regards,
IsmaelHi,
The login info above is invalid. Please check it carefully. These steps might help.
// https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-
Best regards,
IsmaelDecember 4, 2018 at 1:50 pm in reply to: Cant save changes anymore – always old version is saved #1040721Hi,
I’m not really sure what’s wrong with the start page but saving works on a new page. (see private field)
Did you add any html tags on the start page? Please try to recreate the page from scratch.
Best regards,
IsmaelDecember 4, 2018 at 1:41 pm in reply to: Content-subnavi – highlighting work not correctly, may interfere with other elem #1040718Hi,
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,
Ismael -
AuthorPosts
