madcore
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Exclude categories from feeds and archives.Thanks you very much, people ^_^!!
I got the plugin, and the snipet (I like work with code), and it works.
YOU′RE NUMBER ONE
Forum: Plugins
In reply to: Custom Box in Post pageCustom fields aren′t the thing I want. You know that in write posts page are some ajax boxes, for categories, password-protect the post, etc etc etc. I want to make one of these box with custom content.
Forum: Fixing WordPress
In reply to: About .htaccess and mod_rewriteI′ve tried with the two methods, but doesn′t work. The first .htaccess I tried is that:
RewriteEngine on
RewriteRule ^index.php$ https://www.nn45.com/~pelayo/index.phpAnd is in pelayo.nn45.com. What I′m doing wrong?
Forum: Plugins
In reply to: Guestbook pluginsKahil, thanks ^^. It works perfect. Sorry for the late answer ^^u.
Forum: Plugins
In reply to: Lesterchan WP-Email questionThe problem isn′t the plugin. It work perfect without modifications. Is my theme structure, and my need to make all theme-relationated to make possible when change from one theme to another, all blog things change.
Forum: Plugins
In reply to: Lesterchan WP-Email questionIt work perfect!!! Thanks.
Forum: Themes and Templates
In reply to: Help with <?php if ( is_category() ) : ?> functionFinally, I did it ^^.
I used the php switch function, and the internal $cat wp variable to make it work. Look at the code:
<?php get_header(); ?>
<?php
switch ($cat) {
//BLOG
case 5:
case 46:
case 58:
case 26:
case 56:
case 48:
case 49:
case 57:
case 52:
case 27:
case 51:
case 28:
case 44:
case 24:
case 29:
case 25:
case 43:
case 47:
case 50:
echo '<table border="0" width="100%" cellspacing="0" cellpadding="0"><tr><td width="100%" align="center" valign="top"><div class="blogtitle"></div>';
include(TEMPLATEPATH . '/basepost.php');
echo '</td><td align="center" width="189" valign="top">';
include(TEMPLATEPATH . '/sidebar-blog.php');
echo '</td></tr></table>';
break;
default:
echo '<table border="0" width="100%" cellspacing="0" cellpadding="0"><tr><td width="100%" align="center" valign="top"></div>';
include(TEMPLATEPATH . '/basepost.php');
echo '</td><td align="center" width="189" valign="top">';
include(TEMPLATEPATH . '/sidebar.php');
echo '</td></tr></table>';
}
?>
<?php get_footer(); ?>
With that, all the categories on the case tags under the blog commented line uses the template under them. After the break; line, al the another categories not matching any of the case uses the template under the default. Greatly easy way to do that I want.Thanks to all for your help.
Forum: Themes and Templates
In reply to: Help with <?php if ( is_category() ) : ?> functionI?′ve read that page, and a find some examples of things looks nearly like that I want, but not exactly. Following some things i?′ve readed in that page, I try this in my category.php:
<?php get_header(); ?>
<?php if ( in_category('5') ); ?>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" align="center" valign="top"><div class="blogtitle"></div><?php include(TEMPLATEPATH . '/basepost.php'); ?></td>
<td align="center" width="189" valign="top"><?php include(TEMPLATEPATH . '/sidebar-blog.php'); ?></td>
</tr>
</table>
<?php else; ?>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" align="center" valign="top"><?php include(TEMPLATEPATH . '/basepost.php'); ?></td>
<td align="center" width="189" valign="top"><?php include(TEMPLATEPATH . '/sidebar.php'); ?></td>
</tr>
</table>
<?php endif; ?>
<?php get_footer(); ?>That doesn?′t work. And I don?′t know how to make it.
Forum: Fixing WordPress
In reply to: Different categories templates in index.phpRevitalizing support pettition
the latest CG-Feedread simply crashes my WP. And I read the documentation, and is harder to use than RSS Processor.
I only wait to RSS Processor can handle the show of titles only and title & content, in a simple option given on de {rss line.
Keep the good work evelin ^^.
I?′t works perfect ^^. THANKS!!!!
I have one suggestion about the plugin: There?′s a way to show only the title of the entry, instead of the title and part of the content?
Forum: Fixing WordPress
In reply to: Show RSS entries titlesI already found that I want, but not in the codex.
https://www.ads-software.com/support/topic/43491
That?′s it ^^
Evelin, you?′re my hero!!!!! ^_^
I?′m searching something to do this, but I can?′t fint anything, only feed agregators to view them in the admin section, not in the frontpage.
I?′m going to test it now. Thanks for that plugin. A lot of kudos for you
Forum: Fixing WordPress
In reply to: php the_date doesn?′t workOuch, missed that part. >_<. Sorry.
Forum: Fixing WordPress
In reply to: Lasts titles or excerpts from each categoryFinally works well ^^. I can make exactly that I want.