Viewing 14 replies - 1 through 14 (of 14 total)
  • Thread Starter mateusw3c

    (@mateusw3c)

    Plugin Author TV productions

    (@tv-productions)

    The url example.com/albums/ (where example.com is your wordpress url) displays all the albums.
    The number of thumnails is controlled by the Number of images for excerpt setting under Settings > Media. Set the value to 0 to show all the thumbs.

    this doesnt work..!!
    when set the Settings>Media>Number of Image to 0
    the url example.com/albums/ doesnot work !!!
    please help

    Plugin Author TV productions

    (@tv-productions)

    That’s very strange. I can’t figure out where it goes wrong. What is your WordPress version and language?

    You can also check if you’ve got the correct URL by editing a photo album and look for the permalink. Now if you copy that link to your browsers address bar and remove everything after the second last slash, that URL should work.
    Example: The permalink is: https://mywordpresssite.com/albums/my-album/, then remove everything after the second last slash, you’ve got: https://mywordpresssite.com/albums/

    i’m using wordpress in Arabix language, so when i go to one of my albums the link that appear is site.com/?easy-photo-album=1
    and there is a link in the page called All Albums, when i enter on it,it redirect me to site.com/albums/ and that’s give me nothing “error”
    also i try to go to site.com/easy-photo-album/
    give me wrong address..
    thanks .

    Plugin Author TV productions

    (@tv-productions)

    Ah, you have not enabled the permalinks. Then your archives URL is example.com/?post_type=easy-photo-album.

    and what is gonna be my albums page, i need a working link.

    Thread Starter mateusw3c

    (@mateusw3c)

    Thread Starter mateusw3c

    (@mateusw3c)

    I solved my problem in another way. I’ve listed the posts that post_type on a page and enable post_thumbnail each post … was even better.

    <ul class="albuns-list">
    
    	<?php
    		query_posts(array(
    			'post_type'        => 'easy-photo-album',
    			'orderby'          => 'date',
    			'post_status'      => 'publish',
    			'order'            => 'DESC',
    			'showposts'        => 10))
    	;?>
    	<?php if(have_posts()) : ?><?php while(have_posts()) : the_post() ?>
    		<li>
    			<a href="<?php the_permalink();?>" title="<?php the_title();?>">
    				<?php if ( has_post_thumbnail()) the_post_thumbnail('small_image',(array('title' => ''. $title .''))); ?>
    				<h3><?php the_title(); ?></h3>
    			</a>
    		</li>
    	<?php endwhile; endif; ?>
    
    </ul>
    Thread Starter mateusw3c

    (@mateusw3c)

    In functions.php

    add_theme_support('post-thumbnails',array('post', 'page', 'easy-photo-album'));
    if ( function_exists( 'add_image_size' ) ) {
    	add_image_size( 'small_image', 220, 149, true);
    	add_image_size( 'medium_image', 294, 184, true);
    	add_image_size( 'big_image', 300, 300, true);
    }

    thanks man ??

    Thread Starter mateusw3c

    (@mateusw3c)

    ??

    To get this working by default make sure your theme has an archive.php and content.php file in place. Otherwise you may just see a blank page.

    hey mateusw3c, maybe you can tell me, how i can create thumbnain on alumbs?

    Now i see only albums title without thumbnail :/ But i can`t find where set the image on albums?

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Show all albums on one page’ is closed to new replies.