Forum Replies Created

Viewing 10 posts - 31 through 40 (of 40 total)
  • Author
    Posts
  • in reply to: Comments element on pages #519739

    Here

    in reply to: MailChimp pop up form #516420

    Curious to know, did you find a solution?

    Got the same problem :)

    in reply to: Overlay Accordion Slider #510982

    It’s not really an option to make a reset of Enfold, I would consider that too dangerous close to our launch :/ .

    I made a child theme with many custom css lines. Don’t see any that should interfere negatively with the accordion, though. Didn’t touch that one specifically.

    I made a few lines in the functions.php and added a custom 404.php. No changes to the theme files besides that.

    These are the lines in the child theme functions.php:

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */
    
    /* 
    REMOVES KRIESI LINK IN THE SOCKET
    */
    
    add_filter("kriesi_backlink","new_link");
    function new_link(){
    $kriesi_at_backlink = "";
    return $kriesi_at_backlink;
    }
    
    /* 
    REMOVES IMAGE FILE NAME ON HOVER LANDING PAGE HOTSPOTS
    */
    
    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('a').removeAttr('title');
    jQuery('img').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');
    
    /* 
    PLACES SEARCH IN HAMBURGER MENU ON MOBILE
    */
    
    add_filter( 'wp_nav_menu_items', 'avf_add_search', 3, 2 );
    function avf_add_search( $items, $args ) {
    	if ($args->theme_location == 'avia')
    	{
    		$search = '<li id="menu-item-search-mobile" class="menu-item menu-item-type-post_type menu-item-object-
    
    page current-menu-item page_item page-item-18 current_page_item menu-item-top-level menu-item-top-level-
    
    5">'.get_search_form(false).'</li>';
    		$items = $search . $items;
    	}
    	return $items;
    }
    
    /* 
    ALLOWS US TO SET A CUSTOM SHOP PAGE
    */
    
    add_theme_support( 'avia_custom_shop_page' );
    
    
    in reply to: Overlay Accordion Slider #510694

    Hi Eliott,

    in reply to: Unable to click buttons on mobile #505593

    It worked..! Thanks :)

    in reply to: Unable to click buttons on mobile #505493

    Hm okay. I have tried using several iPhone 5s on Safari and also tried iPhone 6 in safari.

    The last button on the page is the only one working for some reason.

    in reply to: Background overlay on Masonry grid #500447

    Sadly, it didn’t. The alignment is still off and on a retina screen the white pixel line is very visible. Any ideas?

    in reply to: Background overlay on Masonry grid #498272

    Another problem arose then:

    I have the masonry grid on ‘no gap’ but still there are vertical pixel gaps between entries. They are larger in the top and then get narrowed down, which looks very sloppy and isn’t meant to be there, even more with the ‘no gap’ setting. I can’t find the cause of is.

    How do I solve this behaviour?

    in reply to: Background overlay on Masonry grid #498222

    Cheers that worked :)

    I changed min-height to 100% to make it responsive and changed z-index to 2 to stay below the text, for anyone interested.

    Thanks!

    in reply to: 'Flickering' masonry grid #497550

    Worked :)

    Thank you!

Viewing 10 posts - 31 through 40 (of 40 total)