Forum Replies Created
-
AuthorPosts
-
October 26, 2018 at 5:12 am in reply to: Multiple Enfold purchases and Token doesn't seem to work #1026620
Hi,
Have you tried going into incognito mode as previously suggested?
Best regards,
IsmaelOctober 25, 2018 at 2:16 pm in reply to: Mailchimp Form in Layerslider WP Popup Only Works when Logged into WordPress #1026356Hi,
Thanks for the info.
I noticed that there is a “phone” field in your mailchimp list. The mailchimp shortcode only supports text and dropdowns at the moment. Try to remove the phone field from your list.
Please note:
You can only hide form fields that are not required
Currently only text and dropdown elements are supported properlyI found this error after testing the form again while logged in.
Warning: Invalid argument supplied for foreach() in /home/binhamme/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/mailchimp/mailchimp.php on line 552
The form fields are blank. Can we have access to your file server? I would like to check the form data.
Best regards,
IsmaelHi,
Great! Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelOctober 25, 2018 at 1:47 pm in reply to: The Language Switcher is Not Displaying on the Search Page #1026346Hi,
I had to modify the plugin’s sitepress.class.php file to fix the issue. The plugin unsets the languages when the post_type query var is blank or is not set.
Line 2825:
if( $_GET['s'] == '' ) { $this->wp_query->query_vars['post_type'] = array(); }
Let us know if you encounter any issues. This is not a critical issue, so I wouldn’t bother that much if I were you, because users will only get to that page when they click the search button accidentally without entering any keyword.
Best regards,
IsmaelOctober 25, 2018 at 12:38 pm in reply to: Category Title & Description on custom taxonomy category pages #1026324Hi,
It’s been a while. I hope you’re doing good.
Regarding the issue, you have to enable the theme’s Header Title and Breadcrumbs from the Enfold > Header panel.
The code above filters the output of that function or settings.Best regards,
IsmaelHi,
I would like to add the filter above after regenerating the thumbnails but I can’t modify the functions.php file in the Appearance > Editor panel. Please post the FTP details in the private field.
Best regards,
IsmaelHi,
Thanks for the update. The video is playing properly on my end but it takes a while to load because it’s 8MB.
Screenshot: https://imgur.com/a/g1GZcE1
It’s probably not playing on your end because of the new 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.Try to mute the video.
Best regards,
IsmaelHi,
You need to create a new php file inside the child theme and name it according to the value of the get_sidebar function.
get_sidebar('search-sidebar');
The template file should be named.
sidebar-search-sidebar.php.
Have you tried using the Widget Logic plugin? That is much easier if you’re not familiar with templates.
Best regards,
IsmaelHi,
I’m sorry but I don’t understand your question. What do you mean?
Best regards,
IsmaelHi,
Do you have access to this file? (see private field)
Maybe, you can change the styles there. The previous modification doesn’t affect the content inside the frame.Best regards,
IsmaelHi,
It seems to be displaying paid content or ads. I’m not really sure if this is going to work but you can try this css code.
.av_youtube_frame .html5-video-player * { display: none !important; } .av_youtube_frame .html5-video-player .html5-video-container, .html5-video-player .html5-video-container video { display: block !important; }
Best regards,
IsmaelOctober 25, 2018 at 8:24 am in reply to: Default Lightbox must be activated for this feature to work #1026217Hi,
Sorry for the late response. I’m not really sure why it can’t detect the “$.avia_utilities.av_popup” function but since the lightbox is enabled, you can edit the js > avia-snippet-cookieconsent.js file. Look for this code around line 24:
if($.avia_utilities.av_popup)
Set the condition to true.
if(true)
This is just a temporary workaround until we find the actual issue.
Best regards,
IsmaelHi,
Did you add code blocks after the sections? The theme will automatically create section for elements that are outside a color section.
<a class="anchor" id="services"></a>
Best regards,
IsmaelHi,
The header of the site looks different from the screenshot. Is that the correct url?
You can use this css code to change the background of the sub menu to transparent..header_color .main_menu .menu ul li a { background-color: transparent; color: #ffffff; } .header_color .main_menu ul ul { background-color: transparent; }
Best regards,
IsmaelHi,
Thank you for using Enfold.
Use this css code to hide the default menu and search icon.
@media only screen and (max-width: 767px) { .responsive .av-burger-menu-main, .responsive #top #wrap_all .menu-item-search-dropdown > a { display: none; } }
Best regards,
IsmaelHi,
There is a minor syntax error in that code. It’s wrapped inside a code block shortcode. I added the code in your functions.php file without the shortcode. You can now select a custom “Order” and “Orderby” option in the post slider element.
Best regards,
IsmaelHi,
The “avia_ajax_search” script is going through but it’s not returning anything.
Beklager, ingen indlæg matchede dine kriterier. Prøv venligst et nyt søgeord
Have you tried disabling the Performance > File Compression settings after the upgrade?
Best regards,
IsmaelOctober 25, 2018 at 6:54 am in reply to: How force user browser to refresh the FLATICON cache? #1026200Hi,
Thanks for the update. Can you give us a screenshot of the old and new icons? I’m not sure which one I’m looking at.
Is the Performance > File Compression settings enabled? Please disable it temporarily.Best regards,
IsmaelOctober 25, 2018 at 6:48 am in reply to: Error in structure data (Error: SomeProducts is not a known valid target type) #1026199Hi,
Try to unset the “SomeProducts” itemtype inside the filter above.
add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2); function avf_markup_helper_attributes_modified($attributes, $args) { if( $args['context'] == 'image' ) { $attributes['itemprop'] = 'image'; } if( is_archive() && $args['post_type'] == 'products' ) { unset($attributes['itemtype']); } return $attributes; }
Best regards,
IsmaelOctober 25, 2018 at 6:37 am in reply to: Cannot Checkout: SyntaxError: Unexpected token < in JSON at position 0 #1026198Hi,
Sorry for the late response. It seems to be a plugin conflict. Please upgrade your WooCommerce extensions and make sure that they’re compatible with the latest version of the plugin. I found this warning in the Plugins panel.
Achtung! Die Versionen der folgenden Plugins, die du verwendest, wurden nicht mit der neuesten Version von WooCommerce (3.5) getestet.
Plugin Getestet bis zur WooCommerce-Version
Yoast SEO 3.4
Beeketing For WooCommerce unbekannt
SI Captcha Anti-Spam unbekannt
SOFORT Banking for WooCommerce unbekannt
WooCommerce Category Banner unbekannt
WooCommerce Mijireh Checkout unbekanntRelated thread: https://github.com/woocommerce/woocommerce/issues/15914
Possible fix: https://mikejolley.com/2015/11/12/debugging-unexpected-token-in-woocommerce-2-4/Please pass it to the authors of the third party extensions.
Best regards,
IsmaelOctober 25, 2018 at 6:24 am in reply to: Sidebar auf woocommerce Shop und Produktseiten anzeigen #1026196Hi,
Thank you for using Enfold.
Did you set the page as the base shop page in the WooCommerce > Settings > Products panel? If it is set as the base shop page, it’s going to be considered as one of the “archive” pages, so you have to enable the Enfold > Sidebar Settings > Sidebar on Archive Pages option. You can then add your widgets in the Appearance > Widgets > Shop Overview Page widget area.
Best regards,
IsmaelHi ofekw!
Is this the same issue as the following thread?
// https://kriesi.at/support/topic/hyperlink-to-a-dedicated-form-in-photo-title/#post-1025784
Please continue the thread here.
Cheers!
IsmaelOctober 24, 2018 at 4:19 pm in reply to: Multiple Enfold purchases and Token doesn't seem to work #1025963Hey ColinWalton,
Thank you for using Enfold.
This thread might help.
// https://kriesi.at/support/topic/update-4-5-warning-imossible-to-update/#post-1023847
You need to go to incognito mode to avoid that issue.
Best regards,
IsmaelHi,
I’m not sure if it’s still relevant but I found this article related to the issue.
// https://www.paulirish.com/2009/fighting-the-font-face-fout/
Best regards,
IsmaelHey elsadenmark,
Thank you for using Enfold.
Only google fonts are accepted in the font manager. You need to import those fonts with css.
// https://css-tricks.com/snippets/css/using-font-face/
Best regards,
IsmaelOctober 24, 2018 at 4:03 pm in reply to: Apartments booking form – Enfold contact form with tag? #1025952Hey Steven,
Thank you for using Enfold.
What do you mean by “tag”? Are you trying to target the theme’s contact form button?
Best regards,
IsmaelHey Autaak,
Thank you for using Enfold.
Try to use the “post__not_in” parameter as described here:
// https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters
Best regards,
IsmaelHi,
You can use this filter to change the from address.
function change_cf_from() { return " (Email address hidden if logged out) "; } add_filter('avf_form_from', 'change_cf_from', 10);
Adjust the return value.
Best regards,
IsmaelHi,
You can reverse the order of the columns with css flex.
.responsive #top .flex_column_table { display: flex; flex-direction: column-reverse; flex-wrap: nowrap; }
You may need to apply a custom css class attribute to the columns where you want to apply it.
// https://css-tricks.com/snippets/css/a-guide-to-flexbox/
Best regards,
IsmaelOctober 24, 2018 at 3:23 pm in reply to: The Language Switcher is Not Displaying on the Search Page #1025930 -
AuthorPosts