carlla
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problems with new field to user profileSolved!
I added global $user_ID
and changed to get_the_author_meta( ‘newfield’, $user_ID );Forum: Plugins
In reply to: [Plugin: Customize Your Community] Captcha doesn’t workingThanks Rumores! It’s a very good solution =)
Forum: Plugins
In reply to: What plugin is it?I really had not thought about “modal” =/ OMG
thank you very much =)
I will try itForum: Plugins
In reply to: [Plugin: Customize Your Community] Captcha doesn’t workingIt’s working know!
After looking for the issues’ reason on the phpinfo, php.ini and .htaccess and not found out nothing, I had the idea to look for the session_start(); on CYC, and didn’t found.
So, to fix the ploblem, I added the session_start(); at the beginning of wp-login.php
Forum: Plugins
In reply to: What plugin is it?Anyone?
It is a plugin, isn’t it?
Forum: Everything else WordPress
In reply to: jquery append linkjQuery’s click event seems considers only the first click on page, no matter how many links there are, only first click can run a function. It seems not happen to other html elements, only “a” element.
So use jQuery’s live event instead click event when you are working with “a” elements and need to get the click event.
I changed
jQuery('.myclass').click(function() { ... });to
jQuery('.myclass').live("click", function() { ... }); });Now it works, and I could make my dynamic menu =)
Forum: Fixing WordPress
In reply to: Form not processinguse $_POST[‘course_form’] instead $POST[”course_form’]
=)Forum: Fixing WordPress
In reply to: Processing plugin formYou can try use jQuery to validade user data (before to submit the form) and/or validade in php before insert into DB (after submit).
What kind of user data do you want to validate? checked box, words lenght, phone number…?
Forum: Plugins
In reply to: “Subscribe to Comments” and similar plugins don’t workThese plugins use ajax to subscribe?
Forum: Fixing WordPress
In reply to: publishing post taking too long, please help asapTry to disable all plugins and reactive one-by-one. For each plugin you reactive try to add/edit posts and pay atention to loading time.
If it avoid the delay, then the blame of delay could be one plugin. When you get the delay again you will get the guilty plugin.
Let us know if it helps.
Forum: Fixing WordPress
In reply to: can’t insert special characterhm.. it helps a lot =] thank you…
I tried to insert with a mysql_query php function and didn’t get this problem. I was wondering if wpdb->query gives a special treatment in my query before run it.
I’d like do not record the data as htmlentities, because a flash application will get it after. Would be a little hard to treat it in action script.
I will try your suggestion. Thank you very much =]
Forum: Fixing WordPress
In reply to: publishing post taking too long, please help asapHow many plugins are you using? Some plugins can cause a delay.
Forum: Plugins
In reply to: Is there a plugin that can send a post to email?Thank you for suggest. It seems good! But it is a service, isn’t it? I would like to use a plugin.
ok I found out the subscribe2 plugin. I am trying to edit it to use only the functionality I want.
Forum: Plugins
In reply to: “Subscribe to Comments” and similar plugins don’t workDid you try to send a simple e-mail from your blog? From a contact form, for example. It worked? Maybe you have to configure your email settings.
Forum: Plugins
In reply to: “Subscribe to Comments” and similar plugins don’t workCould be a conflict? Are you using some other plugin to comment functions? Any plugin to edit comment with ajax, pagination… ? If so, try to desactive them and run the new plugin again.