Search Results for 'wordpress'
-
Search Results
-
Hello, i have few questions
1)-I want synchronize PMP membership package with User members type of buddypress
2)-I want synchronize PMP register with User register of buddypress
3)-Your plugin have a login page but it go in wp-login page and let user access to wordpress back-up, i need a front end login page
4)-I bought wp job manager with buddy press job manager it create 2 members types (employer and candidate)
In buddypress Profile, it create job manager and resume manager tab, for Candidate how i can remove the job manager tab and for employer how i can remove the resume manager tab?5) i can’t manage member type because buddypress job manager create member type without the buddypress member type plugin, when i install the buddypress member type plugin, it don’t fit with the member type of buddypress job manager.
6) How can i shaw in one page only the list of employer member and in one other page the liste of candidate member in buddypress member ?
http://workistcompagnie.agthiantservices.com
Thanks
Hello, I have been scouring this forum and seen many topics on this but no real conclusions yet.
What I am doing is using WP Social Login to allow users to login with facebook to my website. I am using buddy press also. In the WordPress backend under users I can see their facebook avatars (profile picture) but they are not seen on the front end. Just the ‘mystery person’ image
Settings > Discussion > Avatars : I have ‘show avatars’ checked
Settings > Buddypress > Options > Profile Settings : I have all 3 options checked
Settings > WP Social Login > Widget : I have ‘Display users avatars from social networks when available’ selectedBut I still am getting no avatars showing on the front end. Only the backend. What could be the problem?
Hi guys,
Hi need to set the registration page of BuddyPress to default WordPress registration page.
BuddyPress registration page ==> WordPress registration page (wp-login.php? Action = register)
I tried several plugins (obsolete), and various snippets (non-functioning).
There is some redirect code, snippets, or plug in make this?
Someone can tell me how to make the current version of BuddyPress?
Thanks!Topic: [Resolved] BuddyPress Emails
The pre-configured emails in the Emails section of the dashboard were removed from my WordPress page. Is there any way to upload them back as opposed to manually creating each one?
Hi,
I’m new to BuddyPress and I’m having problems setting up the BuddyPress registration page. I’m hoping someone can help. When I installed BuddyPress it automatically created pages for me to link to the registration and activation components. However, when I go to the registration page http://slipbuddy.codeprimer.net/Register all I see is a page with the title “Register” and no other content. The default wordpress registration page (/register with a lower-case ‘r’) appears to work as expected, but there is no option in the admin menu to link BuddyPress to that page.
I’ve searched the forums and have come across users having similar problems, but the fix seems to have been to disable plugins / use default themes etc. I’ve just created a new site to try to isolate the issue using a vanilla WordPress 4.6.1 with only the BuddyPress 2.7.2 plugin installed. (The default Hello Dolly and Akismet plugins are showing up in the plugin list but not activated).
The steps I have taken are as follows
- Install WordPress via FTP (no site scripts)
- Ensure Pretty Permalinks are enabled (Day and Name)
- Enable Registration in Settings->General->Anyone Can Register
- Install BuddyPress plugin from plugins page
- Return to BuddyPress admin page and checked that all components are mapped to default WP pages created by BuddyPress
Expected Outcome: http://slipbuddy.codeprimer.net/Register displays registration form
Actual Outcome: http://slipbuddy.codeprimer.net/Register displays a blank page with the heading RegisterThank you for your time!
Jack
Hello,
I’m running a multisite.
My WordPress version is 4.6.1 and BuddyPress is version is 2.7.2.I would like to change the custom profile menu item names. I have searched around google, wordpress, stack-exchange for days now, and I’m only finding solutions on how to “edit actual BuddyPress menu items” like ‘activity,’ ‘profile,’ and all..
Because my installation is multisite, I have a menu item “sites” which I would like to have changed to something like “Schools”
I’ve tried the below code but, it’s working only on default buddypress menu item.
//***************************************************************************************// function bpcodex_rename_profile_tabs() { buddypress()->members->nav->edit_nav( array( 'name' => __( 'Support', 'textdomain' ) ), 'forums' ); buddypress()->members->nav->edit_nav( array( 'name' => __( 'Study Groups', 'textdomain' ) ), 'groups' ); buddypress()->members->nav->edit_nav( array( 'name' => __( 'Schools', 'textdomain' ) ), 'site' ); } add_action( 'bp_actions', 'bpcodex_rename_profile_tabs' );Please help..
In the function bp_get_member_last_active() the activity is got from $members_template->member->last_activity, but it seems that this is always empty, even if i know that this member was active in the last few hours. I’m not sure, but i didn’t found the code, where last_activity is set, so maybe it has to be updated?
In some other locations (for example in the member-header) the last activity is set by the function bp_get_last_activity() and there it worksBuddyPress-Version: 2.7.2
WordPress-Version: 4.6.1Topic: No Buddypress database
I have installed buddy press on a couple of my wordpress sites. However, on one, it did not create a database for it. What did I do wrong?
Topic: Filter gifts by user
I’m using an older gifts plugin with buddypress to allow users to send gifts to each other. I’m currently trying to make it so if you’re logged in, you can see all the gifts you’ve been gifted, while if I go to someone’s page, I will only see the gifts I gifted them.
I’ve pasted my code below. Logically to me this makes sense; each
<li>is a different gift from a user. I am trying to make it so if the returned result has the sameidas the current user, display that<li>. I am beginning to think I am on the wrong file (before anyone says not to edit plugin files, this plugin has deprecated 2 years already).Any idea?
<?php global $wpdb; global $bp; $cur_user = $bp->loggedin_user->id; $profile_user = $bp->displayed_user->id; $result = $wpdb->get_results("SELECT * FROM wp_bp_activity WHERE item_id=" . $profile_user . " AND component='gifts'"); ?> <ul id="activity-stream" class="activity-list item-list" style="list-style-type: none;"> <?php //loop through ID's foreach ($result as $results) { ?> <?php while ( bp_activities() ) : bp_the_activity(); ?> <?php if ( $results->user_id == $cur_user ) { ?> <li class="<?php bp_activity_css_class(); ?> message" id="activity-<?php bp_activity_id(); ?>">...</li> <?php } //end if endwhile; } //end foreach ?> </ul>Topic: bbp-register layout
Running WordPress 4.6.1
Running BuddyPress 2.7.2I have inherited the site byoguild.com
I am having trouble editing the pages in it. I am not sure of how to edit the [bbp-register] element.
That is the register page
That is how it looks.I have found in the database the names of the races in the drop down box but have yet to find somewhere where it has the actual pagelayout
Any help would be greatly appreciated