wp_guy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Pingback Link Text ExtractI’ve been having a look at WordPress core files… and it looks like WordPress doesn’t send that piece of text… it’s the other way around. I mean… You send a pingback to another blog… that blog receives it, then goes to your blog and takes the piece of text…
does that make any sense?
Forum: Fixing WordPress
In reply to: Codex hacked?Yup… it’s showing the right page now…
Doesn’t someone approve or deny changes made to the codex? Can I just go there and change what I want… just like that?
Forum: Fixing WordPress
In reply to: Make BBPress a Page in WordPress???Well… you’d have to list your pages manually, instead of using wp_list_pages() e.g:
<ul> <li><a href="/home">Home</a></li> <li><a href="/contact">Contact</a></li> <li><a href="/forum">Forum</a></li> </ul>
It’s difficult to give you an answer without seeing the actual blog ??
Forum: Fixing WordPress
In reply to: Pingback Link Text ExtractWhat I do is separating the comments and the trackbacks and then I just show the title of the trackback… no the […] bla bla […], which is kinda useless.
Forum: Themes and Templates
In reply to: Multiple authors theme recommendationAs far as I know… any theme is good for a multi-author blog…
Forum: Fixing WordPress
In reply to: Pingback Link Text ExtractWhat is it that you want to do exactly?
Forum: Themes and Templates
In reply to: Line break in user descriptionHave you tried adding
breaks?Forum: Fixing WordPress
In reply to: Editing category nameYou’re supposed to be able to change the name of your categories by going to Manage -> Categories in the Admin and then clicking on the category you want to edit…
Forum: Fixing WordPress
In reply to: SPAM- ALOTDid you try activating the Askimet plugin?
Forum: Fixing WordPress
In reply to: Custom Fields – How to Display Default Image?I haven’t tried but something like this should work:
<?php if( get_post_meta($post->ID, "Thumbnail", true) ): ?> <img src="<?php echo get_post_meta($post->ID, "Thumbnail", true); ?>" alt="alt text" /> <?php else: ?> <img src="default.jpg" alt="alt text" /> <?php endif; ?>
Forum: Fixing WordPress
In reply to: Rewrite one single keyword in 100 postsI guess you could run a MySQL query from phpMyAdmin…
First, make a backup of your database, in case something goes wrong, then run a query like:
UPDATE wp_posts SET post_content = replace(post_content, 'https://www.world.com','https://www.universe.com');
Forum: Fixing WordPress
In reply to: Setting margin for overflow text in list of categories.That’s probably CSS related… if you could post a link to your site, so we can have a look?
Forum: Fixing WordPress
In reply to: Make BBPress a Page in WordPress???It’s pretty easy actually… if both your WordPress and BBPress themes look alike…. just add a link on your wordpress navigation that points to the BBPress index. At least, that’s what I did…
Forum: Fixing WordPress
In reply to: Remove “leave a comment”Maybe it’s home.php …
Forum: Fixing WordPress
In reply to: Uninstall needed.Do you know how to use an FTP program and how to connect to your phpMyAdmin install?