Forum Replies Created

Viewing 30 posts - 13,561 through 13,590 (of 66,075 total)
  • Author
    Posts
  • 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,
    Ismael

    in reply to: Icon Größe verändern in Symbol-Box #1298760

    Hi,

    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,
    Ismael

    in reply to: Image fullwidth? #1298759

    Hey 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,
    Ismael

    in reply to: Portfolio Masonry – polylang – 3 sprachen #1298735

    Hi,

    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,
    Ismael

    Hi,

    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-ios

    iOS 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,
    Ismael

    in reply to: Load Google fonts in footer #1298731

    Hey 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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: change gallery width for mobile #1298729

    Hi,

    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,
    Ismael

    in reply to: Screen Options #1298728

    Hi,


    @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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: H1, Text, Button Text not showing #1298714

    Hi,

    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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Rollback to 4.8 #1298712

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Form in popup on mobile #1298524

    Hey 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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Modify display Avia Upcoming Events [SOLVED] #1298513

    Hey 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,
    Ismael

    in reply to: Add widget to topbar & Tax display #1298510

    Hey 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,
    Ismael

    in reply to: scroll margin top for accordion or tabs links #1298507

    Hi,

    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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Error with PayPal Express Checkout #1298431

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Importing blogs using WP looses double spaces #1298419

    Hey 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,
    Ismael

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Google Mobility Issues – some fixes failed #1298408

    Hi,

    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,
    Ismael

    in reply to: display content in lightbox popup #1298402

    Hi,

    UPDATE: We edited the code in the functions.php file a bit and created a test page. (see private field)

    Best regards,
    Ismael

    in reply to: display content in lightbox popup #1298401

    Hi,

    UPDATE: We edited the code in the functions.php file a bit and created a test page. (see private field)

    Best regards,
    Ismael

    in reply to: display content in lightbox popup #1298399

    Hi,

    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,
    Ismael

    Hi,

    Thank you for the update.

    In the trigger conditions, add a Click Element variable and set the condition to matches CSS selector and specify the selector. You can now target the button inside the form. Make sure that the selector is very specific.

    Best regards,
    Ismael

Viewing 30 posts - 13,561 through 13,590 (of 66,075 total)