Search Results for 'wordpress'
-
AuthorSearch Results
-
October 4, 2012 at 2:45 pm #142972
Stephanie Leary
ParticipantI added it in a comment on https://buddypress.trac.wordpress.org/ticket/4469, but I can do a separate one for the activity button if you like.
October 4, 2012 at 2:34 pm #142971In reply to: user activity share plugin for wordpress buddypress?
Kiran@Caret
ParticipantHi @ashokgolusu, please let me if got any plugin for sharing posts inside buddypress.
October 4, 2012 at 11:17 am #142966In reply to: Getting array of all members
Anonymous User 96400
InactiveWhat do you need the profile fields for? Seems like WP_User_Query would do the job perfectly.
https://codex.wordpress.org/Class_Reference/WP_User_Query.If role is stored as an xprofile field, you might want to look at BP_User_Query. Haven’t used that class yet, but it might do what you want.
October 4, 2012 at 9:39 am #142965In reply to: Getting array of all members
Roger Coathup
ParticipantIf it’s just first and last names for your drop down – you can fetch those from the default WordPress fields / calls.
Is ‘role’ stored as an xprofile field or are you mapping across to WordPress roles? If the latter, you should also be able to achieve with the built-in WP functions.
October 4, 2012 at 8:36 am #142961r-a-y
KeymasterWhat is AMU? Some type of import script? If so, make sure that the FIrst Name and Last Name is filled in when importing the user and BuddyPress should pick it up.
To test, try adding a new user from the WP Users screen:
https://codex.wordpress.org/Users_Add_New_ScreenMake sure to fill in everything except “Website”.
October 4, 2012 at 12:14 am #142947In reply to: Theme Size Problem For Inbox Messages
@mercime
Participant@robert-tramontano in case you change your theme, we have a list of template-packed WP themes with step-by-step instructions listed https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
October 4, 2012 at 12:12 am #142946@mercime
Participant== My hosting vendor offers WordPress install through SimpleScripts service. ==
Do not use webhost instant WP scripts as they have been problematic for BuddyPress as well as WP Multisite installations -> https://codex.buddypress.org/getting-started/before-installing/#system-and-server-requirements
Backup DB and server files, then start from scratch. Drop DB, upload WP manually via FTP and intall WP.
October 4, 2012 at 12:07 am #142945In reply to: BuddyPress Site Plugin Search Broken?
@mercime
ParticipantIn the meantime, all BP-compatible plugins listed in our plugin section are hosted at WordPress.org https://wordpress.org/extend/plugins/search.php?q=buddypress
October 3, 2012 at 9:08 pm #142941modemlooper
ModeratorFrom the WP codex:
`Hook to WordPress
After your function is defined, the next step is to “hook” or register it with WordPress. To do this, call add_action() in the global execution space of your plugin file:add_action ( ‘hook_name’, ‘your_function_name’, [priority], [accepted_args] );
where:hook_name
The name of an action hook provided by WordPress, that tells what event your function should be associated with.
your_function_name
The name of the function that you want to be executed following the event specified by hook_name. This can be a standard php function, a function present in the WordPress core, or a function defined by you in the plugin file (such as ’email_friends’ defined above).
priority
An optional integer argument that can be used to specify the order in which the functions associated with a particular action are executed (default: 10). Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action.
accepted_args
An optional integer argument defining how many arguments your function can accept (default 1), useful because some hooks can pass more than one argument to your function. This parameter is new in release 1.5.1.`You would need to change the priority
October 3, 2012 at 6:09 pm #142938In reply to: Installation stops at Permalinks
ztorage
ParticipantI read here: http://bpdevel.wordpress.com/2012/06/19/buddypress-1-6-beta-1/ that BP 1.6 is supported on WP 3.4+. I had 3.3.1 installed (the one that’s in the Ubuntu 12.04 repositories). Upgrading to 3.4.2 fixed the issue.
October 3, 2012 at 6:01 pm #142937In reply to: Installation stops at Permalinks
mgkoller
ParticipantOne solution would check the mod_rewrite module in Apache is on. This deals with the permalink problems.
https://codex.wordpress.org/Using_PermalinksOctober 3, 2012 at 3:23 pm #142932GordonRe
ParticipantThanks @Trailmix5.
Yes I’ve read your post a couple of times and the tips and responses.
I am not using DAP. I get the same result logged in as a user or administrator ie– users added directly into WordPress after BP installation show up under their not very friendly username; they have no
– users added before BP installation show up with display name, have profile pages and prior existing meta data shows up on profile page.Anyone have an idea? @mercime?
[I note in the OP I said “When logged in as one of the new users:” – this is confusing and should be ignored. I thought for a moment there was a difference in behaviour between admin and new users but there is not.
Thanks for any tips.
Gordon
October 3, 2012 at 3:44 am #142919In reply to: Need help with single activity page
@mercime
Participant@wcten you’ll need to wrap the HTML structure of the page around the content of this file https://buddypress.trac.wordpress.org/browser/tags/1.6.1/bp-themes/bp-default/members/single/activity/permalink.php which would be in your server wp-content/themes/yourthemefolder/members/single/activity/permalink.php
If you used the first method for Step 3 (changing 16 template files), then copy over the revision for the top part of the files and replace ` ` Next, copy over the revision for the bottom part of the files and replace ` `
October 3, 2012 at 2:49 am #142916In reply to: Theme Size Problem For Inbox Messages
@mercime
Participant== I looked in the messages php files and did not see any width adjustments ==
In many cases, one only needs to adjust 16 template files listed here https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#tplfiles which have the major HTML containers for the content of all other BP template files. As you will see, the message templates are not included there because the messages content is contained in the members page structure. In some cases, one only needs to create two files for theme compatibility. Come BP 1.7, you won’t even need the BP template pack plugin anymore as theme compatibility is being built into the BuddyPress plugin itself.
Have you brought this to the attention of the one who fixed your BP template files? What WP theme are you using? Do you have a screenshot of the issue compared to other “tamed” BP pages?
October 3, 2012 at 2:36 am #142914carmeetsroad
ParticipantI found this plugin https://wordpress.org/extend/plugins/opengraph/ ** You guys think it will solve the problem? **
October 3, 2012 at 2:01 am #142911In reply to: 1.7 theme with multisite
Famous
Participant@mercime – because I use wordpress & buddypress, I do my best to not ever rely on anything paid. Do you happen to know of any other way, or will it be built in the future?
Thanks
October 2, 2012 at 10:43 pm #142891In reply to: Member Relationships Information in Profile
Quint
ParticipantThere is no precedent in which Brajesh does not deliver above and beyond the call of duty. Given the complexity and volume of plugins he builds and maintains along with the many one-off coding requests, a healthy dose of latitude is advisable, imho. I guess at the right price you may find someone who will build what you want and may even maintain it as WordPress/BuddyPress constantly gets updated.
October 2, 2012 at 7:43 pm #142885In reply to: Your Toolbar
benbick1614
ParticipantOK nevermind you can’t login directly from the toolbar. I am wrong. It does redirect you to your profile immediately without ever seeing the wordpress dashboard. If I can fix this I can finally get my site up and running. If you have any idea how to help please advise.
October 2, 2012 at 6:17 pm #142872In reply to: [Resolved] Whats the deal on the plugin page?
October 2, 2012 at 6:14 pm #142871In reply to: New Users Profile Problem
trailmix5
ParticipantDoes anyone have a wild idea I haven’t thought of? I’ve been back in forth between this forum and DAP support but I’m totally stumped. The only difference that I can see in the users I created in Dap synched to WP vs. the users I created in WP alone is that…
The WP only users: BP displays their full name in the forums, but the profile page links to their user name. This is the working users config!
The DAP users: BP displays their username in the forums and the profile is also their username. These users cannot access their profiles.
When I campare the two in WordPress/Users, I cannot see any difference, so there must be something happening during registration, right? Is there any way to alter the way BP registers users or does anyone have a solution for this?
Thanks for all of your help!
October 2, 2012 at 4:45 pm #142866In reply to: BuddyPress private Message WebPiurify feature
@mercime
Participant@voarsh either you’d have to learn to code this yourself
or ask WebPurify if they’d create a plugin to integrate with BuddyPress
or hire a developer to do so at https://buddypress.org/community/groups/bp-jobs-board/ or http://jobs.wordpress.netOctober 2, 2012 at 4:29 pm #142861In reply to: Can’t enable forums inside BuddyPress
@mercime
ParticipantRe permissions error:
– Please post issue.when BuddyPress is installed in a network created by Networks for WP plugin at https://wordpress.org/support/plugin/networks-for-wordpressRe: what the “use excisting installation” & “install group forums” differences are.
– If you have never installed Group Forums before, i.e., no bb-config.php at the root of your WP install, then you would click on “Install Group Forums” button
– Click “Use existing installation” means using the Group Forums (BP’s internal custom bbPress) which was created in BP version prior to upgrade to latest version.Re: And just in case I need to have more added to wp-config.php, this is the BP related define I have in there: define(‘BP_ENABLE_MULTIBLOG’, true);
– https://codex.buddypress.org/developer-docs/bp_enable_multiblog/
At this stage, I suggest removing that from your wp-config.php until you resolve permissions issuesOctober 2, 2012 at 3:39 pm #142857GuitarAgora
Participant@mercime I have been trying to put a sidebar on members “profile” page. For instance a side bar on a page like this http://www.guitaragora.com/members/marcel/ … Does that make sense?
October 2, 2012 at 9:07 am #142840In reply to: Can’t enable forums inside BuddyPress
Hiranthi
ParticipantWith the “Oh and it’s a subsite of a second network in that installation and I did add the multisite define to wp-config.php.” I mean the following:
I have famire.nl as the main site (main network). I am using the ‘Networks for WordPress’ plugin by David Dean to be able to add multiple networks in my installation. My site onexa.nl is one of the networks.
Inside that network I have a subsite called clients.onexa.nl (which I want to use as an extranet) and inside that site I have BuddyPress enabled.I understand differences between sitewide & group forums are btw (can’t remember mentioning the sitewide forums though). What I’m not sure of is what the “use excisting installation” & “install group forums” differences are.
And just in case I need to have more added to wp-config.php, this is the BP related define I have in there: `define(‘BP_ENABLE_MULTIBLOG’, true);`
October 2, 2012 at 7:30 am #142832In reply to: Is someone to help me Fei way this step
forfuture
ParticipantA. Installing Forums for Groups only
Step 1. Go to admin dashboard > Settings > BuddyPress > Forums. Click on “Install Group Forums”
Step 2. New bbPress Installation. You’ve decided to set a new bbPress for forum management in BuddyPress. This is very simple and is usually just a one click process. When you’re ready, hit the link below. Click on “Complete Installation”
Here is the problem in step number three sugar you add this in the last config file bb-config.php
Did not work
Step 3. All done! Configuration settings have been saved to the file bb-config.php in the root of your WordPress install. -
AuthorSearch Results