Search Results for 'wordpress'
-
AuthorSearch Results
-
April 25, 2012 at 6:17 am #133539
In reply to: [RESOLVED] Editing BP user profiles on the backend
Paul Wong-Gibbs
KeymasterI believe https://profiles.wordpress.org/coenjacobs is also working on another plugin that does this. Keep an eye out.
April 25, 2012 at 4:47 am #133535In reply to: [RESOLVED] Editing BP user profiles on the backend
@mercime
Participant@fmeroney Disclaimer: the following plugin is compatible to WP 3.1.4 but it’s still working in my WP 3.3.2 and BP 1.5.5 install. Read the installation instruction https://wordpress.org/extend/plugins/bp-edit-user-profiles/
April 25, 2012 at 2:57 am #133532fmeroney
Member@mercime so i fixed it by decativating, deleteing, and reinstalling BP. Everythings kosher so far.
Thanks,
April 25, 2012 at 2:25 am #133526In reply to: “This group does not have a forum setup yet.”
@mercime
Participant@abbas667 Please clarify “wordpress ver 3.2.2” is a typo? It’s actually wordpress ver 3.3.2 ? Otherwise, that’s the major blocker.
April 25, 2012 at 12:46 am #133523@mercime
ParticipantMore of the outdated plugin issue and possibly a theme issue, not sure. The best thing is to set up BuddyPress and check everything out using bp-default theme without other plugins activated. When everything’s doing as expected, only then do you change to custom theme and add on plugins (only those which have been upgraded to current WP/BP versions). That way, you’ll know when anything goes wonky and can fix it asap. Only my 2 cents.
April 25, 2012 at 12:34 am #133520@ChrisClayton
ParticipantThe secondary avatars are registered within the functions.php
https://buddypress.trac.wordpress.org/browser/trunk/bp-themes/bp-default/functions.php#L554To remove it for groups, add this to your child theme’s functions and it will override the parent themes version.
function bp_dtheme_activity_secondary_avatars( $action, $activity ) { switch ( $activity->component ) { case 'friends' : // Only insert avatar if one exists if ( $secondary_avatar = bp_get_activity_secondary_avatar() ) { $reverse_content = strrev( $action ); $position = strpos( $reverse_content, 'a<' ); $action = substr_replace( $action, $secondary_avatar, -$position - 2, 0 ); } break; } return $action; } add_filter( 'bp_get_activity_action_pre_meta', 'bp_dtheme_activity_secondary_avatars', 10, 2 );April 24, 2012 at 11:41 pm #133519In reply to: How to post code in Group Forum?
@mercime
Participant@katharinentheke I use SyntaxHighlighter Evolved and it’s working well in my bp-default child theme – https://wordpress.org/extend/plugins/syntaxhighlighter/ and how to post code at http://en.support.wordpress.com/code/posting-source-code/
April 24, 2012 at 11:16 pm #133517fmeroney
Member@mercime now i understand what you meant, i did try the BP default theme, no luck. I may need to revert to my backup. I have a developer working on the fix now. Any ideas, could this be a BP & WP issue?
April 24, 2012 at 9:50 pm #133516verteus
Participant@djpaul Yes the wp_bb_* tables where created : https://plus.google.com/photos/116544258067470611768/albums/5735086693996271025?authkey=CMWA9vrixuHbsgE
I installed a fresh wordpress + buddypress in a subdomain and I have the same problem…
April 24, 2012 at 9:38 pm #133514fmeroney
Member@mercime yes sorry that is a typo. I did deactivate it with no luck. I also deactivated BP and reactivated it with no luck. How do I change to bp-default?
April 24, 2012 at 8:26 pm #133506@mercime
Participant@fmeroney just to clarify, you mean you updated to WP 3.3.2 and WP 3.2.2 was just a typo, right?
Looks more like Buddypress xProfiles ACL plugin needs to be updated. If deactivating xProfiles ACL doesn’t cut it, change to bp-default to see if issue is corrected.
April 24, 2012 at 7:54 pm #133503In reply to: Getting Groups more like Site-Wide Forums
@mercime
Participant@edward-elhauge Coming soon for Group/Sitewide Forums – https://buddypress.trac.wordpress.org/ticket/3598#comment:19
In the meantime, perhaps https://wordpress.org/extend/plugins/buddypress-auto-group-join/
April 24, 2012 at 5:09 pm #133494Paul Wong-Gibbs
KeymasterHmm.. Do you have any problems uploading regular pictures to WordPress’ Media Library? Because the /avatars/ folder should be inside your wp-content/blogs.dir/ or wp-content/uploads/ folder.
April 24, 2012 at 5:08 pm #133493Paul Wong-Gibbs
KeymasterSomewhere between steps 1 and 2, did you go to this page -> https://mercime.files.wordpress.com/2011/11/bp-forums.gif <- and click 'Install Group Forums' ?
April 24, 2012 at 4:37 pm #133489In reply to: BP 404 subdirectory install
studio8c
Participantid3 : domain.eu/members-area/
domain.eu/members-area/achives/4
the permalinks are set to Numeric
i also get this message now :
The following active BuddyPress Components do not have associated WordPress Pages: Activity Streams, Site Tracking, Discussion Forums, User Groups,in version 1.4 there is no assocaition with WP pages or am i wrong
this installation is a copy (“settings” ) of a older instalaltion
Cheers
April 24, 2012 at 4:12 pm #133486In reply to: “This group does not have a forum setup yet.”
abbas667
Member@mercime,very very thank you for your answers.
host php ver .5.5
wordpress ver 3.2.2
bp ver 1.5.5i tryed bp ver 1.2 but i have the same error.
my site adress : http://www.mones.irforum address :http://mones.ir/forums-2/
April 24, 2012 at 1:08 pm #133481kodestar
Memberhmm, actually, would a better way to deal with this be to set the capability to view the menu to read and put an if (user_is_mod()) add_submenu_page
April 24, 2012 at 11:50 am #133479In reply to: 1.6 timelines
@ChrisClayton
Participant@sooskriszta If i was a betting man, I’d put my money down on 1.5.6 being released to coincide with WordPress 3.4. I don’t think 1.6 will be quite ready by then and they will need a release to fix afew changes in WordPress.
But, then again – i don’t bet. Which is probably a good thing, because if i did, i’d be dead broke :p
April 23, 2012 at 10:03 pm #133459In reply to: How do I remove the excerpt in activity?
@ChrisClayton
ParticipantEither a custom functions plugin or your themes functions.php file.
Resources:
Custom plugin file: http://justintadlock.com/archives/2011/02/02/creating-a-custom-functions-plugin-for-end-users
What is a filter? https://codex.wordpress.org/Plugin_API/Filter_ReferenceApril 23, 2012 at 9:25 pm #133455In reply to: [Resolved] A Simple Link To The Users Profile Page
@ChrisClayton
Participant@mrguythornton – Firstly, the mods are human too and do make mistakes, if they do mark it as resolved when your not confident that it is then just say so and @ one of them asking them to remove it. The mods are actually kind people (unless your a spammer). Also, not sure if your aware of this, but to mark a post as resolved the mods simply edit the title to say so – your welcome to remove it easily by clicking ‘edit topic’ and removing it. (if your the one who started the thread)
Anyways, now that that’s out of the way – “ is how you would get the URL to the loggedin user’s profile. (you’d have to code it deliberately though, i don’t think it’s easy to add it to WordPress’ custom menu.)
Something like this will (should?) work.
`<a href="”>Visit your Awesome Profile!`April 23, 2012 at 8:00 pm #133452In reply to: Formatting Posts in Activity Screen
@ChrisClayton
ParticipantI recently posted this (about modifying the activity stream) that might help (assuming you know how to use WordPress filter hooks).
https://buddypress.org/community/groups/creating-extending/forum/topic/modify-output-of-activity-stream/Displayed userID:
bp_displayed_user_id();returns the user id for the user that is currently being displayed.April 23, 2012 at 5:58 pm #133443In reply to: New Install Issues
Xenoflare
ParticipantHI mercime,
Thank you for the suggestion. I just went ahead and picked a theme that had BuddyPress built in. I’m having other issues, but the BuddyPress aspect is working great! Anyways, thanks again. BuddyPress is really awesome, but my WordPress skills are limited at this point.
-Xenoflare
April 23, 2012 at 4:13 pm #133440jakeyboy1989
Memberthanks @mercime! That’s great.
I will post this in the sites you recommended, but I also wondering if you knew how to make the default option to broadcast to my public site… I want this all to be automatic, so my authors don’t have to select the box every time.. At the moment it saves the other settings, but I have to select the blog every time
thanks
April 23, 2012 at 2:48 pm #133436In reply to: [resolved] How to activate new users?
April 22, 2012 at 10:46 pm #133421@ChrisClayton
ParticipantSorry, missed your replies…
“Since we are speaking of tabs, how do I change places, for example: the subnav Edit from Profile tab to the Settings tab?”
bp_core_sort_subnav_items() should help.You can change how many posts show up from the user with `’posts_per_page’ => 10,` (i would tell you how to do pagination, but WordPress makes those things a pain in the butt when your not on a ‘wordpress’ page).
-
AuthorSearch Results