Search Results for 'wordpress'
-
AuthorSearch Results
-
October 5, 2012 at 2:48 pm #143016
In reply to: Gravitars not showing.
@mercime
ParticipantThis has been reported in trac. Check out possible solution for your installation https://buddypress.trac.wordpress.org/ticket/4571
October 5, 2012 at 2:26 pm #143014In reply to: Widgets & sidebar not showing after upgrade
@mercime
Participant43 active tickets to go at this time https://buddypress.trac.wordpress.org/roadmap
October 5, 2012 at 10:35 am #143008In reply to: Iis my theme buddypress compatible?
@mercime
Participant@newmember01 you need to install/activate the BP Template Pack plugin to make your WP theme compatible with BuddyPress. Then you have to go through the BP Compatibility Process. A MusicLife theme that looks very much like your WordPress 40005 theme has been set up for Step 3 per https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#template-packed-wordpress-themes
October 5, 2012 at 8:16 am #143002In reply to: Adpating theme with BP Template Pack
@mercime
Participant@sb0n Based on the HTML structure of your theme, you need to change 16 template files within the 6 BP folders transferred to your yoko theme folder in server during the compatibility process.
October 4, 2012 at 9:05 pm #142993In reply to: Forums Posting Problems: The definitive post
Joe
Participant@Virtuali — thanks your comment worked for me — I was having the same problem as @cmroybal. Reinstalling wordpress would have been awful. I did have to uncheck enable forums for that specific group though and then re-enable it after deleting the specific group forum file in the database. Thanks a bunch!
October 4, 2012 at 8:25 pm #142992stuffwelike
ParticipantI am not trying to search through the activity. I want the search field to search through the main site’s blog posts. However again the search simply refreshes the main page which I have set to the Site Wide Activity page. The search no longer displays results.
October 4, 2012 at 6:22 pm #142980mgkoller
ParticipantIf your trying to search activity, I use this (https://github.com/sbrajesh/bp-searchable-activity) which adds an “activity” option in the buddypress dropdown search.
October 4, 2012 at 4:57 pm #142974In reply to: Specific Member Viewing Options
trailmix5
ParticipantO.K., I finally figured it out myself. So in case you came across this thread in search of a resolution, here it is…
Edit your .htaccess file on your server. This can be done by manually editing it via FTP or with the Yoast SEO plugin directly in WordPress (which is obviously easier).
Put the following code in .htaccess file. If you don’t know where or how to insert the code check out http://www.squidoo.com/301
Anyway, in the code below, I’m redirecting only http://www.YOURWEBSITE.com/members to a location of my choice. In this case, I’m redirecting it to my homepage, but you can choose any location you like. Make sure to leave the ^ and $ or else it will not work properly. It basically tells the redirect to only move that single URL and nothing else associated with it. That way when a user enters a group, they can still see all of the members in that group. Here it is…Enjoy!
RedirectMatch 301 ^/members/$ http://www.YOURWEBSITE.com/
October 4, 2012 at 4:18 pm #142973In reply to: user activity share plugin for wordpress buddypress?
October 4, 2012 at 2:45 pm #142972Stephanie 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
-
AuthorSearch Results