Search Results for 'buddypress'
-
AuthorSearch Results
-
March 15, 2014 at 11:09 am #179831
In reply to: Notification still not being displayed
jakewho
ParticipantUnfortunately, I think my issue is more problematic than that…I currently have 43 “blank” notifications and the number keeps growing. I have been receiving these blank notifications ever since I upgraded to Buddypress 1.9.1. I even tried reverting to Buddypress 1.8.1, but this did not resolve the problem.
March 15, 2014 at 7:44 am #179830In reply to: Should I wait for the v2.0 beta?
Henry Wright
ModeratorYou might find this helpful
March 15, 2014 at 4:12 am #179825In reply to: WordPress/BuddyPress Integration
Ben Hansen
Participantyou can only have one theme active at a time. also i think personally, buddypress would make a bad alternative for google drive since its really not the same thing at all.
as for putting a menu item to take users to the main forum page that will not be a problem.
it sounds like you may want try using wordpress first and then add buddypress once you are a little more familiar with it before adding buddypress to the mix.
March 15, 2014 at 2:30 am #179822In reply to: Notification still not being displayed
colabsadmin
ParticipantHey Michael,
That usually happens when someone deletes the item you’re being notified about. There’s a ticket open to have the notification deleted when the item is deleted but it hasn’t been implemented yet.
March 15, 2014 at 1:26 am #179819In reply to: BuddyPress: Two missing features
modemlooper
ModeratorMarch 15, 2014 at 12:05 am #179816In reply to: Help! button "post update" is not present
maverhick80
ParticipantI am using buddypress 1.9.2 with wordpress 3.8.1
March 14, 2014 at 11:59 pm #179815In reply to: WordPress in it's Own Directory for BP2.0?
bigtreesjoe
ParticipantI understand that the URL rewrite issue has been moved to BP 2.1. However the question still has not been answered as to whether this will solve the BP incompatibility with standard WordPress installation “In Its Own Directory”.
Will fixing the URL rewrite issues resolve this incompatibility issue as described here: https://codex.buddypress.org/getting-started/before-installing/before-installing/March 14, 2014 at 8:30 pm #179807In reply to: Best Guide For BuddyPress Theme Dev?
theatereleven
ParticipantOh I see. And the BuddyPress codex tells me what I need to know?
March 14, 2014 at 6:17 pm #179800In reply to: Best Guide For BuddyPress Theme Dev?
modemlooper
ModeratorBuddyPress replaces the_content of page.php with BP html. You can get a lot of style customization with simply adding extra CSS.
March 14, 2014 at 3:31 pm #179788In reply to: Notification Management
colabsadmin
ParticipantI found bp_notifications_get_registered_components() which will bring back an array “of component names that are currently active and have registered Notifications callbacks”.
Updated code
function qd_notifications_filter_form() { // Setup local variables $components = bp_notifications_get_registered_components(); $selected = ''; // Check for a filter if ( !empty( $_REQUEST['s'] ) ) { if ( in_array( $_REQUEST['s'], $components ) ) { $selected = $_REQUEST['s']; } } ?> <form action="" method="get" id="notifications-filter"> <label for="notifications-filter-list"><?php esc_html_e( 'Filter By:', 'buddypress' ); ?></label> <select id="notifications-filter-list" name="s" onchange="this.form.submit();"> <option value="" <?php selected( $selected, '' ); ?>><?php _e( 'All', 'buddypress' ); ?></option> <?php foreach ($components as $component) { ?> <option value="<?php echo $component; ?>" <?php selected( $selected, $component ); ?>><?php _e( $component, 'buddypress' ); ?></option> <?php } ?> </select> <noscript> <input id="submit" type="submit" name="form-submit" class="submit" value="<?php _e( 'Go', 'buddypress' ); ?>" /> </noscript> </form> <?php }Still not perfect, but better.
March 14, 2014 at 3:01 pm #179786In reply to: Permalink Structure
mcpeanut
Participant@henrywright yeah no worries i will keep you informed too, im going for the xeon straight off so will gladly let you know how it fairs in a real buddypress environment as i will also be launching my site next month as soon as ive configured my new server etc.
March 14, 2014 at 2:50 pm #179784In reply to: Notification Management
colabsadmin
ParticipantI’ve been playing around with the filtering aspect. Turns out Buddypress has a filter built in, so all you need to do is add a form (dropdown) to use it. I haven’t fully tested this but seems to work. I need a way to determine all possible notification component names and actions so it will autopopulate the dropdown when new plugins use notifications.
I copied /plugins/buddypress/bp-template/members/single/notifications.php to my child theme and added the following right below the bp_notifications_sort_order_form call
<li id="members-filter-select" class="last filter"> <?php qd_notifications_filter_form(); ?> </li>Then in my functions.php file, I added the dropdown code (I basically stole this from the code that generates the sort by date dropdown.
function qd_notifications_filter_form() { // Setup local variables // Need to figure out a way to autopopulate this array $searchterms = array( 'new_at_mention', 'bbp_new_reply','new_message','friendship_accepted','friendship_request','group_invite','localgroupnotifier','ac_notifier' ); $selected = ''; // Check for a custom sort_order if ( !empty( $_REQUEST['s'] ) ) { if ( in_array( $_REQUEST['s'], $searchterms ) ) { $selected = $_REQUEST['s']; } } ?> <form action="" method="get" id="notifications-filter"> <label for="notifications-filter-list"><?php esc_html_e( 'Filter By:', 'buddypress' ); ?></label> // need to loop through this instead of hardcoding the options. <select id="notifications-filter-list" name="s" onchange="this.form.submit();"> <option value="" <?php selected( $selected, '' ); ?>><?php _e( 'All', 'buddypress' ); ?></option> <option value="new_at_mention" <?php selected( $selected, 'new_at_mention' ); ?>><?php _e( 'Mentions', 'buddypress' ); ?></option> <option value="bbp_new_reply" <?php selected( $selected, 'bbp_new_reply' ); ?>><?php _e( 'Forums', 'buddypress' ); ?></option> <option value="new_message" <?php selected( $selected, 'new_message' ); ?>><?php _e( 'Messages', 'buddypress' ); ?></option> <option value="ac_notifier" <?php selected( $selected, 'ac_notifier' ); ?>><?php _e( 'Activity', 'buddypress' ); ?></option> <option value="localgroupnotifier" <?php selected( $selected, 'localgroupnotifier' ); ?>><?php _e( 'Groups', 'buddypress' ); ?></option> <option value="friendship_accepted" <?php selected( $selected, 'friendship_accepted' ); ?>><?php _e( 'Friend Accepts', 'buddypress' ); ?></option> <option value="friendship_request" <?php selected( $selected, 'friendship_request' ); ?>><?php _e( 'Friend Requests', 'buddypress' ); ?></option> </select> <noscript> <input id="submit" type="submit" name="form-submit" class="submit" value="<?php _e( 'Go', 'buddypress' ); ?>" /> </noscript> </form> <?php }March 14, 2014 at 2:00 pm #179779matthew.hout
ParticipantMarch 14, 2014 at 1:52 pm #179778aces
ParticipantAt the very top of the page below the admin bar on the right you should have a ‘Screen Options’ button – next to ‘Help’.
Have you got ‘Buddypress’ ticked in the ‘show on screen’ section?
March 14, 2014 at 1:31 pm #179777matthew.hout
ParticipantI’m trying to create a menu only accessible to those who log-in to the website.
Before (on window server) when I go to appearance > menu I had Pages, BuddyPress, Links, Categories. When I selected BuddyPress it gave me options to click on the pages I wanted my log-in folks to only see.
how do I get the back in to Appearance > Menu?
March 14, 2014 at 1:23 pm #179775mcpeanut
Participantlol im confused? what you mean? buddypress in Appearance > Menus?
are you trying to create a custom menu in wordpress? all you have to do is name the menu then on the left handside tick the pages you want to appear in this menu, then under the menu you have created you will see these options.
Menu Settings
Auto add pages
Automatically add new top-level pages to this menuTheme locations
Primary MenuTick primary menu option then save and your menu will appear how you want it
March 14, 2014 at 1:16 pm #179774matthew.hout
ParticipantThink I’m trying to hard to accomplish what I want out of this website.
@mcpeanut yes, the issue was resolved with the window server.
I switch server and re-installed WP 3.8.1 and re-installed BuddyPress 1.9.2. For some odd reason: I do not have BuddyPress in Appearance > Menus
I went through to be sure my settings are as I want them: all good there. Just need the Buddypress option in the Menu.
M
March 14, 2014 at 12:44 pm #179771In reply to: 2.0 top features – ideas
mcpeanut
Participant@henrywright i agree with you on that definitely, but adding some functionality that some plugins offer as built into buddypress would also help because your adding less weight from these plugins too no?
March 14, 2014 at 12:41 pm #179770In reply to: Permalink Structure
Henry Wright
ModeratorI’m actually about to move over to my 1&1 VPS so will try to report back what I find. I’m pretty sure I’ve used root profiles on it before without problems.
You might have better luck with root profiles when BP adopts WP-style rewrite rules in v2.1. You’ll be able to put any component you like in the root. It was scheduled for 2.0 but there’s lots of work involved. Check out this ticket for the latest updates:
March 14, 2014 at 12:22 pm #179767In reply to: Permalink Structure
mcpeanut
Participant@henrywright nope nothing that would effect it, because i can even install a fresh wordpress and buddypress install then create a new bp-custom.php and add the code and they still wont work, this has been the same way for 12 months and on 2 different linux servers, the first one was on shared hosting with hostgator so should of been no problem with config of server, and ive now just upgraded to a 1&1 vps, and the same thing applies, next month im upgrading to full dedicated for launch and would hope to have root profiles activated for this time, but like i said im hitting a brick wall with this code??
oh and by the way i dont use multisite
March 14, 2014 at 12:13 pm #179766In reply to: Permalink Structure
Henry Wright
Moderator@mcpeanut humm, that’s interesting. I’ve never had any problems getting root profiles to work. Are you doing anything else special inside bp-custom?
On a slightly different note, but still related, you might find this page of some use:
March 14, 2014 at 11:29 am #179761In reply to: Permalink Structure
mcpeanut
Participant@henrywright yo henry, this confuses me because this option never works for me on any of my buddypress installs?
define ( ‘BP_ENABLE_ROOT_PROFILES’, true );
ive put this in bp-custom plenty of times but it never actually does anything all my links remain the same, yes my bp-custom.php is in my plugins folder and all the other tweaks in there work fine?
so why doesnt this work for me?
doesnt even work when i add it directly to my wp-config.php either btw
this is also the case on fresh installs of wordpress with default themes, never can seem to get users to show as root??March 14, 2014 at 11:13 am #179760mcpeanut
Participant@matthewhout Hmm, buddypress settings are located in the settings submenu in wordpress dashboard, make sure you turn on all the options you need in there, also make sure your pages are setup in there as you want them to, also dont forget to go to settings and permalinks too, and select which permalinks you prefare, hopefully everything should be fine for you then, well if i understand correctly that the issues you where having was due to having a windows server and now you have changed to a linux server? i cant see there being any problems with a fresh install.
March 14, 2014 at 8:54 am #179755joerob101
ParticipantI failed to find a solution. But as the functionality wasnt critical I left it as it was.
Genesis Connect is maintained for new versions of buddypress so if I were you I’d file a support ticket with the studiopress team and ask for their help.
March 14, 2014 at 5:14 am #179748In reply to: Best Guide For BuddyPress Theme Dev?
theatereleven
ParticipantThanks! The book for sale on Amazon?
I’d love to just call in the exact BuddyPress components I want to use. Is that possible? For theming, I’m a heavy custom post types and ACF guy – I like to be very specific in where everything is placed.
Hoping BuddyPress allows this.
Again, thanks for the response.
-
AuthorSearch Results