antesdelafama
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Error in WP-dTree v. 3.3?Yeah man, can you tell us how, I have the same error, after edited the wp-dtree_cat-functions.php file
I changed the cat_ID and all the tags that were calling the old tables that were dropped in WP 2.3 and now I have the same error you had.
Please send us your fix.
Forum: Fixing WordPress
In reply to: Customized registration form – want to collect user’s URLOMG you freaking rock man!
Forum: Alpha/Beta/RC
In reply to: 2.1 RC1 – Multiple categories = “multiple” posts…Thanks stitzelj, I was getting nutts. The Plugin stills on the list of “Plugins that work”, somebody tell Mat to remove it from there.
Forum: Fixing WordPress
In reply to: Custom title for specific categoriesDamn it! it doesn´t work.
Let see, if I do this:
<?php if(in_category(1)) : ?>
<?php the_title() ?>
<?php else : ?>
¿Qué hacía <?php the_title() ?> antes de la fama?
<?php endif; ?>It works, but also puts the custom TITLE in category 1.
Oh man, I thought I would be easy, but thanks for the help.
Forum: Fixing WordPress
In reply to: Custom title for specific categoriesThis is more refined, It shows no error, but is not doing what I want it just prints the normal title.
<?php
if ( is_category(‘1’) == true) {
print “¿Qué hacía ” . the_title() . ” antes de la fama?”;
} else {
print “” . the_title() . “”;
}
?>Forum: Fixing WordPress
In reply to: Custom title for specific categoriesYeah, you are right, but that only prints the normal title. A friend told me to use this, but it needs more work.
<?php if ( is_category(‘1’) == true) {
¿Qué hacía <?php the_title(); ?> antes de la fama?
<?php else: ?>
<?php the_title(); ?>
}But something stills wrong there…
Forum: Fixing WordPress
In reply to: Custom title for specific categoriesOk, I did this:
<?php if(!is_category(‘1’)) : ?>
<?php the_title(); ?>
<?php else: ?>
¿Qué hacía <?php the_title(); ?> antes de la fama?
<?php endif; ?>But it shows me always <?php the_title(); ?>
As you said, I need to figure it out how to fill those “do this” lines. We are getting there.
Forum: Fixing WordPress
In reply to: Custom title for specific categoriesWhat about this?
<?php if (‘is_catgeory’ (1)) != the_title(): ?>
<?php else : ?>
¿Qué hacía <?php the_title(); ?> antes de la fama?
<?php endif; ?>Forum: Fixing WordPress
In reply to: Custom title for specific categoriesOk, I´m not a coder at all, I´m looking for help outside this forum too.
I came up with this :S
<?php if (is_catgeory (1)) != NOT the_title(); ?>
Of course is not working, the thing should be like this:
If category = 1 then the_title else ¿Qué hacía the_title antes de la fama?
Explained:
If the category is the #1 then I want the normal title, but if is not, then show me the custom title.Thanks moshu for the guide though.
Forum: Fixing WordPress
In reply to: Custom title for specific categoriesThank you Zoutesnor, that plugin might do the trick, but it has 2 years old and it didn´t worked to well with WP 2.0.5
I´m looking for a piece of code that might exlcude the “News” category from using the custom title. E.G.
This is what I want to use in single.php
¿Qué hacía <?php the_title(); ?> antes de la fama?
But at the same time I don´t want the “News” category to use that custom title, I just wanted to use the <?php the_title(); ?>
So I think that somebody that knows a little PHP could help me with some code to use some “IF this then do THAT”
Thanks!