Gallery store display

HomeSupportImage StoreGallery store display

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #105240
    daviddddd
    Member

    Hey Yall,

    I have almost finshed building a photography folio, with imagestore being one of the best features of the site. Great bunch of code :O)

    Although i would like to just display one single gallery with store functionality on the store page. Not a link through to the gallery page.
    Is this possible?

    http://www.ryansmythphotography.com.au/

    If anyone is interested in the build.

    Thanks

    #110762
    Xpark Media
    Keymaster

    @daviddddd,

    You could create the gallery and change the path to make this your store page.

    If you want display the most recent gallery, you can create a page template and use the following code:

    $gallery = wp_query(array('post_type'=>'ims_gallery', 'posts_per_page'=>1));
    if ( $gallery->have_posts() ) {
    	while ( $gallery->have_posts() ) { $gallery->the_post();
    		the_content( );
    	}
    }
    #242163
    pategan
    Participant

    Hi daviddddd,

    I am currently attempting to do the exact same with http://www.christymcnamara.com/wp but the above code hasn’t worked for me with [insert_php] plugin and on the page. Do I need to insert this code somewhere else in order for it to work?

    That other site looks great btw 🙂

    Patrick

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.