Forum Replies Created
-
AuthorPosts
-
Hey bemodesign,
Thank you for the inquiry.
You can use this css code to adjust the color of the social icons.
#top .social_bookmarks_twitter a { color: skyblue; } #top .social_bookmarks_facebook a { color: blue; }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelFebruary 3, 2023 at 9:37 am in reply to: Product Frame Sizes Inconsistent on Product Overview Pages #1396520Hey ovrit,
Thank you for the inquiry.
We might be able to fix this by applying a minimum height to the product title container. Please provide a link to the product page so that we can check the elements.
Best regards,
IsmaelHi,
No problem. Let us know if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey MaskiMichener,
Thank you for the inquiry.
1.) Looks like the alternate logo is still displaying on mobile view. To remove it, you can add this css code.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top .av_header_transparency.av_alternate_logo_active .logo a > img, .responsive #top .av_header_transparency.av_alternate_logo_active .logo a > svg { opacity: 0; } }2.) Would you mind providing a screenshot of the issue? You can use imgur, savvyify or dropbox for the screenshot.
Best regards,
IsmaelHey matt507,
Thank you for the inquiry.
Have you tried adjusting the tax options in the Woocommerce panel? Please check the documentation below for more info about tax options.
// https://woocommerce.com/document/setting-up-taxes-in-woocommerce/
Best regards,
IsmaelFebruary 3, 2023 at 6:36 am in reply to: Enfold theme / Problem with the Masonry / Chronological sorting not working properly #1396494Hi,
Thank you for the update.
Are you using any sorting plugin for the portfolio items? The plugin might be conflicting with the default order of the items in the masonry element. We may need to access the site in order to check this further. Please provide the login details in the private field.
Best regards,
IsmaelHi,
you write “category pages” but I mean “single entries”!
Sorry about that. We actually meant single entries and corrected our reply above. Is there a staging or development version of the site? We would like to disable the plugins temporarily and completely remove the modifications while testing.
Best regards,
IsmaelHey Christy,
Thank you for the inquiry.
That is the default layout of the product page, but you can modify it using hooks. An example can be found in the following thread.
// https://kriesi.at/support/topic/enfold-sidebar-on-single-product-pages/#post-1374540
Best regards,
IsmaelHi,
Thank you for the update.
We get an error when we try to edit the theme options. Please try to add this code in the functions.php file temporarily, see if it helps.
add_filter("avf_skip_enqueue_scripts_backend_gmaps", function($skip) { return "skip_loading"; }, 10, 1); add_filter("avf_load_google_map_api_prohibited", function($prohibit) { return true; }, 10, 1);Best regards,
IsmaelFebruary 3, 2023 at 5:29 am in reply to: Align Text in Icon List centered vertically with Icon #1396489Hey Eric,
Thank you for the inquiry.
You can try this code in the Quick CSS field.
ul.avia-icon-list li { display: flex; align-items: center; flex-direction: row; } ul.avia-icon-list li article { min-height: 45px; flex: 1 1 80%; }Best regards,
IsmaelHi,
Thank you for the info.
We may need to access the site in order to check the issue further. Please provide the login details in the private field. How did you disable the inline styles?
Best regards,
IsmaelHey jim-cp,
Thank you for the inquiry.
Where can we see the issue? Are you using the Video element in the Advance Layout Builder or the default video shortcode? Please provide a test page so that we can see the embed code.
Best regards,
IsmaelHey maryenvato,
Thank you for the inquiry.
Would you mind posting the video URL in the private field? You may need to mute the video in order to play it automatically on page load.
Best regards,
IsmaelHi,
Thank you for the update.
The color of the accordion content should be white by default. Did you add this css code?
#top .av_toggle_section .av-inherit-font-color * { color: #f8f8f8; }You can override it by adding this code in the Quick CSS field.
#top .av_toggle_section .av-inherit-font-color * { color: #ffffff; }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHey Lupine-andy,
Thank you for the inquiry.
You can use the Grid Row element in the Layouts tab of the Advance Layout Builder (ALB). Just set the number of cells, apply the background directly to the cell, then add text blocks or special heading elements for the content.
Best regards,
IsmaelHi,
Glad to know that the issue has been resolved. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the info.
Are you using the Advance Translation Editor when translating the posts and pages? Please note that you have to use this editor in order to properly translate the content of the Advance Layout Builder. The documentations below should help.
// https://wpml.org/documentation/support/maintaining-avia-layout-builder-enfold-compatibility-wpml/#How-the-Integration-of-the-Avia-Layout-Builder-Works-With-WPML
// https://wpml.org/documentation/translating-your-contents/advanced-translation-editor/Best regards,
IsmaelHey es.design.ma,
Thank you for the inquiry.
Did you modify the template of the chart shortcode in your child theme? Please try to deactivate the modifications temporarily, then upgrade the theme to version 5.4.
Best regards,
IsmaelFebruary 3, 2023 at 4:43 am in reply to: how to force a column/picture to go to the End of a browser #1396478Hey Monika,
Thank you for the inquiry.
You can set the position property of the element to “fixed”.
.zum-rand { position: fixed; right: -70px; top: -90px; }// https://www.w3schools.com/Css/css_positioning.asp
You can also use a plugin.
// https://wordpress.org/plugins/all-in-one-wp-sticky-anything/
Best regards,
IsmaelHi,
We tried editing the functions.php file to add the following code, which should disable the map script from the theme, but we always get an error. Please try to add the code on your end.
function my_output_google_webfonts_script( $activate ){ return false; } add_filter( 'avf_output_google_webfonts_script', 'my_output_google_webfonts_script', 10, 1 ); function disable_google_map_api($load_google_map_api) { $load_google_map_api = false; return $load_google_map_api; } add_filter('avf_load_google_map_api', 'disable_google_map_api', 10, 1);This is the map script error that we get when editing a page.
js?v=3.51:207 Loading the Google Maps JavaScript API without a callback is not supported: https://developers.google.com/maps/documentation/javascript/url-params#required_parametersBest regards,
IsmaelHey ribit,
Thank you for the inquiry.
Have you tried editing the widgets in the Appearance > Widgets panel? Look for the widget areas named Footer Column/s.
Best regards,
IsmaelHey schweg33,
Thank you for the inquiry.
You can use a css media query to control on which device or screen width the css modification should be applied. Please replace the css with the following code.
@media only screen and (min-width: 768px) { /* Add your Desktop Styles here */ .formatfam { background-color: rgba(255, 255, 255, 0.7); } }Best regards,
IsmaelHi,
Where can we check the issue? Please provide the site URL and account details in the private field, screenshots will also help.
Best regards,
IsmaelHi,
Thank you for the info.
We checked the site but we are not yet sure what is causing the issue. Can we deactivate the plugins temporarily while testing the site? Is there a staging or development version of the site?
Best regards,
Ismael-
This reply was modified 3 years, 1 month ago by
Ismael.
February 3, 2023 at 3:54 am in reply to: Search Results Page (avia_product_slider) – get_style_tag() on null error #1396472Hi!
This is working correctly on our end. Please try to replace the line with the following code.
$blog->get_element_styles(["element_id" => $blog->element_id, "element_styling" => $blog->element_styling]);Please make sure to copy the code directly from the forum.
Cheers!
IsmaelHey schweg33,
Thank you for the inquiry.
You can add this css code to adjust the margin between the text blocks.
section.av_textblock_section.av-16ofgz8-eb58503b89007c45c57317a8af76399b { margin-top: 0 !important; }Best regards,
IsmaelHey rootdr,
Thank you for the inquiry.
The theme doesn’t have an email template builder by default, so will have to use plugins or platforms like Mailchimp in order to create custom email templates.
Best regards,
IsmaelHi,
You can also use the avf_post_metadata_excluded_taxonomies filter in the functions.php file instead of editing the post_metadata.php template directly.
add_filter("avf_post_metadata_excluded_taxonomies", function($excluded, $taxonomies) { $excluded[] = "translation_priority"; return $excluded; }, 10, 2);Best regards,
IsmaelHi,
Thank you for the update.
We can reproduce the issue, but we are not yet sure what is causing it. Have you tried to disable the plugins temporarily? Is there a staging or developer version of the site?
Best regards,
IsmaelHi,
Thank you for the update.
Looks like you’re using the Elementor builder to create the content of the front page. Unfortunately, this builder is not compatible with the theme. You may need to switch to the theme’s Advance Layout Builder, or contact the plugin author for more info about the layout issue.
Best regards,
Ismael -
This reply was modified 3 years, 1 month ago by
-
AuthorPosts
