Forum Replies Created

Viewing 30 posts - 31 through 60 (of 140 total)
  • Author
    Posts
  • in reply to: Give Shop Page Glassy Header + Transparency #1401662

    Mike,

    super helpful. For everyone: I test my Shop Setup in an unpolished page with the advanced layout editor and then copy+paste the page code to the actual shop page. Works brilliantly.

    Best
    Elmar

    in reply to: 5.5 with swipe support – when #1400999

    Hi Rikard,

    close it – thanks. Would be cool to get somehow notified as soon as the new version is released.

    Best
    Elmar

    in reply to: 5.5 with swipe support – when #1400834

    Thanks for the update. Appreciated.

    in reply to: Overwriting Meta Title fails #1333085

    Ismael,

    thank you. I will investigate. It might be due to us being forced to use an older version until AIOSEO adds API support back into their current version. Thanks for testing!

    Best
    Elmar

    in reply to: Overwriting Meta Title fails #1332947

    Ismael,

    There must be some other issue I cannot trace. All these changes have no effect on the Title.

    
    remove_action('wp_head', 'av_theme_slug_render_title');
    remove_filter('avf_title_tag', 'avia_wpseo_change_title_adjustment');
    
    add_action('init', function() {
        remove_action('wp_head', 'av_theme_slug_render_title');
    	remove_filter('avf_title_tag', 'avia_wpseo_change_title_adjustment');
    }, 10);
    
    function av_theme_slug_render_title_mod()
    {
        echo '<title>X ' . wp_get_document_title() . '</title>';
    }
    add_action( 'wp_head', 'av_theme_slug_render_title_mod' );
    

    I assume you have validated this in a clean enfold install? It does not seem to work for me. I can also not trace any another plugin setting these titles. I also haven´t overwritten those templates in our child theme.

    Best,
    El

    in reply to: Overwriting Meta Title fails #1332774

    Strange. All of these actions produce no change – are you sure these are actually working with the latest enfold?

    remove_filter(‘avf_title_tag’, ‘avia_wpseo_change_title_adjustment’, 10, 2); // no worky

    add_filter(‘avf_title_tag’,’avia_new_title’);
    function avia_new_title() {
    $title = “X: “.get_the_title();
    return $title;
    }

    add_filter(‘avf_title_tag’, ‘avia_change_title_tag’, 10, 2);
    function avia_change_title_tag($title, $wptitle)
    {
    return “X: “.$wptitle;
    }

    function avia_set_title_tag()
    {
    return “X: “.wp_get_document_title();
    }

    function avia_set_title_tag()
    {
    return wp_get_document_title();
    }

    in reply to: Overwriting Meta Title fails #1332289

    Here is their response and suggestion. Enfold doesn´t really take it into account though:

    Thanks for reaching out.

    We filter the core WP Title tag function to manage the Page Title of your page, so you’ll just need to return that in your filter.

    add_filter(‘avf_title_tag’, ‘avia_change_title_tag’, 10, 2);
    function avia_change_title_tag( $title, $wptitle )
    {
    return wp_get_document_title();
    }

    in reply to: Overwriting Meta Title fails #1331677

    Also tried:

    remove_filter(‘avf_title_tag’, ‘avia_wpseo_change_title_adjustment’, 10, 2);

    in reply to: Image in Grid Row fix size to cell #1331437

    Probably no setting, right? I did a css that works but of course no applies to all images in a flex cell:

    .flex_cell_inner .avia_image {
    width: 100%;
    }

    in reply to: Search autofocus on field and click on mobile search #1330832

    In general – many users are struggling with this and there should be a general solution in the docs or – even better – in the template itself.

    Here is an update:

    
    /* Mobile Search Form Magic */
    #top #searchform > div {
        display: block !important;
        opacity: 1 !important;
    }
    #avia-menu li.menu-search {
        display: none;
    }
    .av-active-burger-items #searchform{
    	padding-left: 40px !important;
    }
    
    
    /**
     * Show search bar on mobile menu
     */
    add_shortcode('avia_search', 'get_search_form');
    function ava_custom_script_mod_search_mobile()
    {
    ?>
    	<script>
    		(function($) {
    			$(document).ready(function() {		
    				var page   = window.location.href;
    				var search = '<form action="'+page+'" method="get" class=""><div><input type="submit" value="?" id="searchsubmit" class="button avia-font-entypo-fontello"><input type="text" id="s" name="s" value="" placeholder="Search"></div></form>';
    	
    				$('.av-burger-menu-main a').on('click', function() {
    					if($(".av-mobile-search").find('form').length == 1) return;
    					setTimeout(() => {
    						$("<li class='av-mobile-search av-active-burger-items'>" + search + "</div>").insertAfter('.menu-item-178580');
    						$('.menu-search.menu-item-91335>a').contents().unwrap().wrap('<p/>');
    					}, 300);	
    				});
    			});
    		})(jQuery);
    	</script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_mod_search_mobile', 10000);
    
    in reply to: Search autofocus on field and click on mobile search #1330741

    Hi Mike,

    the real problem is that the mobile search result links are „unclickable“.

    It hasnt been resolved- sorry. Or does that work on your mobile devices?

    Best
    Elmar

    in reply to: Search autofocus on field and click on mobile search #1330581

    I changed that but no dice so far…

    Appreciate the support!

    in reply to: Display search icon on mobile in burger flyout #1329107

    Hi guys,

    thanks guys!

    Just for the record: here is complete instruction to make it work as I hate going through dozens of threads to search for the complete solution. You are welcome ;). The search form was hidden in my case.

    
    /* Mobile Search Form Magic */
    #top #searchform > div {
        display: block !important;
        opacity: 1 !important;
    }
    #avia-menu li.menu-search {
        display: none;
    }
    

    Functions.php

    
    /**
     * Show search bar on mobile menu
     */
     add_shortcode('avia_search', 'get_search_form');
    function ava_custom_script_mod_search_mobile()
    {
    ?>
    	<script>
    		(function($) {
    			$(document).ready(function() {		
    				var page   = window.location.href;
    				var search = '<form action="'+page+'" method="get" class=""><div><input type="submit" value="?" id="searchsubmit" class="button avia-font-entypo-fontello"><input type="text" id="s" name="s" value="" placeholder="Search"></div></form>';
    	
    				$('.av-burger-menu-main a').on('click', function() {
    					if($(".av-mobile-search").find('form').length == 1) return;
    					setTimeout(() => {
    						$("<li class='av-mobile-search av-active-burger-items'>" + search + "</div>").insertAfter('.menu-item-178580');
    					}, 300);	
    				});
    			});
    		})(jQuery);
    	</script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_mod_search_mobile', 10000);
    
    in reply to: Display search icon on mobile in burger flyout #1328816

    Hm, maybe you got that wrong. I have search working. I *also* need it on mobile. Wouldn´t the custom link be visible all the time?

    in reply to: Display search icon on mobile in burger flyout #1328807

    Standard slim logo left with 45px custom height.

    in reply to: Ajax search results URL no longer translated #1320694

    Hi Ismael,

    you do not need to to support qtranslate-xt – it just works and it did work for years with enfold. It stopped working recently and I need to check what caused it. Can you point me to the enfold files that handles the AJAX search? Thanks!

    Best,
    Elmar

    in reply to: How to change product image sizes in product page #1269539

    Nevermind. Figured it out. For anywone wondering … this is now done in the front end customizer of wordpress. Best, Elmar

    in reply to: Mobile cart fix #1269522

    Ismael,

    beautiful! I can confirm that all is good now. Looks great.

    Best,
    Elmar

    in reply to: Mobile cart fix #1268981

    Hey Ismael,

    unfortunately right now this is not easily possible. But just to reiterate. I was hoping we can fix it by determining the required some changes through the browser dev console. As you can see I implemented this but it does not work.

    Best,
    El

    • This reply was modified 3 years, 8 months ago by El.
    in reply to: Mobile cart fix #1268413

    Hey Ismael,

    this thread got a little bit hijacked ;). As per the original issue. The table still isn´t right and I put in the css you provided. We don´t have a staging site and I would appreciate you taking another look at this. It must be a really small fix.

    Best,
    El

    in reply to: Mobile cart fix #1265713

    I checked again and its in the compressed style.css … but still doesnt affect the quantity height:

    in reply to: Mobile cart fix #1265456

    Hehe, of course man. Several times. Does it mean it works for you???

    in reply to: Mobile cart fix #1264953

    So you wan the whole thing to look like? For some reason it still fails…

    @media only screen and (max-width: 767px) {

    td.product-quantity {
    min-width: 120px !important;
    }

    #top div .quantity input.plus, #top div .quantity input.minus {
    line-height: 29px !important;
    width: 30px !important;
    height: 30px !important;
    }

    td {
    font-size: 12px !important;
    }

    #top div .quantity input.qty {
    height: 30px !important;
    width: 30px !important;
    line-height: 29px !important;
    }

    .shop_table td {
    height: 100% !important;
    }

    table.shop_table .woocommerce-cart-form__cart-item.cart_item {
    height: 100% !important;
    }
    }

    in reply to: Mobile cart fix #1264270

    Unfortunately it doesn´t help. I put the line width back in and added the css. Its still off.

    Best,
    El

    in reply to: Mobile cart fix #1263244

    Hi Ismael,

    this has been deleted yesterday already. Please clear your browser cache.
    The overlap cannot be seen because I made the lines invisible. If you change that you will see it.

    Best,
    Elmar

    in reply to: Mobile cart fix #1262972

    Hey Ismael,

    I had to change everything to make it look reasonable. I added your css to my other css. What remains is that the table is somehow destroyed:

    problem with table

    I circumvent it by setting the table width to zero but that makes it a little less readbable.

    Best,
    El

    in reply to: Woocommerce webp preview doesn´t work on product detail page #1261490

    Ismael,

    nice one. This did the trick:

    https://www.dropbox.com/s/e9iavjfenrk69it/Bildschirmfoto%202020-11-19%20um%2009.34.37.jpg?dl=0

    Can you put that into the next enfold release? That way I don´t have re-change the source code.

    Best,
    Elmar

    in reply to: Woocommerce webp preview doesn´t work on product detail page #1260658

    Here is the screenshot that also shows that lightbox is activated. It seems to be a webp issue.

    in reply to: Woocommerce webp preview doesn´t work on product detail page #1260524

    Access it from mobile in case you only have webp supporting desktop browsers

    in reply to: Woocommerce webp preview doesn´t work on product detail page #1260523

    Hi Victoria,

    sure – as mentioned. It works on safari so the code is there. It seems like webp is the actual issue with enfold and lightbox.

    Best
    Elmar

Viewing 30 posts - 31 through 60 (of 140 total)