-
Nithin K Varrier replied to the topic bp_verify_nonce_request() not working in the forum Installing BuddyPress 11 years ago
Yes I know that. But what is the solution. I don’t know the problem with https or not. But its working perfectly once I logged in.
-
Henry Wright replied to the topic bp_verify_nonce_request() not working in the forum Installing BuddyPress 11 years ago
You shouldn’t change core files. Each time you upgrade BuddyPress your changes will be lost.
-
Henry Wright replied to the topic Retrieve a variable from a GET in the forum How-to & Troubleshooting 11 years ago
I put it into my code file and also into functions.php but always empty.
I think this indicates there is something weird going on. My advice is to remove all custom code, disable all plugins and revert back to TwentyFifteen theme. Then try again. If it works then, we can be sure you have something on your install that’s conflicting. The task is…[Read more]
-
Nithin K Varrier replied to the topic bp_verify_nonce_request() not working in the forum Installing BuddyPress 11 years ago
actually I changed that line “} elseif ( isset( $_POST[‘signup_submit’] ) && bp_verify_nonce_request( ‘bp_new_signup’ ) ) {” to this “} elseif ( isset( $_POST[‘signup_submit’] ) || bp_verify_nonce_request( ‘bp_new_signup’ ) ) {“. Now its working and my site on https. I don’t know that is the problem.
Thanks Henry
-
Henry Wright replied to the topic bp_verify_nonce_request() not working in the forum Installing BuddyPress 11 years ago
When you say it isn’t working, can you provide more details?
-
Henry Wright replied to the topic Retrieve a variable from a GET in the forum How-to & Troubleshooting 11 years ago
using
?var1=testin the URL, what does the following display?if ( isset( $_GET['var1'] ) ) {
echo $_GET['var1'];
} -
Henry Wright replied to the topic Retrieve a variable from a GET in the forum How-to & Troubleshooting 11 years ago
I did but that isn’t all of the code. For example, how are you using the class method?
-
Nithin K Varrier started the topic bp_verify_nonce_request() not working in the forum Installing BuddyPress 11 years ago
bp_verify_nonce_request() function not working when a user registering first time. But its working at least one time he/she logged in. file bp_members_screens.php. line no: 100.
-
Brandon Allen replied to the topic User count does not show up correctly… in the forum How-to & Troubleshooting 11 years ago
From the screenshots you posted on Trac, it looks like you’re running the Ultimate Member plugin as well as BuddyPress. Is this true? If true, what version of Ultimate Member are you running?
-
Brandon Allen replied to the topic User count does not show up correctly… in the forum How-to & Troubleshooting 11 years ago
From the screenshots you posted on Trac, it looks like you’re running the Ultimate Member plugin as well as BuddyPress. Is this true?
-
maxste phens's profile was updated 11 years ago
-
Diana K. Cury wrote a new post on the site BuddyPress Brasil 11 years ago
BuddyPress 2.3.1Olá de novo! Lembram que quarta-feira quando nós lançamos 2.3.0 Livio? Bem… foi tão incrível e excepcionalmente bom que hoje estamos lançando 2.3.1 […]
-
Henry Wright replied to the topic List groups i am admin of in the forum How-to & Troubleshooting 11 years ago
No worries; welcome to the forum! 🙂
-
Henry Wright replied to the topic List groups i am admin of in the forum How-to & Troubleshooting 11 years ago
@alvin341965 That’s quite different so you should open a different topic for that 🙂
-
Henry Wright replied to the topic List groups i am admin of in the forum How-to & Troubleshooting 11 years ago
Just put @shanebp‘s code in your theme’s functions.php file.
-
Henry Wright replied to the topic Register page "name required broken" in the forum How-to & Troubleshooting 11 years ago
But now I can delete this form NAME from the registration area?
I have no idea because I don’t know the theme you’re using. The best thing to do is contact the theme author because they will be able to see the theme’s markup/code and advise you how to do it.
-
John James Jacoby updated the Version 2.3.1 page, on the BuddyPress Codex 11 years ago
Version 2.3.1 is a minor BuddyPress maintenance release.
For Version 2.3.1, the database version (_bp_db_version in wp_options) was 9848, and the Trac revision was 9918. Read the full ticket log here […] -
John James Jacoby wrote a new post on the site BuddyPress.org 11 years ago
Hello again! Remember Wednesday when we released 2.3.0 Livio? Well… it was so incredibly outstandingly good, that today we are releasing 2.3.1 to celebrate it.
BuddyPress 2.3.1 fixes two new accidental […]
-
Henry Wright replied to the topic Register page "name required broken" in the forum How-to & Troubleshooting 11 years ago
@patrykos360 you should contact the theme author as the problem is likely to be theme related. If the theme is purposefully BuddyPress-compatible, then perhaps the author will release a fix?
-
Henry Wright replied to the topic Username problems in the forum How-to & Troubleshooting 11 years ago
If you wanted to, you could disallow spaces in usernames by validating the field during registration. This is how you’d do it:
function zenimot_validate_username() {$bp = buddypress();
if ( strpos( $_POST['signup_username'], ' ' ) !== false ) {
$bp->signup->errors['signup_username'] = __( 'Spaces are not allowed',…[Read more] - Load More