• Hi all,

    Just a quick note for anyone who is struggling to get Tiled Galleries (Jetpack Feature) working with this theme. To fix this, you need to modify the functions.php file of the Origin theme like so:

    Original version:

    /* Add theme support for framework extensions. */
    add_theme_support( ‘loop-pagination’ );
    add_theme_support( ‘get-the-image’ );
    add_theme_support( ‘cleaner-gallery’ );
    add_theme_support( ‘breadcrumb-trail’ );

    Modifed version:

    /* Add theme support for framework extensions. */
    add_theme_support( ‘loop-pagination’ );
    add_theme_support( ‘get-the-image’ );
    /* Disabled to fix tiled galleries
    add_theme_support( ‘cleaner-gallery’ ); */
    add_theme_support( ‘breadcrumb-trail’ );

    You should now find that you can use tiled mosaic, circle, etc.

    Of course, if this theme is updated then this modification will be lost, but chances are it’ll be updated in a way that works with Tiled Galleries anyway. At least you now have a method of getting it going if you need to!

    Example: https://www.northernchap.co.uk/pancake-nidi-with-tomato-sauce/

    As a side note, I tried to do this through the editor in WP itself and it totally broke my site, I had to reupload the functions.php file – might have been a one off but worth pointing out, back it up first and if possible, edit the file on your desktop and then upload it just to be on the safe side.

    Hope this helps!

  • The topic ‘Making Tiled Galleries work with this theme – solution’ is closed to new replies.