-
Tom(dB) started the forum topic Custom data at signup/ registration in the group Creating & Extending: 13 years, 9 months ago
I’m trying to add a simple radio button to the signup form, and I’ve got as far as adding that to the signup form. On
bp_core_activate_account
the data goes into the meta of thewp_signups
table. Then on activation that data is transferred into thewp_usermeta
table – except the value ofnotification_newsletter
. In the […] -
Tom(dB) posted on the forum topic How to modify this code? for php writers in the group Creating & Extending: 13 years, 10 months ago
What’s the error? Most likely the apostrophe is causing the error, try escaping it with a slash
bp_member_profile_data( 'field=Travelling’ s datas' )
the forward slash isn’t showing up in the code, but place it just before the apostrophe.
-
Tom(dB) posted on the forum topic How to add custom $usermeta to registration in the group Creating & Extending: 13 years, 10 months ago
Been messing around with adding custom usermeta data at signup and have come up with the following:
function bp_custom_user_signup() { ?> <?php } add_action('bp_before_registration_submit_buttons', 'bp_custom_user_signup'); // Add field_name from sign-up to usermeta on registration function bp_user_activate_field( $signup ) { update_usermeta(…
[Read more] -
Tom(dB) joined the group Spam Eater 14 years ago
-
deadlyhifi replied to the topic [Resolved] Admin Bar Login Redirects To Main Site & Not Current Blog in the forum How-to & Troubleshooting 14 years, 3 months ago
I’ve just experienced this and have come up with a fix:
function custom_bp_adminbar_login_menu() {
global $bp;if ( is_user_logged_in() )
return false;$redirecturl = $bp->root_domain . '/wp-login.php?redirect_to=' . urlencode( $bp->root_domain ) . esc_url( $_SERVER );
echo '
' . __( 'Log In', 'buddypress' ) . '';
// Show "Sign Up" link if…[Read more]
-
Tom(dB) posted on the forum topic Admin Bar Login Redirects To Main Site & Not Current Blog in the group How-To and Troubleshooting: 14 years, 3 months ago
I’ve just experienced this and have come up with a fix:
function custom_bp_adminbar_login_menu() { global $bp; if ( is_user_logged_in() ) return false; $redirecturl = $bp->root_domain . '/wp-login.php?redirect_to=' . urlencode( $bp->root_domain ) . esc_url( $_SERVER ); echo ' ' . __( 'Log In', 'buddypress' ) . ' '; // Show "Sign Up" link if user…
[Read more] -
Tom(dB) posted on the forum topic bp_page_title() doesn’t return correct title in the group How-To and Troubleshooting: 14 years, 4 months ago
@Alexander, I spoke to @DJPaul at WordCamp UK who said he’d look into it, and also that I should file a bug report. Which I hadn’t got round to, so thanks for filing it.
-
Tom(dB) joined the group BuddyPress Skeleton Component 14 years, 4 months ago
-
Tom(dB) posted on the forum topic bp_page_title() doesn’t return correct title in the group How-To and Troubleshooting: 14 years, 4 months ago
Anyone, Bueller?
-
Tom(dB) started the forum topic bp_page_title() doesn’t return correct title in the group How-To and Troubleshooting: 14 years, 4 months ago
I’ve noticed that on a multisite installation on every blog, except the primary blog, the title of the page is not set properly, it just uses “Sitename | Home” even when not on the front page. I’ve been testing with bp_is_blog_page(), is_single(), is_category(), etc. and they all know where they are when used within the […]
-
Tom(dB) joined the group How-To and Troubleshooting 14 years, 4 months ago
-
Tom(dB) posted on the forum topic Child of Child Theme in the group Creating & Extending: 14 years, 4 months ago
OK thanks. I can get around it by having one theme and altering things based on $blog_id;
-
Tom(dB) started the forum topic Child of Child Theme in the group Creating & Extending: 14 years, 4 months ago
I’ve created a child theme based on ‘bp-default’ for my main site/blog. I have another blog that needs to be a child of my child theme – the layout being slightly different, and most importantly ‘set_post_thumbnail_size( 170, 235, true ); ‘ in the functions.php – along with any other differences I might think up in […]
-
Tom(dB) joined the group Creating & Extending 14 years, 4 months ago
-
Tom(dB) posted on the forum topic Here come the spammers!!! in the group Requests & Feedback: 14 years, 4 months ago
@foxly, even though your solutions require code modification you do say “i’ll develop my own solution” – will these be plugins you release, or perhaps become part of the bp-moderation plugin that is being developed by @francescolaffi? I really appreciated your detailed posts on the tools spammers employ. It has given me a much better understanding of […]
-
Tom(dB) joined the group Requests & Feedback 14 years, 4 months ago
-
Tom(dB) joined the group BP Group Management 14 years, 4 months ago
-
Tom(dB) joined the group BuddyPress Group Email Subscription 14 years, 4 months ago
-
Tom(dB) joined the group BuddyBar in bbPress 14 years, 5 months ago
-
Tom(dB) posted on the forum topic BP 1.2.4 and WP 3.0 – Blank wp-admin with multisite enabled. in the group Installing BuddyPress: 14 years, 5 months ago
Upgraded the memory_limit to 96M, then down to 64M. Both work.
Perhaps the https://buddypress.org/about/requirements/ page needs this mentioning?
- Load More
@tomdebruin
Not recently active