cyberico
Forum Replies Created
-
Forum: Plugins
In reply to: [Promotion Slider] [Plugin: Promotion Slider] image autoresizehi woodent, i’d like to have your help about the use of promoslider_image_size filter.
i am testing the slider on http://www.1minutesite.com, working good but i am not able to autoresize (enlarging) the images at full slider frame (650px).
i suppose that filter should help but i have no idea how to use it
thnx
enricoForum: Plugins
In reply to: WordPress Email Notification Plugin v2.3.1Forum: Plugins
In reply to: wp-members doesn’t work right for me.Do you plan to add a double-optin email system with the first registration AND password retrive?
Forum: Plugins
In reply to: wp-members doesn’t work right for me.yes it helps. but pls send the 1.6.2 !!!
thnx
enricoForum: Plugins
In reply to: latest post excluding a specific categoryThis CODE works good for me in wordpress 2.0 to accomplish this purpose:
a) to display the LATEST post in excerpt fashion (ideal in the frontpage)
b) to EXCLUDE a specific category (i.e. #6) that will not be eligible for latest post
here the code:
<h3>Latest Article</h3><?php query_posts('showposts=1'); ?><?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ( !(in_category('6')) ) { ?><div class="post">
<h2 class="post-title"><a>" title="Permanent link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p class="post-meta"><?php the_time('F jS, Y') ?> / <?php the_category(', ') ?> / <?php comments_popup_link('No comments', '1 comment', '% comments','Comments are off for this post'); ?>
<div class="post-body">
<?php the_excerpt(); ?>
<p class="more"><a>" title="Permanent link to <?php the_title(); ?>">Continue reading</a>
</div>
</div><?php } ?> <!-- Close the if statement. --><?php endwhile; else: ?>
Sorry, no posts matched your criteria.
<?php endif; ?>Code will find the latest post excluding category #6.
you can change category ID/number modifing this line (change number 6):
<?php if ( !(in_category('6')) ) { ?>you can display the 2 or 3 or .. last posts modifing this line (change number 1):
<?php query_posts('showposts=1'); ?>good luck!
enricoForum: Plugins
In reply to: latest post excluding a specific categoryhi
i found another way that now excludes a choosen category (i.e. #6).
but the problem now is that im no more able to display the very latest post.
is anybody able to fix my code? i think the fixed code will make happy lot of wordpress users.
_________
<h3 class=”sec-title”>Latest Article</h3>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ( !(in_category(‘6’)) ) { ?><div class=”post”>
<h2 class=”post-title”>” title=”Permanent link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<p class=”post-meta”><?php the_time(‘F jS, Y’) ?> / <?php the_category(‘, ‘) ?> / <?php comments_popup_link(‘No comments’, ‘1 comment’, ‘% comments’,’Comments are off for this post’); ?>
<div class=”post-body”>
<?php the_excerpt(); ?>
<p class=”more”>” title=”Permanent link to <?php the_title(); ?>”>Continue reading
</div>
</div><?php } ?> <!– Close the if statement. –>
<?php endwhile; else: ?>
Sorry, no posts matched your criteria.
<?php endif; ?>____________________
thnx
enricoForum: Plugins
In reply to: latest post excluding a specific categoryno query_posts does not work because the code that uses my template (Brajeshwar v7.0) seems to be a “revised loop”.
see:
http://codex.wordpress.org/Displaying_Posts_Using_a_Custom_Select_Queryi need another command line to exclude a category that works with it.
any idea??
Forum: Fixing WordPress
In reply to: Post via email – solution?hi
email posts do not work for me at all!!
wp 2.0.4setting up nameserver, login, passoword correctly… but no one post appears. why???
Forum: Everything else WordPress
In reply to: Post using results from custom formhi. did you find it?? im looking at the same plugin…
Forum: Fixing WordPress
In reply to: Parent categories for links… “Link directory”hi.
it would be very cool to integrate phplinkdirectory.com in wordpress. anyone can help me? the problem is that PhpLD uses the same “get category” of wordpress and there is a conflict.
at the moment i was only able to integrate this simple directory (see http://www.markettari.com/) but id like to use PHPLD. let me know!