Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for following up.
The contact form is still working properly when we added the code back in the enfold\framework\php\class-grecaptcha.php file. We managed to send at least 4 or 5 test messages using Firefox on Windows 10.
Best regards,
IsmaelFebruary 17, 2020 at 12:02 pm in reply to: Targeting multiple pages with CSS using custom page templates #1185176Hi,
Thank you for the update.
You can actually combine all filters in a single callback function.
function avf_adjust_body_class_slug($classes) { if ( is_page( array( 'about', 'work', 'news' ) ) ) { $classes[] = 'green-footer'; } if ( is_page( array( 'about', 'work', 'people', 'contact', 'news', 'project-inquiries', 'media-inquiries' ) ) ) { $classes[] = 'gray-header'; } if ( has_category( 'news' ) ) { $classes[] = 'gray-header'; } if ( is_page( array( 'contact', 'project-inquiries', 'media-inquiries' ) ) ) { $classes[] = 'green-bg'; } if ( has_tag( 'team' ) ) { $classes[] = 'gray-header'; } return $classes; } add_filter('body_class','avf_adjust_body_class_slug');Only downside is that for new pages, I have to add the new slug names into the is_page code sections below where relevant. Is there a better option for when adding new pages? Thanks.
Have you tried adding custom fields to the pages? You can apply the appropriate class attribute based on the value of a custom field/s added in the page.
// https://wordpress.org/support/article/custom-fields/
This plugin should help.
// https://wordpress.org/plugins/advanced-custom-fields/
Best regards,
IsmaelHi,
Sorry for the delay. Can we access the dashboard? We would like to check the gallery settings. Please post the login details in the private field.
Best regards,
IsmaelHi,
Thank you for the info.
We tried to debug the issue but we can’t find the invalid markup. The plugin actually messes up the ALB layout even if the TOC widget is not present in the page, or if the Autoinsert feature is not enabled. Unfortunately, this is beyond the scope of support. You will have to keep in touch with the plugin developer and ask them to help debug the issue further.
Temporarily, you can use the theme’s TOC widget in place of the plugin’s.
Best regards,
IsmaelHi,
Sorry for the delay. Please post the login details in the private field so that we can check the current setup of the layer slider and hopefully provide a working example of the background video.
Best regards,
IsmaelFebruary 17, 2020 at 6:05 am in reply to: Easy Slider – change size of "slideshow controls" and "captions" #1185098Hi,
@wabrahams: In the latest version (4.7.3), there is a new option for the default or desktop screens in the Styling > Font Sizes panel. You can now adjust the slider captions separately.Best regards,
IsmaelHi,
Thank you for the inquiry.
The latest version doesn’t really have any dedicated patch for the contact form or the spam protection, but you should update the theme to the latest version anyway. Do you have a screenshot of the spam mail?
Best regards,
IsmaelHi,
Thank you for the update.
We are able to send a message using the form in the contact page. Is it working properly on your end now? Please try to disable the Performance > File compressions settings temporarily and remove the browser cache, then try it again.
Best regards,
IsmaelFebruary 17, 2020 at 5:41 am in reply to: The Events Calendar 5.0 Customizer – not available #1185086Hi,
Sorry for the delay. It was an issue with our connection. We can now access the site properly and are able to update the plugins manually. The update of the Pro version to 5.0.1 seems to have fixed the issue.
@spidercreations: Please try to update the default plugin to version 6.4.7 and the Pro version to 5.0.1.Best regards,
IsmaelHi,
Yes, that is correct. There is an available filter that you can use to adjust the query for the post navigation, but we might not be able to help you adjust it based on your requirements due to time constraints. You can find an example here:
// https://adambrown.info/p/wp_hooks/hook/get_%7B$adjacent%7D_post_join
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the info.
Can we access the dashboard? Maybe we’ll be able to pinpoint the issue using the Query Monitor plugin.
Best regards,
IsmaelHi,
Thank you for the update.
We didn’t find the same text or translations on line 16410. Please try to add this code anywhere in the .po file.
# @ avia_framework #: config-templatebuilder/avia-shortcodes/tab_section/tab_section.php:213 #, fuzzy msgid "Display Tabs above content" msgstr "Afficher les onglets à gauche" # @ avia_framework #: config-templatebuilder/avia-shortcodes/tab_section/tab_section.php:214 #, fuzzy msgid "Display Tabs below content" msgstr "Afficher les onglets à gauche"After that, install the Loco Translate plugin, go to the Themes panel, look for the theme and the FR language, then sync the lang files.
Best regards,
IsmaelFebruary 17, 2020 at 4:12 am in reply to: WPML Language switcher offers languages in which no content is available #1185062Hi,
Thank you for the update.
Would you like to move the language or flag switcher to the right side of the header? This css code should help.
.wpml-ls-legacy-list-horizontal, .wcml-horizontal-list { float: right; }Best regards,
IsmaelHi,
Thank you for following up.
You can add this css code to change the style of the parent menu or those with child items.
#top #header .avia_mega_div > .sub-menu > li > .sub-menu > li.menu-item-has-children > a { color: blue; font-weight: bold; }And this css code for the child items.
#top #header .avia_mega_div > .sub-menu > li > .sub-menu > li.menu-item-has-children ul li a { color: gray; }Best regards,
IsmaelHi,
Thank you for the update.
Yes, there is that option but you can’t set it to 100% or based on the height of the view port. Also, the minimum height is applied to the slides, not the parent container.
Best regards,
IsmaelHi,
Yes, we encountered a few threads with this issue. What is the version of your theme prior to the update? It seems to be happening on installations that upgraded from a very old version of the theme containing a different version of the layerslider.
To fix the issue, you have to manually create the group_id column in the layer slider table. Please check the following thread.
// https://kriesi.at/support/topic/layer-slider-fails-on-enfold-update-4-6/#post-1159740
Best regards,
IsmaelHi,
Thank you for the info.
Looks like it’s only possible when the first element in the builder is a text block. You’ll have to add the excerpt manually because the first element in the strila posts is a slider.
Best regards,
IsmaelHi,
Thank you for the info.
How can we show featured image above the actual full blog post too?
Since you’ve switched to the advance layout builder, the featured image will not display automatically, so you have to insert it manually using any image element from the builder.
Best regards,
IsmaelHi,
Thank you for following up.
We added the following filter in the functions.php file to fix the issue temporarily.
add_filter('avia_product_slide_query', function($query, $params, $ordering_args) { unset($query['tax_query'][0]); return $query; }, 10, 3);For some reason, the tax_query parameter contains a product visibility taxonomy and the term inside it doesn’t seem to exists causing an invalid query.
Best regards,
IsmaelHi,
Thank you for the update
You don’t need the following code anymore because you already disabled the lazyload option.
.av-horizontal-gallery-img { min-width: 178px; }Removing the code should fix the issue on smaller screens.
Best regards,
IsmaelHi,
Thank you for the info.
You can add this css code to adjust the position of the sub menu when the header shrinks or on window scroll.
.html_header_top .header_color.header-scrolled .main_menu ul:first-child > li > ul { top: auto; }Best regards,
IsmaelFebruary 14, 2020 at 8:13 am in reply to: The Events Calendar 5.0 Customizer – not available #1184424Hi,
@Cliffy: Thank you for the info. Unfortunately, the staging site is not loading properly on our end — it’s very slow, so we can’t debug the issue properly. Where is the site hosted?
We’ll try to inspect the issue on our end and give an update as soon as possible.
Best regards,
IsmaelHi,
Thank you for the update.
The same_category parameter is actually working but not how you expect it to. The item Hoffman’s Chocolates displays after the Shades of time at FLL item because they both belong in the same category called Airport/Aviation. You have to remove the item Shades of time at FLL from that category if you want the post navigation to fetch the next item in the Retail category, which is the The Port Retail item.
Best regards,
IsmaelFebruary 14, 2020 at 7:44 am in reply to: Hide featured image on single portfolio… recursively #1184417Hi,
Thank you for the update.
We missed an underscore in the function or callback name, so instead of avf_disable_portfolio_featured_image, it was named avfdisable_portfolio_featured_image. We corrected the function name. It is working properly now.
Best regards,
IsmaelFebruary 14, 2020 at 7:32 am in reply to: Google map und Youtube video wird nicht angezeigt #1184414Hi,
@BartlingMedia: You’re welcome! Glad it worked. Please feel free to open a new thread if you need anything else.@DirkB: Where can we see the message? Please open a new thread/ticket and post the necessary details in the private field. We’ll continue there. Thank you.
Best regards,
IsmaelHi,
Glad it worked!
You can apply the background to the .av-hamburger container. Just add this property in the first css declaration above.
background: rgba(255,255,255,.2);The value .2 is the opacity or transparency in case you want to adjust it.
Best regards,
IsmaelHi,
mh, with this code the animation is only a little bit above in the section.
What do you mean by “above in the section”?
To make it full width on mobile view, please add this css code or combine it with the previous css declaration.
#homedesktoptest .container { width: 100% !important; max-width: 100% !important; }Best regards,
IsmaelHi,
Thank you for the update.
The Google tracker doesn’t load properly when the Autoptimize plugin is enabled. Did you include internal scripts from the compression? We disabled the plugin temporarily. (see private field)
Best regards,
IsmaelHey rasmusheil,
Thank you for the inquiry.
The featured image should be displaying automatically in the post unless you’re using the Advance Layout Builder (ALB) instead of the default Classic or Block Editor. Are you using the ALB for the post? If yes, then you have to add the featured or main image manually using one of the available image elements in the builder.
Best regards,
Ismael -
AuthorPosts
