Hello Frosticek
i have pagination on the public profile but i want to hide links and text if the items displayed is less than 10.
this doesnt work but am i going in the right direction? is their anything you could point out for me?
<div class="propag">
<?php if( osc_count_items() > 10) { ?>
<label for="profileitems"><span><?php _e('Check out more from this seller', 'patricia') ; ?></span></label>
<?php echo osc_pagination_items(); ?>
<?php } else if ( osc_item_count() < 10 ) { ?>
<?php _e('', 'patricia'); } ?>
</div>
<?php } else { ?>
<div class="empty"><?php _e('No listings posted by this seller', 'patricia'); ?></div>
<?php } ?>
</div>
</div>
Thanks in Advance
Chris