Begin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: removing the posted byDo you use a custom theme ? (I mean can you edit the code?)
Forum: Fixing WordPress
In reply to: advanced batch custom field editingYes! that made it work for all of them!
Thank you very very much keesiemeijer !!!
You really saved me a lot of time today! Thank’s!Forum: Fixing WordPress
In reply to: advanced batch custom field editingThank’s ChristiNi !
I did used keesiemeijer method because it seemed easier…
Thank’s keesiemeijer, your my hero today ??But for some reason it only change the 4-5 first posts and not all the rest… ?!
Forum: Fixing WordPress
In reply to: Weirdest Admin problem (caused by Theme)I’m glad you got it resolved ! ??
Forum: Fixing WordPress
In reply to: Weirdest Admin problem (caused by Theme)Wow, just those “?>+” made all this mess !!!
Thank you very very very much!!!
You just made my day!
Thank you so much keesiemeijer!
Forum: Fixing WordPress
In reply to: Weirdest Admin problem (caused by Theme)Sorry, didn’t know that rule..
Forum: Fixing WordPress
In reply to: Weirdest Admin problem (caused by Theme)thank’s keesiemeijer!
It does solve the problem when I delete all my functions content,
but I don’t have any javascript in there…can you take a look at this, and check if you see something
that you think that can cause that problem?[Code moderated as per the Forum Rules. Please use the pastebin]
Thank you very much!!!
Forum: Plugins
In reply to: get only text between a <b> sign with “preg_match” ?!I got it right, thank’s!!! it’s just great!!!
Forum: Plugins
In reply to: get only text between a <b> sign with “preg_match” ?!Great! thank’s.
But i can’t get it completly working as I want:
I wrote:
$preprice = "text text text <price>34</price> more text text text"; preg_match_all("#<price\b[^>]*>(.*?)</price>#", $preprice, $matches); $price = "$matches"; add_post_meta($post_ID, 'price', $price);
and it add a post meta with a value “array” and not “34”
as I want…?
Forum: Plugins
In reply to: Post to blog via email – custom field support?Me to !!! it would be so great:-)!
Forum: Plugins
In reply to: Post by email as draftThere is a simple way that I used because I dont like that postie,
that is just to change one line (one wordactuly) in your wp-mail.php file
(weich is in your root directory where you installed wordpress):go to the line:
$post_status = ( $user->has_cap('publish_posts') ) ? 'publish' : 'pending';
and change it to:
$post_status = ( $user->has_cap('publish_posts') ) ? 'pending' : 'pending';
Forum: Fixing WordPress
In reply to: Problem with updating posts custom fields (and similar stuff…)Thank’s I tried everything in there,
The funny thing is, that when I try it from another computer
it works great so I thought it really is the firefox 3,
but then my other wp blogs, with the same wp version work great
on that same firefox 3…what can it be?
Forum: Fixing WordPress
In reply to: How to center my” Top” image in my page?i forgot you need to add also a width parameter for it to work:
.span-24{width:940px; margin:0px auto 0px auto;}and maybe also delete those <center> tags, you don’t need them!
Forum: Fixing WordPress
In reply to: How to center my” Top” image in my page?just write:
.span-24{margin:0px auto 0px auto;}
if i’m getting it right…
Forum: Themes and Templates
In reply to: arrange rss feed’sThank’s man!