Search Results for 'buddypress'
-
AuthorSearch Results
-
January 11, 2015 at 12:34 am #231732
Henry Wright
ModeratorYeah, see here for details of the
wp_signupstable.You may also be interested in these links:
BuddyPress database description
WordPress database description
https://codex.wordpress.org/images/9/97/WP3.8-ERD.pngJanuary 10, 2015 at 10:25 pm #231727In reply to: Members & Media Issues
djsteveb
ParticipantThe theme details for that theme say:
rtMedia Ready – Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more.I would bet that for the media tab functions of that to work, you would need to install the rtmedia plugin
( https://wordpress.org/plugins/buddypress-media/ )Of course I don’t win every bet – and don’t bet often – just a thought you might try..
January 10, 2015 at 9:35 pm #231725In reply to: Members & Media Issues
The Majestic One
ParticipantThanks for the quick response.
” When you say you have a media tab to click – is that something you have in buddypress without other plugins? ”
http://awesomescreenshot.com/042461xz84
this is an example of what I am getting…I have other plugins installed but I have disabled them all and I still get the same thing.
I will also ask those plugin devs…I appreciate the quick help.
January 10, 2015 at 9:02 pm #231723djsteveb
ParticipantIf I was creating a new theme with buddypress in mind right now, I would consider that most buddypress installs probably use the rtmedia plugin – and given that it is over bloated with it’s own loading of bootstrap components, and font awesome, and I think some zurb foundation files(?) – most themes I have tried to use that are responsive and work with buddypress plain – have issues when the rtmedia plugin is enabled – not sure why exactly – but I found that any theme I tried that was based on bootstrap code caused conflicts, and there for I was unable to use – since having media uploads is more important than having a good theme imho.
Maybe that will change if the new mediapress plugin proves to be a good alternative – but I don’t think we will know unless someone codes an import media and stuff from rtmedia to mediapress.
So if I was making a new theme for BP – I would try to test with rtmedia, and some of the other major plugins that most people will be using. I’d make it responsive – but I would get a list of all classes that bootstrap uses and make sure not to use any of the same.
It would be nice to see a new theme that had options to un-enque / deregister calls to repetitive assets – on my current theme I think my theme calls 4 javascripts, 3 css files, adds inline css styles, and then my 6 plugins do the same.. so I end up loading javascripts about a dozen times, and fonts, and about a dozen css files, and a few hundred lines of inline css, and all kinds of extra bloated bs.
Some random thoughts from my recent experiences.
January 10, 2015 at 8:55 pm #231722In reply to: Members & Media Issues
djsteveb
ParticipantIf you change themes to 2014 or whatever and the same process works right, but fails when you use the sweet date theme – then that is not a buddypress issue and should be brought up with that theme’s developers.
When you say you have a media tab to click – is that something you have in buddypress without other plugins? IF your media tab is created by rtmedia or mediapress or some other media plugin – then I would ask those plugin devs.
January 10, 2015 at 1:49 am #231715In reply to: How To: change navigation?
Henry Wright
ModeratorHi @eversatile
I have been trying to find the file location of the profile and group navigation menus, with no luck
There isn’t a template file which you can change if that’s what you mean, but…
I would like to change “forums” to “discuss” and remove the “members” from groups menu, etc
You can customise slugs quite easily. See the Customizable Slugs in BuddyPress article.
bp_core_remove_nav_item()will let you remove nav items from the navigation. There is alsobp_core_remove_subnav_item()for removing sub nav items.January 10, 2015 at 1:40 am #231714In reply to: Sidebar Pushed to Bottom
valuser
Participantno. nothing to do with buddypress wall. sorry.
Solely to do with your comments not working.
arising from op
……then the standard comment button in BuddyPress doesn’t seem to work.
hope you are sorted.
January 10, 2015 at 1:35 am #231713In reply to: Sidebar Pushed to Bottom
Greg Hyatt
Participant@valuser, was this for the Buddypress facebook wall? And thank you for jumping in with a solution. Temporarily, I have it disabled as I was getting frustrated at the fact that my comment buttons in buddypress were not working and the fact that it kept pushing my sidebar to the bottom of the page.
Was is even more frustrating is the fact that the theme I am using is supposed to be Buddypress compliant with latest version and no success with the theme developers support. Usual deal, another day! lol
January 10, 2015 at 1:22 am #231712In reply to: Sidebar Pushed to Bottom
valuser
ParticipantCould be server related.
I had the same issue with one theme on one server (same theme worked perfectly on local installs and on other servers) though comments and activity posting were disabled. javacripts were not loading on one particular server for this particular theme.
The solution, provided by the theme developer, that worked for me (for that problem, which may not be yours, so may not be your solution) was to put the function below in functions.php
add_action( 'wp_enqueue_scripts', 'load_buddypress_js' ); function load_buddypress_js () { if (bp_is_group() || is_page( 'activity' )) { wp_enqueue_script('buddypress_query',plugins_url() . '/buddypress/bp-core/js/jquery-query.min.js',array("jquery")); wp_enqueue_script('buddypress_members',plugins_url() . '/buddypress/bp-core/js/widget-members.min.js',array("jquery")); wp_enqueue_script('buddypress_cookie',plugins_url() . '/buddypress/bp-core/js/jquery-cookie.min.js',array("jquery")); wp_enqueue_script('buddypress_scroll',plugins_url() . '/buddypress/bp-core/deprecated/js/jquery-scroll-to.min.js',array("jquery")); wp_enqueue_script('buddypress_js',get_template_directory_uri() . '/buddypress/js/buddypress.min.js',array("jquery")); wp_enqueue_script( 'heartbeat_js', get_template_directory_uri() . '/wp-includes/js/heartbeat.min.js', array(), '4.1', true ); } }The last item, heartbeat.min.js, is a core wp file from the /wp-includes/js/ folder which this server, specialising in WordPress, was apparently, unilaterally and undeclared, refusing to load!!!!
January 10, 2015 at 1:02 am #231710In reply to: Sidebar Pushed to Bottom
Greg Hyatt
ParticipantJust an fyi, I have decided to delete the Buddypress facebook wall. However, I still can’t figure out why my comment buttons do not work. I have seen several issues raised about this in forum, but was not able to locate any response or suggested idea.
January 9, 2015 at 10:59 pm #231702sk_tamilan
Participanthi @shanebp I just tried that and its not working
function rewards_activity_content($activity){ global $post; if ($post->post_type == 'rewards') { $activity_id = (int) $activity->id; $post_id = (int) $activity->secondary_item_id; $user_id = (int) $activity->user_id; $post_type = get_post_type( $post_id ); $thumbnail = get_the_post_thumbnail($post_id); $post_permalink = get_permalink($post_id); $activity_content = "<div class='post-id'>The post ID : {$post_id}</div>\n"; $activity_content = "<div class='thumbnail'>{$thumbnail}</div>\n"; $activity->content = $activity_content; $activity->action = sprintf(__('%1$s posted a new reward: %2$s', 'buddypress'), bp_core_get_userlink((int) $post->post_author), '<a href="' . $post_permalink . '">' . $post->post_title . '</a>'); } return $activity; }January 9, 2015 at 10:48 pm #231701shanebp
Moderatoradd_filter should always return something.
Try this:
// snipped $activity->content = $activity_content; } return $activity; }Or this:
// snipped $activity_action = sprintf(__('%1$s posted a new reward : %2$s', 'buddypress'), bp_core_get_userlink((int) $post->post_author), '<a href="' . $post_permalink . '">' . $post->post_title . '</a>'); } return $activity_action; }January 9, 2015 at 10:08 pm #231698@mercime
Participant@newdermeo After activating BuddyPress, you need to configure the components and pages
Single WP install – https://buddypress.org/getting-started/configure-components/
WP Multisite – https://codex.buddypress.org/getting-started/configure-buddypress-for-multisite/January 9, 2015 at 7:14 pm #231692In reply to: Sidebar Pushed to Bottom
Paul Bursnall
Participant@greghyatt I’m reasonably familiar with Buddypress Wall? Do you have a link for your site?
January 9, 2015 at 7:05 pm #231690In reply to: List of posts in a category – filtered by author
Henry Wright
ModeratorHi @wuvu2
This is more related to WordPress than it is to BuddyPress. Try asking your question over at https://wordpress.org/ where you may get more joy
January 9, 2015 at 5:03 pm #231687In reply to: Custom profile cover image
disha76
Participanthttp://demo.rtcamp.com/rtmedia/members/admin/
They have some themes which provide this. You can also make a request here https://buddypress.trac.wordpress.org/ to incorporate this as all social nets and social scripts are having this feature these days.January 9, 2015 at 12:18 pm #231684In reply to: Style editing profile page
Henry Wright
ModeratorHi @nunolopes99
This can be done via CSS. If you decide to go down the paid route, then try posting your requirements on the BP Jobs Board
January 9, 2015 at 11:39 am #231680In reply to: How to "Like" ?
Henry Wright
ModeratorIt’s still here
January 9, 2015 at 5:39 am #231671In reply to: How to "Like" ?
disha76
Participantfeel free to check out the BP Jobs Forum
The forums listed here are:
Installing BuddyPress
How-to & Troubleshooting
Creating & Extending
Requests & Feedback
Third Party Plugins
Localization
Your BuddyPress
Ideas
Miscellaneous
Plugin ForumsI am not finding any Jobs Forum. The Devs that seem to be doing some good work in this respect are devs from Buddyboss – but they are making no replies to contact from submissions and they have no open forums.
January 9, 2015 at 12:26 am #231652bp-help
Participant@tatakatte
Did you put Henry’s code in with opening and closing php tags? Make sure there is no white space between the opening and closing php tags as this will give an headers already sent error.January 8, 2015 at 11:53 pm #231649In reply to: 404 Page for Activity, Groups, Members
timothylegg
ParticipantHenry,
I found the structure you were describing. I see four pages, each apparently published 5 hours ago. I can edit each of them, but viewing them also gives a 404 error. I’m hesitant to edit them because that would only possibly create a page that doesn’t have the coding that should have been included; the coding that makes them special for whatever it is they do.
Aces,
Glad to converse with you. I’ve read some of your more ancient posts in the archives. When I enabled some of the BuddyPress features (such as Groups) I was suggested to change the permalinks to something other than the default. I chose the “Numeric” format purely for aesthetic reasons.
January 8, 2015 at 11:29 pm #231647In reply to: 404 Page for Activity, Groups, Members
aces
Participant@timothylegg
Just a thought – have you got pretty permalinks set up?In WordPress settings > permalinks ( /wp-admin/options-permalink.php )
January 8, 2015 at 10:22 pm #231643In reply to: 404 Page for Activity, Groups, Members
Henry Wright
ModeratorWithout going to Settings > BuddyPress, just go to Pages. It’s about the 4th link in your admin area (example.com/wp-admin). Then check to see if the pages have been created.
January 8, 2015 at 10:05 pm #231642In reply to: 404 Page for Activity, Groups, Members
timothylegg
ParticipantI am in as an admin. I go to Settings, then to BuddyPress. When I click Pages, I see two sections: Directories and Registration. Under Registration, Next to the text “Members” is a dropdown menu with a number of choices. It doesn’t matter which item I choose, when I click the “View” button, I get the webserver telling me that /members does not exist on the server. The other items, “Activity Streams” and “User Groups” have a similar behavior.
Going into my DirectoryRoot path and create those folders didn’t do much good. Yeah it fixed the error, but I don’t think that’s how it is really supposed to work.
January 8, 2015 at 9:05 pm #231640In reply to: 404 Page for Activity, Groups, Members
Henry Wright
ModeratorHi @timothylegg
But when I follow the path of Settings -> BuddyPress and then click the Pages tab, I get a page where I associate a WordPress page with each BuddyPress component directory. When I click on ‘View’ for either of the ‘Members’, ‘Activity’, or ‘Groups’, I get a 404 page.
Check if the members, activity and groups pages are actually created by going to your admin area and then clicking on Pages
-
AuthorSearch Results