Search Results for 'buddypress'
-
Search Results
-
Topic: Username problems
So I did some tests…
In a standard WordPress install users can enter spaces in their username.
No problem.
E.g. ‘Firstname Surname’ renders as just that, with a space between the words.But when I activate BuddyPress (no other plugins) with the Twenty Fifteen theme, suddenly the spaces are removed from the username. Without as much as a single notification or error message.
E.g. ‘Firstname Surname’ becomes ‘FirstnameSurname’.This is a huge problem for users! As they don’t get a message their input has been changed. And the username is not mentioned in the activation e-mail.
In my opinion there are two solutions:
1. notify the user of the change during registration;
2. allow the same username entry specification as WordPress does.So far I haven’t found any of these solutions. 🙁
Need help.
Hi all been a while
I have been real busy over the past month or so and just havent had the time to visit these forums much lately but i am just in the midst of setting up a new dedicated server once again that i have purchased, now the question is about nginx specifically, i have allways used apache in the past but ive heard some really great things about using nginx for wordpress installs and believe it is alot faster than a standard apache setup especially when paired with varnish.
Now i believe there is quite a few additional htaccess rules etc when setting up nginx with wordpress for it to run right and before i dive into it and try it out i was wondering if anyone on these forums have any advice on how you have it set up to run with your buddypress installs.
any info is greately appreciated and would you advise this as the best way to go for scalability? as i believe nginx makes it easy to add other servers in to the mix further down the line too.
To Whom It May Concern,
I’m still having the same problems as before for my registration form to my myloopnetwork.com website. This is my first WordPress site that I just created since November of last year and I really am trying my best to resolve this issue, but I’m always getting stuck from all angles because I’ve already checked from my back end to make sure that there’s no errors on my end. I’ve talked to other representatives, and they weren’t able to help with my problem either. In addition, I’ve even looked at tutorials online that were still not resolving the issue.
As I’ve said before from previous forums that I created through here, every time I fill out the form it keeps taking me right back to that same registration page and doesn’t create that new user profile page.
Though I’ve been using the Magnus WordPress Theme, the 1.6 version, I’ve been getting the same problems even when I switched and activated to the most recent version of the Twenty Fifteen WordPress Theme. I even took suggestions to switch off all the plugins, leaving only the BuddyPress plugin activated, and it still was doing the same thing with not processing the registration form. Can someone please help me? Because I don’t know what else to do or who else to speak with to resolve this.
I have the WordPress 4.2.2 and the BuddyPress 2.3.0 version. I’m working from my HP Envy x360 TouchSmart laptop with Windows 8. I even made sure to clear all page caches and all browsing data (from the past month) anytime I do any changes, any browsing, any installations, activations/deactivations, and/or any specific work to my website from both my Dashboard and through my internet browser (where I’m using Google Chrome). Please someone help me with all of this, I would greatly appreciate it.
The New Feature in Buddypress Starred button redirects users to their post page button. I’ve added a button to users buddypress activity page which is titled Post that takes users to a page with a list of their Posts made to WordPress. With the new update when you click on the Starred button the user is redirected to the the list of posts. I created the Post button using this custom function I found Online.
/* ——————————Start BP Post in profile code for function——————– */
function importSomething(){
return include_once ‘bp-custom.php’;
}
add_action( ‘bp_setup_nav’, ‘buddyboss_child_bp_nav_adder’ );
add_action( ‘bp_template_content’, ‘profile_buddyboss_child_loop’ );
bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/plugins’ ) );function buddyboss_child_bp_nav_adder() {
global $bp;
$post_count = count_user_posts_by_type( $bp->displayed_user->id );
bp_core_new_nav_item(
array(
‘name’ => sprintf( __( ‘Posts <span>%d</span>’, ‘my-poems’ ), $post_count ),
‘slug’ => ‘Articles’,
‘position’ => 250,
‘show_for_displayed_user’ => true,
‘screen_function’ => ‘buddyboss_child_list’,
‘item_css_id’ => ‘articles’,
‘default_subnav_slug’ => ‘public’
));
}
function buddyboss_child_list() {
add_action( ‘bp_template_content’, ‘profile_buddyboss_child_loop’ );
bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/plugins’ ) );
}
/*——- This is end of the code for above function ———*/
function profile_buddyboss_child_loop() {
$myposts = get_posts( array(
‘posts_per_page’ => -1,
‘author’ => bp_displayed_user_id(),
‘post_type’ => ‘post’
));
if( ! empty($myposts) ) {
foreach($myposts as $post) {
setup_postdata( $post );
if (has_post_thumbnail( $post->ID ) ):
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), ‘sidebar-smallthumbnew’ );
else :
$image[0] = “…/wp-content/themes/Starkers-Child-2/images/vidimage.jpg”;
endif;
echo ‘<li class=”sidebar mostpop post-‘ . $post->ID . ‘”><div id=”postimage”>ID) . ‘”></div><div id=”postinfo”>ID) . ‘”>’ . get_the_title($post->ID) . ‘</div>‘;
}
echo ‘‘;
wp_reset_postdata();
} else { ?>
<div class=”info” id=”message”>
<p><?php bp_displayed_user_fullname(); ?> has No posts.</p>
</div>
<?php }
}
/* This is end of the code for above function */
remove_filter(‘bp_setup_nav’,”);
function count_user_posts_by_type( $userid, $post_type = ‘post’ ) {
global $wpdb;
$where = get_posts_by_author_sql( $post_type, true, $userid, true);
$count = $wpdb->get_var( “SELECT COUNT(*) FROM $wpdb->posts $where” );
return apply_filters( ‘get_usernumposts’, $count, $userid );
}
/* ——————————This is end of the code for post in profile above function——————– */I dont want to get rid of the latest starred button feature, so How can I go about correcting this redirect error.
Also the new mobile take picture update doesn’t work on the mobile version of my site. I’m using WP-Smart mobile plugin to generate a mobile theme. I also have a copy of Buddypress in both my Child Theme and my active WP smart mobile theme.
How can I go about fixing these issues if possible.
Also, great exceptional work on these new updates.
Thank you
Hi everyone,
I know this topic has been posted to death, but I have gone through all of those old posts and tried all of their fixes and none of them are working.
Basically, BuddyPress works fine except for allowing new users to register. When the registration form is submitted, the page refreshes with all data but the password autofilled in the appropriate fields. No user is created, but no error is given. I have double checked that registration is open on the site and that BuddyPress registration and activation pages are set up correctly. I have also tried clearing my browser cache etc.
Interestingly, the BuddyPress Default Data plugin was able to create users without a hitch.
I’m working on a custom theme on a local XAMPP server with BuddyPress, Advanced Custom Fields Pro, Custom Post Type UI and BuddPress Default Data being the only plugins installed. I’ve tried deactivating all plugins except BuddyPress, and the problem persists. When I deactivate BuddyPress, the problem goes away. I’ve also tried using TwentyTwelve instead of my custom theme and the problem persists when BuddyPress is active.
I have updated to the latest version of BuddyPress (released earlier today, 2.3.0) and that has not fixed it, but the issue was also present before I updated BP. I am running WordPress 4.2.2.
If anyone else has had this problem lately or sees anything obvious that I am missing, I’d appreciate your help!
Topic: List groups i am admin of
I would like to find out if there is a way in buddypress to list the groups that i am admin of on the front end. If i click my groups it shows all the groups that i belong to, which is great but i belong to hundreds. I cant find a way to show a list of groups that i am admin of.
Hello everyone,
I’m still struggling with getting my registration form to work and I’m pretty much stuck right now as far as what to do next. I’ve looked at tons of tutorials, looked online for solutions, and even spoken to various tech support representatives and still came up short to not resolving this, so I’m hoping that someone can help me through here.
I’m trying to get that page to work for my http://www.myloopnetwork.com website. Everytime I fill out the form, it keeps taking me right back to that same registration page and doesn’t create that new user profile page for me. It would still just show up on the screen like this:
Anything that anyone can do to resolve this issue would be greatly appreciated. I have the WordPress 4.2.2 and the BuddyPress 2.2.3.1 version, and I’m using the Magnus WordPress Theme, the 1.6 version.
Also, is there a good plugin that anyone can recommend for me to use that will be compatible to the recent BuddyPress version as well as allowing users to upload a profile picture?