Forum Replies Created
-
AuthorPosts
-
May 6, 2021 at 11:28 am in reply to: Problems with icon grid when apply a link to the title #1298763
Hey agenturwendt,
Thank you for the inquiry.
Did you add this css code? It shifts the inner container downwards by 50% relative to the parent container.
.avia-icongrid-flipbox li .avia-icongrid-front .avia-icongrid-inner, .avia-icongrid-flipbox li .avia-icongrid-flipback .avia-icongrid-inner { position: absolute; color: initial; width: 100%; left: 0; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); padding: 4em 3em; backface-visibility: hidden; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; }
If you did not add it, try to add this css code in the Quick CSS field to adjust the position of the inner container.
.avia-icongrid-flipbox li .avia-icongrid-front .avia-icongrid-inner, .avia-icongrid-flipbox li .avia-icongrid-flipback .avia-icongrid-inner { top: 0; }
Best regards,
IsmaelHi,
You can try this css code to increase the size of the font icons.
#top .iconbox.av-no-box .iconbox_icon { margin: 0 auto 20px auto; width: 90px; height: 90px; line-height: 90px; font-size: 50px; }
Please toggle or temporarily disable the Enfold > Performance > File Compression settings.
Best regards,
IsmaelHey DouPaule,
Thank you for the inquiry.
You can add a background image to a color section with a minimum height to it so that it will not depend on any content.
Best regards,
IsmaelHi,
Thank you for the update.
This is not working correctly because the post tags (landscape, portrait) are automatically translated to something else, so the theme does not recognize them. You may need to set it so that Polylang does not automatically translate the post tags.
Try this filter in the functions.php file.
// disables the post tag taxonomy translation function ava_pll_get_taxonomies_mod( $taxonomies, $is_settings ) { unset( $taxonomies['tag'] ); return $taxonomies; } add_filter( 'pll_get_taxonomies', 'ava_pll_get_taxonomies_mod', 10, 2 );
For additional info about post tag translations, please try to contact the plugin authors.
Best regards,
IsmaelHi,
Some iOS devices do not fully support fixed background and have issue with background image when its size is set to “cover” as explained in the following thread.
// https://caniuse.com/background-attachment
// https://stackoverflow.com/questions/21476380/background-size-on-iosiOS has an issue preventing background-attachment: fixed from being used with background-size: cover – see details
Unfortunately, the solution that they provided in the thread is not doable in the theme because the background is applied to the parent section or container.
Best regards,
IsmaelHey DouPaule,
Thank you for the inquiry.
It will not really matter how the Load Google fonts in footer option is set since you are not using any Google fonts in the site.
Best regards,
IsmaelMay 6, 2021 at 9:03 am in reply to: Functions.php file in Enfold Child not updating changes #1298730Hi,
Thank you for the udpate.
You missed the second css declaration above. The css code should move or pull the social icons to the right.
Best regards,
IsmaelHi,
Thanks for the info.
For the gallery, this css should work.
@media only screen and (max-width: 767px) { #top .grid-sort-container .no_margin.av_one_half { width: 100%; } }
Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
IsmaelHi,
@jyothisvikram: What is the current version of the theme in your installation? You may need to upgrade it to version 4.8.2, and toggle the Performance > File Compression settings. Purge the cache as well after updating the theme.Best regards,
IsmaelMay 6, 2021 at 7:07 am in reply to: woocommerce category description displayed in title header #1298715Hi,
We added this snippet in the functions.php file to replace the description with the actual product archive title.
add_action( 'init', 'avia_woocommerce_full_width_category_images', 50 ); function avia_woocommerce_full_width_category_images() { remove_action( 'ava_after_main_container', 'avia_woocommerce_shop_banner', 11 ); remove_action( 'ava_after_main_container', 'avia_woocommerce_big_cat_banner', 11 ); add_action( 'ava_after_main_container', 'avia_woocommerce_big_cat_banner_child_theme', 11); //add_action( 'ava_after_main_container', 'avia_woocommerce_shop_banner_child_theme', 11); function avia_woocommerce_shop_banner_child_theme() { global $avia_config; if(is_shop() || (is_product_category() && avia_get_option('shop_banner_global') == "shop_banner_global") && !isset($avia_config['woo-banner'])) { $options = avia_get_option(); if( isset( $options['shop_banner'] ) && ( $options['shop_banner'] == 'av-active-shop-banner' ) ) { $bg = $options['shop_banner_image']; $overlay = $options['shop_banner_overlay_color']; $opacity = $options['shop_banner_overlay_opacity']; $description= wpautop($options['shop_banner_message']); $font = $options['shop_banner_message_color']; echo avia_woocommerce_parallax_banner($bg, $overlay, $opacity, $description, $font); } } } function avia_woocommerce_parallax_banner_child_theme($bg, $overlay, $opacity, $description, $font) { if(is_numeric($bg)) { $bg = wp_get_attachment_image_src($bg, 'full'); if(is_array($bg) && $bg[0] != "") $bg = $bg[0]; } if($font) $font = "style='color:{$font};'"; if($bg) $bg = "background-image: url(".$bg.");"; $output = ""; $output .=' <div id="av_product_description" class="avia-section main_color avia-section-large avia-no-border-styling avia-full-stretch av-parallax-section av-section-color-overlay-active avia-bg-style-parallax container_wrap fullsize" data-section-bg-repeat="stretch" '.$font.'>'; $output .=' <div class="av-parallax avia-full-stretch" data-avia-parallax-ratio="0.3">'; $output .=' <div class="av-parallax-inner" style="'.$bg.' main_color background-attachment: scroll; background-position: 50% 50%; background-repeat: no-repeat;">'; $output .='</div> '; $output .='</div> '; $output .=' <div class="av-section-color-overlay-wrap">'; if(!empty($overlay)) { $output .=' <div class="av-section-color-overlay" style="opacity: '.$opacity.'; background-color: '.$overlay.'; "></div> '; } $output .=' <div class="container">'; $output .='<main class="template-page content av-content-full alpha units">'; $output .= " <h1>".get_the_archive_title()."</h1> "; if(false) $output .= " <h1>".$description."</h1> "; $output .='</main></div> </div> </div> '; return $output; } function avia_woocommerce_big_cat_banner_child_theme() { if(is_product_category()) { global $wp_query, $avia_config; if(isset($wp_query->query_vars['taxonomy'])) { $term = get_term_by( 'slug', get_query_var($wp_query->query_vars['taxonomy']), $wp_query->query_vars['taxonomy']); if(!empty($term->term_id)) { $description = term_description() ; $style = get_woocommerce_term_meta($term->term_id, 'av_cat_styling'); $attachment_id = get_woocommerce_term_meta($term->term_id, 'thumbnail_id'); $overlay = get_woocommerce_term_meta($term->term_id, 'av-banner-overlay'); $font = get_woocommerce_term_meta($term->term_id, 'av-banner-font'); $opacity = get_woocommerce_term_meta($term->term_id, 'av-banner-overlay-opacity'); if(!empty($style)) { remove_action( 'woocommerce_before_shop_loop', 'woocommerce_taxonomy_archive_description', 11 ); echo avia_woocommerce_parallax_banner_child_theme($attachment_id, $overlay, $opacity, $description, $font); $avia_config['woo-banner'] = true; } } } } } }
Best regards,
IsmaelHi,
Thank you for the inquiry.
Would you mind providing a screenshot of the issue? This is how we see the site on mobile view — h1 is completely visible.
Screenshot: https://imgur.com/7ep0RlR
Best regards,
IsmaelMay 6, 2021 at 6:38 am in reply to: Footer width when using Enfold left sidebar menu layout #1298713Hey GWS,
Thank you for the inquiry.
Looks like you created a custom footer container. You can place the footer below the header and the main container and make it full width, but you have to make sure that the header is not sticky. If the header is sticky, the custom footer will just take whatever space is available below the main container regardless of the space the header is currently occupying.
You can disable the sticky option in the Enfold > General Layout > Layout > Sticky Sidebar menu settings.
Best regards,
IsmaelHi,
Thank you for the info.
Failed to load plugin url:
It is trying to load a script file from the layer slider, which for some reason does not exist. Did you add a layer slider in the page?
Best regards,
IsmaelMay 6, 2021 at 6:18 am in reply to: Fatal error: Uncaught Error: Call to undefined method avia_sc_post_metadata::pop #1298711Hi,
Thank you for the inquiry.
The error occurs because the site contains an older version of the theme, v4.5.7. You have to manually update it via FTP to version 4.8.2. Please check the documentation for more info about theme updates.
// https://kriesi.at/documentation/enfold/theme-update/
Best regards,
IsmaelHey dondela,
Thank you for the inquiry.
This same issue has been discussed in the following thread, where you can find the solution as well.
// https://kriesi.at/support/topic/lightbox-17/#post-1272842
Let us know if it helps.
Best regards,
IsmaelMay 5, 2021 at 12:35 pm in reply to: Sidebar Logo and Main Menu Sticky option not working anymore #1298521Hi,
Thank you for the info.
We adjusted the enfold/js/avia-snippet-sidebarmenu.js file a bit to fix the issue. It is now working correctly. Please purge the cache or do a hard refresh before checking the page.
We will forward the issue to our channel.
Best regards,
IsmaelHey steviger,
Thank you for the inquiry.
You can use this css code to move the meta info beside the title.
#top .av-upcoming-event-title { width: 80%; float: right; } #top .av-upcoming-event-meta { float: left; width: 20%; }
Best regards,
IsmaelHey Ivo,
Thank you for the inquiry.
1.) You can use the avia_meta_header hook to insert additional content in the top bar. Usage is the same as the ava_after_main_menu hook as shown in the documentation.
2.) We cannot find the shop page in the site. Please provide a direct link to the shop page so that we could inspect it.
Best regards,
IsmaelHi,
Looks like you are also using toggles, not just tabs. For the toggles, you have to modify the enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.js file and remove the following block of code around line 54..
if(win.scrollTop() > el_offset) { $('html:not(:animated),body:not(:animated)').animate({scrollTop: scoll_target},200); }
.. and line 171.
window.scrollTo(0, container.offset().top - 70);
After editing the files, do not forget to purge the cache and temporarily disable the Enfold > Performance > File Compression settings.
Best regards,
IsmaelMay 5, 2021 at 6:38 am in reply to: Which element gives me an image carousel with for columns and autorotate? #1298433Hey Montviso,
Thank you for the inquiry.
Have you tried using the Content Slider element? The should allow you to display different content, even images from external domains.
Best regards,
IsmaelHi,
Thank you for the update.
We still see the same errors (create_order_error, click_initiate_payment_reject) in the console. How did you add the paypal button?
Please post the login details in the private field so that we can check if further.
Best regards,
IsmaelMay 5, 2021 at 6:06 am in reply to: How can I upload https://fonts.googleapis.com/css locally? #1298426Hi,
I just wanted to state that it is not obvious where ENFOLD uses which fonts by default.
Fonts are separated into two categories, font for headings and font for the body content. Body content includes paragraphs, links, menu items, blockquote, strong tags, etc. The other font category is for headings and titles such as the widget title, post title and any text wrapped around the heading tags. And if you look closely in the Enfold > General Styling, there is actually a style preview.
Screenshot: https://imgur.com/hi3AX3s
If you use the Custom Font Manager and selected a custom font for both heading and body content, the theme will not have to load anything from Google and will instead use use the local font in your server.
Best regards,
IsmaelHey Jason,
Thank you for the inquiry.
Looks like some of the paragraphs have been combined into a single paragraph. Is the theme already active when you imported the posts?
Best regards,
IsmaelMay 5, 2021 at 5:21 am in reply to: Insert "Tab Element" or "Text Block" with extra code in the content area #1298412Hi,
No problem. We were not able to reproduce the issue on our end either.
Screenshot: https://imgur.com/WkhCGYd
We will close this thread for now. Please feel free to open another if the issue persists.
Have a nice day.
Best regards,
IsmaelMay 5, 2021 at 5:10 am in reply to: Enfold forms styling overriding Elementor's form styling and options #1298410Hi,
Thank you for the update.
You can deregister or dequeue the css > base.css file, which contains the base styling for the input fields, and register it back making sure that it loads before elementors’ dynamic styling for the widgets. Unfortunately, we are not that familiar with the plugin’s structure, so you will have to ask the plugin authors about it.
Best regards,
IsmaelHi,
Thank you for the update.
clickable elements too close
It might be referring to the links below the contact form. Try to add this css code to create more space between the contact form button and the links below.
#top .avia_ajax_form .av-google-badge-message { padding: 30px 0 0 0; line-height: 1.8em; }
We also increased the line height to separate the links even more.
Best regards,
IsmaelHi,
UPDATE: We edited the code in the functions.php file a bit and created a test page. (see private field)
Best regards,
IsmaelHi,
UPDATE: We edited the code in the functions.php file a bit and created a test page. (see private field)
Best regards,
IsmaelHi,
Thanks for the update.
We cannot find the inline popup in the home page. Where did you add it? Please provide a direct link to the page.
the 9999 becomes dashes
That is new. Would you mind providing a screenshot? Please use imgur or dropbox.
Best regards,
IsmaelMay 5, 2021 at 4:08 am in reply to: Button clicks tracking for Google Ads and Analytics can't be set up with Enfold #1298396 -
AuthorPosts