Forum Replies Created

Viewing 30 posts - 37,921 through 37,950 (of 66,745 total)
  • Author
    Posts
  • in reply to: Shop Banner Full Title #725170

    Hey!

    The other solution is to create multiple versions of the images but it’s a bit inconvenient as we mentioned in our previous post. You can also set the background size property to “contain” but it will create gaps or spaces if the container is not equal to the background image.

    #av_product_description .av-parallax-inner {
        background-size: contain;
    }

    The current height of the container is 263px but the background image is a bit too small (300x45px) so it will create a lot of spaces.

    // https://profumidambiente.it/wp-content/uploads/2016/12/shopbanner1-300×45.png

    Regards,
    Ismael

    Hey HannaVogt!

    Thank you for using Enfold.

    This is a related thread.

    // https://kriesi.at/support/topic/masonry-gallery-hentry/#post-675196

    A workaround can be found here.

    // https://kriesi.at/support/topic/masonry-gallery-hentry/#post-678564

    Best regards,
    Ismael

    in reply to: Changing the parallax effect. #725164

    Hey!

    Yes, it’s possible. Please adjust the code a bit.

    add_filter('avf_parallax_speed','avia_change_parallax_ratio', 10, 2);
    function avia_change_parallax_ratio($ratio, $id){
    	if($id != 'av_section_4') return;
    	$ratio = "0.3";
    	return $ratio;
    }

    Cheers!
    Ismael

    in reply to: Productimages Woocommerce review-order.php #725160

    Hey!

    I use /wp-content/themes/feentueren/woocommerce/order/order-details.php and /wp-content/themes/feentueren/woocommerce/order/order-details.php

    Please check the instructions carefully. You need to edit two template files. One is the “order-details.php file and the other is the “order-details-item.php” file. And don’t forget to remove the browser cache or hard refresh before checking the page.

    Regards,
    Ismael

    in reply to: Using Lato cursive font forces Lato normal to be cursive. #725156

    Hi Doubledog!

    Thank you for using Enfold.

    Yes, you can use that filter to add more options for the “Lato” font. The filter looks good. Let us know if it’s not working.

    Regards,
    Ismael

    in reply to: parallax on mobile #725154

    Hi!

    Thank you for using Enfold.

    Adjust the bottom position of the parallax container.

    @media only screen and (max-width: 1024px) {
         .av-parallax-inner {
            bottom: -50px;
            left: 0;
        }
    }

    Cheers!
    Ismael

    in reply to: masonry gallery excerpt disapears on ipad #725153

    Hi luis!

    Thank you for using Enfold.

    Are you referring to the “This is FS Parker.” section? You can set the caption or title to display on load.

    @media only screen and (max-width: 1024px) {
    .avia_desktop.avia_transform3d .av-caption-on-hover.av-caption-style- .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content, .avia_desktop.avia_transform3d .av-caption-on-hover-hide.av-caption-style- .av-masonry-entry.av-masonry-item-with-image:hover .av-inner-masonry-content {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
    }

    P.S: Site looks awesome. Good job! :)

    Regards,
    Ismael

    in reply to: Menu Indicator #725152

    Hi!

    Adjust the css code that @yigit provided above.

    .av-main-nav ul {
        width: 150px;
    }

    Cheers!
    Ismael

    in reply to: Topbar #725151

    Hi!

    Please add this css code to remove the border below the top bar.

    #top .av_header_transparency #header_meta {
        border-bottom: 0;
    }

    Best regards,
    Ismael

    in reply to: Mobile Menu problem with first item #725150

    Hey!

    That is the default behaviour of the parent menu when you hide the sub menu items. You can find a solution or workaround in the previous thread.

    // https://kriesi.at/support/topic/mobile-menu-links/#post-637296

    The script will create a “go to page” link beside the parent menu item. Another workaround is to create a duplicate of the parent page.

    Regards,
    Ismael

    in reply to: Widgets Disappeared #725149

    Hey!

    Thank you for the info. We applied the link to the image.

    Regards,
    Ismael

    in reply to: Position of Secondary Menu #725148

    Hi!

    Please add this css code.

    #header_meta .container, #header_meta {
        min-height: 0;
        height: 0;
    }

    I tried to access the private page but the password is not working.

    Best regards,
    Ismael

    in reply to: Mobile Menu #725147

    Hi!

    I’m glad that you found a workaround. Please open a new thread if you encounter any issues again. Thank you!

    Regards,
    Ismael

    in reply to: problem with Avia editor as editor #724142

    Hi,

    I’m sorry but I’m not really sure. One workaround is to save the content as template and then delete the page. Create another then apply the saved template.

    Best regards,
    Ismael

    in reply to: Productimages Woocommerce review-order.php #724141

    Hi,

    Thank you for the update. Please modify the templates > order > order-details.php and the order-details-item.php file. In the order-details.php file, look for this code:

    
    <th class="product-name"><?php _e( 'Product', 'woocommerce' ); ?></th>
    <th class="product-total"><?php _e( 'Total', 'woocommerce' ); ?></th>
    

    Above, those lines, add this one:

    
    <th class="product-thumb"><?php _e( 'Image', 'woocommerce' ); ?></th>
    

    Edit the order-details-item.php, look for this code:

    
    <tr class="<?php echo esc_attr( apply_filters( 'woocommerce_order_item_class', 'order_item', $item, $order ) ); ?>">
    

    Below, add the image markup:

    
    <td class="product-thumb">
                                <?php $thumb = get_the_post_thumbnail_url($item['product_id'], 'shop_catalog'); ?>
                                <?php
                                    if(!empty($thumb)) {
                                        echo "<img src='{$thumb}' width='80px' height='100px'/>";
                                    }
                                ?></td>
    

    Best regards,
    Ismael

    in reply to: Resizable header on tablets #724124

    Hey LbCCbeA_89,

    Thank you for using Enfold.

    Please decrease the height of the logo on tablet view. This will, in turn, decrease the height of the header.

    @media only screen and (min-width: 768px) and (max-width: 1024px) {
    #top #header_main > .container, #top #header_main > .container .logo a img {
        height: 80px !important;
        line-height: 80px !important;
    }
    }
    

    Best regards,
    Ismael

    in reply to: Error if you choose shop page woocommerce at home page #724123

    Hey Octopus4444,

    Thank you for the info.

    This will break the single product breadcrumbs. Please try this instead.

    			$front = avia_get_option('frontpage');
    			$shop = get_option( 'woocommerce_shop_page_id' );
    
    			if($front == $shop && is_front_page()) {
    				$key_trail = array_keys($trail);
    				$home = $key_trail[0];
    			} else {
    				$home = $trail[0];
    			}
    

    Best regards,
    Ismael

    in reply to: Mobile broken on tablet Acer landscape view #724113

    Hi,

    I’m not sure how the “non-breaking space” character fixed it but adding a normal “space” should not create a second line. Anyway, thanks for sharing.

    Best regards,
    Ismael

    in reply to: BUG – Grid Row and Column when choosing Equal Height #724112

    Hi,

    // https://kriesi.at/support/topic/how-to-lower-section-on-mobile/#post-724105

    I haven’t work that much with rtl sites but, if I am not mistaken, you should treat the editor as if you’re working in an LTR site. The RTL styles will only be applied in the frontend.

    Best regards,
    Ismael

    in reply to: Need to display search product field inside menu #724110

    Hi!

    We removed this code from the functions.php file.

    add_shortcode('avia_search', 'get_search_form');
    
    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('.only-mobile-menu-search a').removeAttr('href');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');
    

    Regarding the search query, please refer our answer in this thread.

    // https://kriesi.at/support/topic/widget-product-search-only-in-the-product-title-not-all-the-texts/#post-724107

    Cheers!
    Ismael

    Hi,

    Thank you for the info.

    Looks like you can restrict the search query. Please refer to the following links.

    // https://nathaningram.com/restricting-wordpress-search-to-titles-only/
    // http://stackoverflow.com/questions/9468804/make-wordpress-search-only-in-post-title

    Best regards,
    Ismael

    in reply to: How to lower section on mobile? #724105

    Hi,

    I haven’t work that much with rtl sites but, if I am not mistaken, you should treat the editor as if you’re working in an LTR site. The RTL styles will only be applied in the frontend.

    Best regards,
    Ismael

    in reply to: ALB Blog Image Overlay #724100

    Hey bjornwallman,

    Thank you for using Enfold

    The display property of the overlay is set to “none” in the style.css file.

    .image-overlay-inside, .image-overlay {
        display: none !important;
    }

    P.S: Awesome work! thumbsup

    Best regards,
    Ismael

    in reply to: EasySlider rotate from external #724099

    Hi,

    Add a custom css class attribute to the pictures, use “pic1”, “pic2” and “pic3” respectively then use this script in the functions.php file.

    function add_custom_script(){
    ?>
    <script type="text/javascript">
    (function($){
    	function a() {
    		function a() {
    			$('.pic1').click(function() {
    				$('.avia-slideshow-dots a:nth-child(1)').trigger('click');
    			});
    
    			$('.pic2').click(function() {
    				$('.avia-slideshow-dots a:nth-child(2)').trigger('click');
    			})
    
    			$('.pic3').click(function() {
    				$('.avia-slideshow-dots a:nth-child(3)').trigger('click');
    			})
    		}
    
    		a();
    	}
    
    	a();
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');
    

    This script will trigger the click event for the slider dots.

    Best regards,
    Ismael

    in reply to: Call to undefined function error #724097

    Hi,

    Edit the functions.php file in the child theme then look for the is_checkout function. It is a function from WooCommerce so it will stop working if you deactivate the plugin.

    Best regards,
    Ismael

    in reply to: Shop Banner Full Title #724096

    Hi,

    banner is out of focus and it shows only a center part of it

    This is an issue with the “cover” value because it stretches the image and in order to keep its aspect ratio, the edges of the image will overflow outside the container. We can set the value to 100% but it will probably distort the image.

    #av_product_description .av-parallax-inner {
        background-size: 100% 100%;
    }

    Best regards,
    Ismael

    Hi,

    Please provide the login details here so that we can check it. Is this happening on every posts?

    Best regards,
    Ismael

    in reply to: My custom categories do not link to their full posts #724089

    Hi,

    Great! Let us know if you need anything else. :)

    Best regards,
    Ismael

    in reply to: styling menu widget #724087

    Hi,

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: Disable Loading Animation of Masonry #723613

    Hi!

    My bad. I forgot to remove the “.av-masonry-item-loaded” selector in the css declaration above. This selector is added to the masonry items, one at a time, so it creates a “delay” effect. Please try the code again.

    .av-masonry-entry {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .avia_sortable_active .isotope {
        -webkit-transition: none;
        transition: none;
    }

    Cheers!
    Ismael

Viewing 30 posts - 37,921 through 37,950 (of 66,745 total)