Forum Replies Created

Viewing 30 posts - 10,711 through 10,740 (of 67,443 total)
  • Author
    Posts
  • in reply to: On sale widget price layout #1352369

    Hi,

    No problem! Glad we could be of help. Please let us know if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Change size and position of icon in icon box #1352368

    Hi,

    Thank you for the update.

    I can’t seem to change them without also changing every other icon on the page!

    You may have to apply a custom css class name or ID to the icon box element. Please edit the icon box, go to the Advanced > Developer Settings panel, look for the Custom CSS Class field and input the name “av-pencil-iconbox”, without the quotation marks. You can then use this class name to target that specific iconbox element and adjust its style.

    #top .av-pencil-iconbox .iconbox_icon {
        float: none;
        position: absolute;
        left: 50%;
        top: -46px;
        margin: 0 0 0 -46px;
        padding: 30px;
        font-size: 50px;
        line-height: 50px;
    }
    
    #top .av-pencil-iconbox .iconbox_icon:before {
        position: absolute;
        left: 50%;
        top: 50%;
        right: auto;
        transform: translate(-50%, -40%);
    }
    

    Adjust the values of the css properties as you wish.

    Best regards,
    Ismael

    in reply to: Zoom slider images #1352367

    Hey Antonio,

    Thank you for the inquiry.

    You can apply the background to a Color Section element and set its minimum height to 100%, or use a Fullscreen Slider. The elements are available in the Advance Layout Builder (ALB).

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#build-a-web-page-with-advanced-layout-builder

    Best regards,
    Ismael

    in reply to: Google Consent Mode #1352366

    Hey I-Visio,

    Thank you for the inquiry.

    This is not yet available in the theme but you can include a toggle in privacy modal popup or in the site’s privacy page to enable or disable the Google Analytics script. This is the toggle shortcode.

    Best regards,
    Ismael

    Hey!

    Sorry for the delay. We have checked the dev site but unfortunately, we are not yet sure why the product widgets are not rendering properly in the sidebar. Did you install a new plugin or add custom scripts after updating the theme?

    We may have to access the live site in order to compare it with the latest version, and see if we can find anything different. Please post the htaccess and WordPress login details of the live site in the private field. Additional info from the plugin authors will help a lot.

    Regards,
    Ismael

    in reply to: Blog mit Masonry #1352267

    Hi,

    Glad to know that this modification is working. We will close this thread for now Please feel free to open another if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: On sale widget price layout #1352266

    Hey profumopuntoit,

    Thank you for the inquiry.

    The following css code should adjust the position of the sale price and place it beside the original price.

    ul.product_list_widget li del, ul.product_list_widget li ins {
        display: inline !important;
        clear: none;
        width: auto;
        float: left;
        margin-right: 15px;
    }
    

    Best regards,
    Ismael

    in reply to: Title in evidence (ignored on smartphones) #1352263

    Hi,

    Thank you for the update.

    You can place the code in the Enfold > General Styling > Quick CSS field or in the style.css file within the child theme directory. Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings and don’t forget to purge the cache after adding the css modification.

    Best regards,
    Ismael

    in reply to: menu burger color #1352261

    Hi,

    Thanks for the info @niguli!

    Best regards,
    Ismael

    in reply to: menu burger color #1352260

    Hi,

    Thanks for the info @niguli!

    Best regards,
    Ismael

    in reply to: Change size and position of icon in icon box #1352259

    Hey pelgrimrat,

    Thank you for the inquiry.

    You should be able to use the following css code to adjust the style of the iconbox icons.

    #top .iconbox_top .iconbox_icon {
        float: none;
        position: absolute;
        left: 50%;
        top: -46px;
        margin: 0 0 0 -46px;
        padding: 30px;
        font-size: 50px;
        line-height: 50px;
    }
    
    #top .iconbox_top .iconbox_icon:before {
        position: absolute;
        left: 50%;
        top: 50%;
        right: auto;
        transform: translate(-50%, -40%);
    }

    Please make sure toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

    in reply to: all text (blocks) have [av_ codes in them #1352252

    Hi,

    Thank you for the update.

    Did you switch the from the classic or block editor to the Advance Layout Builder (ALB)? Looks like the page or product was first built using the classic or block editor, then later switched to use the ALB, which is why the actual shortcodes are displayed instead of the builder elements. You may need to recreate the page using the ALB.

    Best regards,
    Ismael

    in reply to: Next/Prev in shop showing all categories #1352251

    Hi,

    For out of stock products, you may need to adjust the Out of stock visibility option and tick the Hide out of stock items from the catalog checkbox in the Woocommerce > Settings > Products > Inventory panel.

    // https://rudrastyh.com/woocommerce/hide-out-of-stock-products.html

    Best regards,
    Ismael

    in reply to: Easy Slider with a lot of images – Slow to Start #1352249

    Hi,

    Yes, it should be doable but it will require modifications that are beyond the scope of support. You may need to hire a freelancer developer or contact our partner Codeable using the form in the page below.

    // https://kriesi.at/contact/customization

    Best regards,
    Ismael

    Hi,

    I have a widget installed that applies categories to media elements.

    How do you apply the categories (landscape, portrait) to the images or media files? Are you using a plugin? Please ask the plugin author how can we retrieve the image categories so that we can create a condition or logic out of them.

    In the enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-masonry.php, you will find a function called ratio_check_by_tag which as the name suggests, checks for the posts tag and returns the appropriate orientation. We might be able to do the same thing with the image categories once we know how to retrieve them.

    Best regards,
    Ismael

    in reply to: Form #1352244

    Hey Christian,

    Thank you for the inquiry.

    Yes, that should be possible. Just enter the email addresses (separated by commas) in the contact form’s Content > Backend > Your email address field.

    Best regards,
    Ismael

    in reply to: Change responsive behavoir footer widgets? #1352241

    Hi,

    Where can we check the page? Please create a new thread and provide the site details in the private field. We will close this one for now.

    Best regards,
    Ismael

    Hey Nicola,

    Thank you for the inquiry.

    Try to replace the filter with the following code.

    
    add_filter('avia_post_slide_query', 'avf_post_slide_query_mod');
    function avf_post_slide_query_mod( $query ) {
        $query['order'] = 'ASC';
        return $query;
    }
    

    The orderby parameter is already set to “date” by default, so we don’t have to specify it.

    Best regards,
    Ismael

    in reply to: Rename combo widget term #1352239

    Hey Christian,

    Thank you for the inquiry.

    You may need to modify the enfold/framework/php/widgets/widget-classes/class-avia-combo.php file directly and adjust the widget tab title in this code around line 47.

    
    			$this->form_tabs = array(
    								0				=> __( 'No content', 'avia_framework' ),
    								'popular'		=> __( 'Popular posts', 'avia_framework' ),
    								'recent'		=> __( 'Recent posts', 'avia_framework' ),
    								'comments'		=> __( 'Newest comments', 'avia_framework' ),
    								'tagcloud'		=> __( 'Tag cloud', 'avia_framework' )
    							);
    

    You can also use this plugin if editing a file is not an option.

    // https://wordpress.org/plugins/say-what/

    Best regards,
    Ismael

    in reply to: The Events Calendar Featured Image Size #1352238

    Hey Caleb,

    Thank you for the inquiry.

    The maximum size of the featured image used in the single event pages is set to 1360x321px by default, but we can adjust it by using this filter in the functions.php file.

    // adjust the size of the single events featured image
    add_filter('post_thumbnail_size', 'avf_single_event_post_thumbnail_size');
    function avf_single_event_post_thumbnail_size($size)
    {
        if ( is_singular('tribe_events') ) {
            $size = 'full'; // Change to your desired image size.
        }
    
        return $size;
    }
    

    This should display the original version of the featured image.

    Best regards,
    Ismael

    in reply to: Blog mit Masonry #1352237

    Hi,

    Did you enable the masonry excerpt? The filter above will only work when excerpt is enabled.

    If you need the read more text inside the masonry image, try to edit the enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-masonry.php file and look for this code around line 650.

    					$bg  = '<div class="av-masonry-outerimage-container">';
    					$bg .=		$img_before;
    					$bg .=		"<div class='av-masonry-image-container' {$img_style} {$outer_title} {$outer_alt}>";
    					$bg .=			$img_html;
    					$bg .=		'</div>';
    					$bg .= '</div>';
    

    You can place the read more text after this line.

    $bg .=			$img_html;
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Once the ALB is locked, user who is not an admin will not be able to use the templates option, but we can modify the enfold/config-templatebuilder/avia-template-builder/php/class-save-buildertemplate.php file to enable it back. You have to remove the following code around line 29 inside the __construct function.

    if( ! isset( $_REQUEST['avia_export'] ) )
    			{
    				if( $this->builder->disable_drag_drop == true )
    				{
    					return;
    				}
    			}
    

    Best regards,
    Ismael

    in reply to: Missing sliding images since Enfold theme update #1352235

    Hey steel-blue,

    Thank you for the inquiry.

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings. And please make sure to purge the cache after disabling the compression.

    Best regards,
    Ismael

    in reply to: Woocommerce product category chaos #1352234

    Hi,

    Did you set the stock or product inventory status as category? The post navigation will not filter posts based on its inventory. Please provide a link to a product or category page.

    Best regards,
    Ismael

    in reply to: masonry entries filter: slow load of results #1352150

    Hey ftt123,

    Thank you for the inquiry.

    You can use this css code to display all masonry items at once on page load.

    .av-masonry-entry {
        opacity: 1;
        visibility: visible;
    }
    

    Regarding the category filter, please note that the masonry element can only filter items that are already visible in the page. If pagination is enabled, filtered items will not display if they are located on a different page. User will have to go to that page and click the category filter again.

    Best regards,
    Ismael

    in reply to: Read more / less in category text #1352149

    Hey KvarngardenMedia,

    Thank you for the inquiry.

    Try to add this script in the functions.php file to initially hide some of the categories and create a toggle button.

    
    function ava_add_custom_script(){
    	?>
    	<script>
    	(function($) {
    		$(".product_meta").prepend("<a class='prod_category_toggle cat_hidden' href='#'>toggle</a>");
    
    		$(".prod_category_toggle").on("click", function() {
    			var toggle = $(this);
    			
    			if( toggle.is(".cat_hidden") ) {
    				show_categories(); 
    			} else {
    				hide_categories(); 
    			}
    
    			toggle.toggleClass("cat_hidden");
    		});
    
    		function hide_categories() {
    			var posted_in = $(".product_meta .posted_in").html();
    			var posted_in_replaced = posted_in.replaceAll(", ", "<span class='sep'>, </span>");
    			
    			$(".product_meta .posted_in").html(posted_in_replaced);
    		
    			$(".product_meta .posted_in a").each(function(i) {
    				if (i > 10) {
    					$(this).css("display", "none");
    					$(this).next(".sep").css("display", "none");
    				}
    			});
    		}
    
    		function show_categories() {
    			$(".product_meta .posted_in a").each(function(i) {
    				$(this).css("display", "inline");
    				$(this).next(".sep").css("display", "inline");
    			});
    		}
    
    		hide_categories();
    	})(jQuery);
    	</script>
    	<?php
    }
    add_action('wp_footer', 'ava_add_custom_script');
    

    You can adjust the style of the toggle button with this css code.

    .prod_category_toggle {
        position: absolute;
        background: #555555;
        padding: 10px 15px;
        font-size: 15px;
        border-radius: 2px;
        color: #ffffff;
    }

    Best regards,
    Ismael

    in reply to: Can't get OpenStreetMaps to work #1352148

    Hey LentzOtto,

    Thank you for the inquiry.

    We were not able to check the site because it is still on maintenance mode and the login info above seems to be invalid. Please check the info carefully or provide another login account.

    Best regards,
    Ismael

    in reply to: Blog mit Masonry #1352147

    Hey Melanie,

    Thank you for the inquiry.

    Please check the filter that @Mike provided in the following thread.

    // https://kriesi.at/support/topic/add-button-to-the-masonry-post/#post-1311784

    The filter should append a read more text to the masonry content.

    Best regards,
    Ismael

    Hey kops,

    Thank you for the inquiry.

    In the Enfold > Layout Builder panel, there is the Lock advanced layout builder option, which prevents anyone who is not an administrator to adjust the layout of an existing page, but everyone who can edit that entry will still be able to edit the content of the existing elements. You nay need to use a third party membership plugin if you need to specify more rules and restrictions.

    Best regards,
    Ismael

    in reply to: Magazine element customization #1352145

    Hi,

    Try to adjust the css code a bit and specify the top position. Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    .av-magazine-entry:before {
        float: left;
        display: inline-block;
        content: '';
        -webkit-border-radius: 0.375rem;
        border-radius: 0.375rem;
        height: 0.75rem;
        width: 0.75rem;
        margin-right: 0.5rem;
        background-color: #bdbdbd;
        top: 5px;
        position: relative;
    }
    

    Best regards,
    Ismael

Viewing 30 posts - 10,711 through 10,740 (of 67,443 total)