iacchi
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Rookie] Post title is messed up for old imported postsNever mind, I figured out the problem: it’s related to the featured image set in the old posts, that hasn’t been imported correctly or set correctly. Regardless, Rookie handles them poorly, so I’ll try to remove them all.
Forum: Hacks
In reply to: Intercept user password on user registrationNope, I tried to define both global variables $userdata and $wpdb and look inside them, but when my function is called the password has already been encrypted.
I believe the only way to have a clear password is to add the password fields in the registration form and force the user to pick one and then read the $_POST variable.
Is there an easy way to add these fields in the registration page? I’ve looked at some plugins but they do lots of other things, too, and I can’t narrow down the code to just add the password and password strength indicator fields. Can you point me to something or do I have to continue looking?Forum: Hacks
In reply to: Intercept user password on user registrationThe bit on profile update is done already. I’ll have a look at using “global $userdata” and I’ll let you know, thanks for the tips.
Forum: Themes and Templates
In reply to: Get gravatar preferences in functions.phpyou can close this post: I missed a part in the Using gravatar codex page and solved reading at the forum discussion linked at the end of it.
Forum: Themes and Templates
In reply to: Count categories and tags of a postworked like a charm, thanks!
Forum: Themes and Templates
In reply to: Fully customise comment form when using comment_form()No, that doesn’t make it. You can use that to change the text inside <h3>, not the tag itself (if you look at the examples, the funcion is called inside the <h3> tag), and if I well understood you can either use that function if you want to write the code for the comment form yourself, or you can use comment_form() to generate the comment form; you can’t use one inside the other, and it’s no use anyway, since it can’t change the tag.
Either what I said is true, or I didn’t understand anything of what’s written in the codex, and I need an example.
Forum: Themes and Templates
In reply to: Fully customise comment form when using comment_form()I read that already and not only the page on the codex, I’ve googled around a bit, too.
If you look at that page, there’s no reference to a parameter to change the very beginning of the form, except the text inside the <h3> tag which should be set using “title_reply”. Point is, I want to change <h3> into <h2>, not just the text inside it.