delFUEGO
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to retrieve last word from comment?That won’t do the trick, if I understood it right, that will retrieve whatever is after the last instance of a given constant. For example, if the constant is a dot, in the following string…
codex.wordpress.org
…it will return “org”.
However, you did point me in the right direction. I searched there for “last word” and came up with this PHP function which I think will do the trick:
Maybe I could use that to retrieve all words as an array and somehow discard all but the last item of that array?
Any thoughts here? Im not that good at PHP, will appreciate the help.
[EDIT]
Think I got it…
$last = end($array);
Still havent tried all this yet, but in theory it loooks flawless.
Do I smell a 3-people-in-the-world-could-find-the-useful plugin here? And I’m not even counting me in 😀
Forum: Fixing WordPress
In reply to: Unable to retrieve the_content from custom post typeThank you very much, that should do it, you rock!
Forum: Fixing WordPress
In reply to: Unable to retrieve the_content from custom post typeNever mind question 1, I googled a little bit more and found that a lot of WP methods use globals. I had to add this to narrow it to what I needed…
setup_postdata($post);Still, question 2 remains, any clues?
Forum: Plugins
In reply to: xLanguage – generated urlI have the exact same problem, couldn’t find a way to fix it yet.
Forum: Fixing WordPress
In reply to: Image uploads showing text and not thumbnailsSaturn2888, before closing the topic, could you share with the communitie how you solved the problem? It might help other people too.
Forum: Installing WordPress
In reply to: blank screen after /wp-admin/install.php = no password?The exact same thing happened to me. I managed to change it via phpMyAdmin.
Just in case there’s any developer willing to check this bug, this happened to me while trying to install a fresh wordpress 2.3 in my own server, which run’s on WampServer 1.7.3 (PHP 5.2.4 and MySQL 5.0.45)
Forum: Fixing WordPress
In reply to: Thumbnail uploadIf you are wondering what odavilar is saying, wonder no more…
Hey, I have a problem. When I upload an image through the “upload” option when writing a post, once uploaded there’s no “thumbnail” option. I wanted to know why is that y how can I fix it. Thanks.
…I translated it because I’m having the exact same problem with WordPress 2.2.3 and I have no idea how to post thumbnails.
Any clues, anyone?
Forum: Fixing WordPress
In reply to: Unable to create directoryWhat about all others who can’t move to a better server? Is there a way of uploading images that don’t mean leaving a huge door open to “hackers”?
Forum: Themes and Templates
In reply to: Displaying posts in several rows…You mean something like this? VidaVacia.com.ar
I havent seen the .css yet, but I guess he set the width of the posts to something like %40 and then floated them to the left, or something like that.
Anyway, the answer is the .css of that blog.
Forum: Themes and Templates
In reply to: How to show child pages from a parent page automatically?I think that if you want to show always the same list, no matter where are you inside the page, then you should use the “wp_list_pages” template tag as usual, without the “g_page_id” trick.
Forum: Plugins
In reply to: how to change page/2/ in seite/2/Look at this topic:
http://wordpress.org/support/topic/41941?replies=5#post-236152
Forum: Fixing WordPress
In reply to: Is there a way to delete older posts, other than one-by-one?You could probably run a mysql query to do that, but I have no idea exactly how would that query be.
Im sorry I cant be of more help.Forum: Installing WordPress
In reply to: Installation troublesAre you using a different language than default?
Which version of WordPress are you installing?Forum: Themes and Templates
In reply to: How to show child pages from a parent page automatically?Thanks, Im looking forward that query 😀
Forum: Themes and Templates
In reply to: How to show child pages from a parent page automatically?c_chana, yes, the box is made by CSS. What you suggested sounds like what im loooking for, but I have no clue on how to code it either.
Does anybody know how to code it? Any help its widelly apreciated.