Search Results for 'buddypress'
-
AuthorSearch Results
-
March 24, 2015 at 5:23 pm #236523
In reply to: Registration page not working (tried EVERYTHING!)
gksgudtjr
ParticipantHey,
Yeah.. no big red written errors even if I leave the password blank and hit the sign up button…
Yes, I have tried safari and chrome and firefox… all of them gives me the same response..
I did try to download the brand new copy of WordPress to narrow this problem down so right now, I have the fresh installed WP and the only plugin that’s installed is BuddyPress…
So to this problem, there are two things that are malfunctioning… one is that it doesn’t show any error messages when no password has been inputted, also, when the signup button is pressed, the form doesn’t submit the info to the wp_signup DB…
Should I make another post with this specific description to see if anyone else would have ideas to fix this issue or wait here?
March 24, 2015 at 4:51 pm #236518danbp
ParticipantYou can create those page manually.
I recommend you to read attentively the install guide.March 24, 2015 at 2:43 pm #236506In reply to: Full name in the URL
Henry Wright
ModeratorHi @deepjain81
This isn’t currently possible. Full name may have all kinds of characters in it that will play havoc with the URL. For that reason, BuddyPress uses username and doesn’t provide a way to change it.
If you really need to go down this route, then it most probably is possible, but will need quite a lot of custom work done in order to avoid potential bugs.
March 24, 2015 at 2:34 pm #236505In reply to: Consolidate Profile TABS?
rosyteddy
ParticipantNo, the Devs has not made this yet it seems. I am not sure if this and/or bp menu toggle for responsive views is going to be incorporated in the next version of BP or not. Though it is high time ( or may have passed the high time) for this.
If you are interested or can convince the Devs or can submit patch you may find this thread useful – https://buddypress.trac.wordpress.org/ticket/6291#comment:7
Thanks.
March 24, 2015 at 2:21 pm #236502In reply to: new plugin: BuddyPress Simple Events
rosyteddy
ParticipantHi Shanebp
Really very grateful for this much needed plugin.
Can you kindly add two things that is present in all social net scripts like Elgg, Jomsocial, Easysocial etc for the “BuddyPress Simple Events”
1) Attending – Yes, no, maybe
2) Integration of the event form with What’s new box
Please see a demo here – it will take one second – http://easysocial.stackideas.com/Some other quick points for your kind attention
– it works great in default Twenty-fifteen but as you know this theme is not usable for Buddypress yet – BP responsive themes like Farben-basic breaks when this plugin is activated
– Comments are not in sync – comments made to the Event in the stream do not show under the Event in main page and vice versa [ in contrast Picture album for buddypress – Buddypics by modemlooper has comment and Favorite sync], same about Favorites
– no privacy options – open, closed etc
– admin settings for this plugin should appear under Network administration – Buddypress settings and most Buddypress plugin settings happen here – but this Event plugin has its settings in the main site, not under Network administration setting
– Group Events ( I see there is a paid option, ideally it comes free or paid for both – separating like this is little bit unseen in internet)However, without the ” Attending – Yes, no, maybe” event plugin has no meaning in the current and present day internet – please implement it
Thanks for this nifty plugin. It will help many of us.
March 24, 2015 at 12:05 pm #236496In reply to: Adding new 'Order By' on members loop
March 24, 2015 at 10:14 am #236491In reply to: Scheduled Posts
@mercime
Participant@buddypresslost
1) The default WordPress Role for all BuddyPress members is the Suscriber role. In order to allow any/some members to go to the backend to create a blog post, you need to navigate to the wp-admin menu Users > All Members and change the role of the member/s from Suscriber to either: :
– “Contributor” – cannot publish, can only submit a post for review. The Editor or Administrator can schedule the post at future date and the post automatically gets published at the scheduled date.
– “Author” – can set the publish date to future date and the post gets published at the scheduled date.2) Not sure why you need a system as the post does get published at a future date set in the “Publish” attribute within the “Publish” box in the panel.
March 24, 2015 at 8:25 am #236484In reply to: remove profile tab – correct code?
danbp
ParticipantMarch 24, 2015 at 6:58 am #236481mcpeanut
Participant@buddypresslost hmm, id always rather have my own dedicated ip address, so whats your verdict so far after using the cloud for a day? do you think it will be the correct route for yourself?
I think im definitely sticking to the route i mentioned tbh, i would love for you to keep me updated on your progress with your venture to see if it works out good for you using a media rich site in the cloud, have you already got a strong user base for your site or is it a new venture?
Maybe in a few months time of us both running these very different setups we could compare the pros and cons, When i have finally got this all setup and working as i intend i might even post an how to for reference, showing what steps i took to configure it all, I have done weeks worth of reading and watched hours upon hours of videos now about how to set wordpress up to be scalable via the combining of servers route, that and my knowledge about server administration in general should help me achieve this kind of setup, I feel i have got my head around most of the steps needed to achieve this kind of setup now, No doubt i will run into a few hiccups and problems at first but i’m willing to put the time into it.
March 24, 2015 at 2:52 am #236473In reply to: restrict messages to user-admin-user
5high
ParticipantOK, I don’t think the s2member route is an option for our membership structure, so it needs to be a Buddypress solution…
I’ve tried various options with the code suggested in the link I posted above but so far it’s not right. This is what i have added into compose.php:
if ( !is_super_admin() ) { input type=”hidden” name=”send-to-input” value=”admin” } else { input type=”text” name=”send-to-input” }but I’m obviously not putting it in the correct place – or perhaps I need to edit out some bits too??
Maybe @henrywright-1 or @lavishdhand could post their fix for this – just with a little more clarity as to where in compose.php it should go please?
I’d really appreciate it if anyone could give some advice here!
Thanks.
March 23, 2015 at 11:40 pm #236465In reply to: Comments not showing up on activity stream
danbp
Participanthi @mjc82in,
BuddyPress is continuously evolving. 2 years back it was a mess trying to use CPT on SWA. That’s no more the case with BP 2.2
Maybe this example will help you. It creates a CPT called Music which will show up on the SWA where you can comment it.
Add the code to bp-custom.php
// allow tracking of our CPT add_post_type_support( 'music', 'buddypress-activity' ); function customize_page_tracking_args() { // Check if the Activity component is active before using it. if ( ! bp_is_active( 'activity' ) ) { return; } bp_activity_set_post_type_tracking_args( 'music', array( 'component_id' => 'activity', 'action_id' => 'new_music', 'bp_activity_admin_filter' => __( 'Published a new music', 'text-domain' ), 'bp_activity_front_filter' => __( 'Music', 'text-domain' ), 'contexts' => array( 'activity', 'member' ), 'activity_comment' => true, 'bp_activity_new_post' => __( '%1$s posted a new <a href="%2$s">Music</a>', 'text-domain' ), 'bp_activity_new_post_ms' => __( '%1$s posted a new <a href="%2$s">Music</a>, on the site %3$s', 'text-domain' ), 'position' => 800, ) ); } add_action( 'init', 'customize_page_tracking_args', 999 ); function bpfr_create_post_type() { register_post_type( 'music', array( 'labels' => array( 'name' => __( 'Music', 'text-domain' ), 'singular_name' => __( 'Music', 'text-domain' ) ), 'public' => true, 'has_archive' => true, ) ); } add_action( 'init', 'bpfr_create_post_type' );Ref: https://codex.buddypress.org/plugindev/post-types-activities/
March 23, 2015 at 10:10 pm #236459mcpeanut
Participant@buddypresslost i really appreciate the input your giving, the reason i said forget bandwidth for now is because the bandwidth fees can be set as a set price per month if you negotiate with the isp and give yourself plenty of room for excessive traffic spikes, the concern for me really is all about the storage and handling of the media itself.
I will figure this out! haha, and i plan on creating a very good safety net for growth before i launch, the charging for media uploads is a good way of bringing the income in like you said , but are people willing to pay for uploading when lots of sites don’t charge, im not 100 percent convinced on this yet.
I allready have a dedicated quad core zeon server with 32gb ddr3 ram and 4tb hardrives in raid, but this is why im thinking of getting 2 more and using 1 for load balancing, and one for a database server at first then i would plan on having 2 custom servers built just for media in a raid configuration, this would allow me to add another 20tb storage space cheaper than the cloud.
I am trying to figure out this exact configuration yet but im now also questioning the cloud root before i commit to these purchases and task of setting all this up!
March 23, 2015 at 9:54 pm #236456mcpeanut
ParticipantOh and to explain a little more to the people who are actively using media rich plugins within their buddypress sites they have just setup, ask yourself what will you do when you have no space left for users to upload files to? how will you tackle the situation? will you resort to deleting all your members previously posted media because no-one can post any more and your server crawls to a halt? or will you then take action by putting your site in the cloud and then face the way overpriced storage solutions offered by the cloud? and what if your site is not making enough to pay for the masses of media users are posting? without an advance solution this seems like alot of websites that allow media posting are setup to fail.
Hope you guys are starting to understand why this question was asked now 🙂
March 23, 2015 at 9:30 pm #236455mcpeanut
Participant@buddypresslost hi there out of curiosity what about storage space and how is this charged to you via the cloud at rackspace?
This is why i decided to abandon using the cloud and build a good old infastructure of servers, let me give you an example, what if your website is intended to be media rich with allowing posting of mp3s and video etc via plugins such as rtmedia = only as an example) how would you cope with the cost of having a never ending and expanding media library via the cloud?
To me this is the biggest downfall the cost of storage in the cloud if users post lots and lots of media, i know its arguable about dedicated server costs each time you add another medi server but in this respect you can add tons and tons of storage to them alot cheaper (as long as you have them in a decent raid setup for backup purposes and failure), also you know the exact cost of adding extra hardware each time you do and you would only do it when its sustainable to do so.
This is why i asked the question here, i am trying to get a few opinions in on the matter, i mean how would You cope with a media rich websites storage space when you cannot determine via the cloud just how much it will cost each month if your userbase grows and grows all posting media? it has to be stored somewhere.
Anyone else got any advice on this before i commit to my next step?
P.S can i please ask people who read this to forget about bandwidth use and traffic as a whole for the time being and help me concentrate on the media storage solution in terms of growth as a kind of what if situation? thx for any opinions in advance
March 23, 2015 at 5:19 pm #236436In reply to: Comments not showing up on activity stream
Henry Wright
ModeratorHi @mjc82in
Go to Settings > BuddyPress > Settings and select “Allow activity stream commenting”
March 23, 2015 at 7:29 am #236414In reply to: Customizing Buddypress Activity Wall
IHaveToDoThis
ParticipantHey Everyone,
I still haven’t found out how to save edits in chrome inspector or how to customize my wall more…BUT I did find out how to do what was most important to me, which is change the text ‘Site-Wide Activity’ on the activity stream page. I found the solution here on a forum through a google search. Unfortunately I was on a work computer and left before copying the link and now of course I can’t find that forum anymore. Thank god I wrote it down!
Anywho, you find it in: wp-content>plugins>buddypress>bp-activity/bp-activity-loader.php and its toward the top the in $GLOBAL array.
Thanks to the stranger who found this!
And any help on how to design or what files to mess with to play the design of the activity stream is greatly appreciated!
March 22, 2015 at 11:26 pm #236408In reply to: how to make buddypress private
Azalea Mollis
ParticipantI don’t know if there’s a good plugin for this but you can add a custom function to your bp-custom.php file that achieves the same result. You can read how to make a bp-custom.php file here in the BP Codex.
When your bp-custom.php file is ready, you add this function to the file:
<?php function restrict_bp_pages() { global $bp; if( bp_is_blog_page() || bp_is_register_page() || bp_is_activation_page() ) { return; } if( !is_user_logged_in() ) { bp_core_redirect( $bp->root_domain .'/YOUR-LOGIN-SLUG' ); } } add_action( 'get_header', 'restrict_bp_pages' );You insert the slug of your login page in the place of
YOUR-LOGIN-SLUGinto the code above. E.g. if your login page is http://www.mypage.com/mylogin, your insert ‘/mylogin’. If you want to use your home page you leave out this part and only usebp_core_redirect( $bp->root_domain );.Then you upload the bp-custom.php file into the /wp-content/plugins/ folder on your server, and you’re ready.
March 22, 2015 at 10:07 pm #236404In reply to: On members page invalid options showing
danbp
ParticipantIf you use a single forum aside group forums, maybe review the forum settings.
A single forum is declared as “forum”
A group forum should be declared as “category”.March 22, 2015 at 7:49 pm #236397In reply to: Test Registation error
danbp
ParticipantClear your browser cache. This happens sometimes when you register, then try to login as new user during the same session. Can also be due to theme or plugin settings.
You can also read some older topics about this:
https://buddypress.org/support/search/Invalid+activation+key/March 22, 2015 at 7:43 pm #236396In reply to: Private message sent to admin e-mail
danbp
ParticipantAny ideas on what may have caused this ?
That question was answered here.
It’s the user who did it wrong, so guess there is no technical solution.
The “from” wordpress@mysite.com is a default address which redirect to site admin address (the one you indicate when you setup WP).
This can (and should be) changed, as its a common trick used by spammers. Read here how to do this.
March 22, 2015 at 7:30 pm #236395In reply to: importing from phpBB
danbp
ParticipantHi and welcome,
but unfortunatly you’re on the buddyPress forum here.
For bbPress related questions, go here.
March 22, 2015 at 6:26 pm #236392In reply to: No Site Name in Buddypress Pages
gmxperry
ParticipantI just wanted to confirm to anyone who finds this post later with the same issue (before 2.2.2) that this process worked 100%. Just apply the changes in this link and it should fix your problem, if you happen to use Customizr as your theme of choice:
https://buddypress.trac.wordpress.org/attachment/ticket/6107/6107.06.patch
March 22, 2015 at 5:21 pm #236388In reply to: message inbox code
danbp
ParticipantAnything related to messages and notifications is stored in bp-notifications and bp-messages folders.
Style is handled in /buddypress/bp-templates/bp-legacy/css/buddypress.css
More on Codex: https://codex.buddypress.org/developer/function-examples/bp_notifications_add_notification/
March 22, 2015 at 5:15 pm #236386In reply to: No Site Name in Buddypress Pages
danbp
ParticipantVersion 9 and 6 are slightly different and Customizr doesn’t show a complete BP title when you use the latest patch (9). For example, you’ll see just the site name on single activities.
Applying the first one made by imath will probably be the best solution in your situation. I won’t critizise Customizr, but personnally i won’t use it with BuddyPress. Because of this issue, and some others, handled on that theme support. 951,457 downloads maybe say it’s a popular theme, but 245 support pages in one year is something that get me a bit suspicious in term of usage.
There is no miraculous method to apply a patch, and no special tips for that except if you don’t know how to copy/paste code, which i can’t belive is the case 😉
So Codex is your friend to discover some other academic methods like using Tortoise.
March 22, 2015 at 1:38 pm #236381In reply to: No Site Name in Buddypress Pages
danbp
ParticipantNot sure that Customizr is now working 100% with BP (1 year back it wasn’t compatible with BP).
Anyway, issue is related to the theme. FYI, 2015 also doesn’t show up page titles…
To solve this temporarely (until next update), you can apply this patch
https://buddypress.trac.wordpress.org/ticket/6107I tested v.6107.06 with Customizr and it works !
-
AuthorSearch Results