Search Results for 'buddypress'
-
AuthorSearch Results
-
March 20, 2013 at 2:14 pm #157309
In reply to: Buddypress default theme
hkcharlie
Participant@modemlooper thanks for the advice, where should I place this ? (functions.php ?)
March 20, 2013 at 1:53 pm #157307bp-help
ParticipantI still would appreciate some help on this! Thanks everyone! 🙂
March 20, 2013 at 1:52 pm #157306danbpfr
Participant.. and sipping a cup of tea, yes 😀
March 20, 2013 at 1:42 pm #157300notpoppy
ParticipantFirst, thanks for the speedy reply!
I do have group forums so I guess that limits my choices a bit. Guess I’ll have to sit tight and wait for Buddypress 1.7 and BBPress forums 2.3…
March 20, 2013 at 1:37 pm #157299danbpfr
Participanthi @notpoppy,
no it’s not possible. WP post comments are not forum discussions.
And the BP included bbPress forum as no settings for such.If you use BP 1.6.x with the bbPress 2.2.4 plugin for a standalone forum, you can plug bbPress, but this cannot be done if you have group forums.
If you use BP 1.7 and bbP 2.3, every thing becames possible, but you have to wait a little, both are still in beta…
That said, each WP comes with Askimet, the theoretical nec plus ultra of comments anti-spam, whitch protect the comments, the activity stream, etc
Search on this forum, you’ll find many discussions about spam and what to do/use….
Even if no definetly solution exist.March 20, 2013 at 1:22 pm #157298In reply to: Deleting Admin Sub-menu items
danbpfr
Participantthe thing to understand with PHP is to never use a function name twice on a same action. A function name is and must be unique.
In the WP ecosystem, you can act on templates throught the child theme. Generally you only change HTML and CSS and use the existing php filters from the original template.
If you need to modify an existing function, you copy the original to the child theme functions.php file and do your changes on this copy. Once done, you change the name of the function and the new hook name
unhook first the action or the filter
remove_action or remove_filter, than the new function
function my name
add_action or add_filter (‘the_action_to_hook’, ‘my_name’)Because this is registered in the theme functions file, and because WP is calling a evantually exiting child theme first when he loads, the child becames priority of any other existing theme. And that’s why it works !
Don’t be affraid, the only one who can broke things in a child theme is you, never an update.
The only limit is when you use a so called buddypress ready theme, in fact a third party theme. This works generally out of the box, but if you want to change something in such a theme, you must first create a child for it. Simply because that original “child” is updatetable. And the whole world knows that you want’t loose your changes.
That said it’s not forbidden to work on a local copy, and to save systematically any file you modify on the prod site.
Reading the Codex on rainy days is also a good thing you can do. 🙂March 20, 2013 at 1:08 pm #157296In reply to: Social open macro & micro-blogging with BuddyPress
gouessej
ParticipantHi
There are already several tools to restrict access based on user roles, for example Members, Advanced Access Manager, Restrict Content, Page Security, Maven Member, User Access Manager, WordPress Access Control, Role Scoper, Press Permit, … However, none of them allows to restrict access of users not logged as WordPress users but with OpenID.
March 20, 2013 at 12:20 pm #157291In reply to: Main Blog Posts Not Appearing in Activity Feed
parakeet
ParticipantGrr. Me too!
Was working okay.
Have been trying out BuddyStream, BuddyBlog and BP Simple Front End Post.
Now no blog posts are appearing in Activity feeds.
I’ve deactivated all those plugins. Now the only plugins I’m running are BackWPup, BuddyPress itself and Remove Admin Bar – but still, new blog posts are not appearing in the Activity feeds!How frustrating 🙂 Looks like I’ll need to wipe the slate clean and start again?
Haylp!
BP 1.7b2
WP 3.5.1March 20, 2013 at 8:42 am #157089Shahzaib Sabir
Participant@chouf1 I think i detect the problem. The conflict was, because i added the following code to my style.css to float a link(wstest.tk) on extreme right of the buddypress bar. `#wpadminbar li {
float: right;
}`When i remove the code from style.css this works.
Is there any code, by applying i could float a link to right instead of applying the above code, which floats all the links from left to right?
Here is the link of my test website http://wstest.tk/
Username: test
password: test
@chouf1 Please have a look into and tell whether you could help me? plz..March 20, 2013 at 4:55 am #156841In reply to: accessing private groups
John James Jacoby
KeymasterSince your site was compromised, and you are the resident expert with your configuration, we rely on you to fill in any gaps that you can.
If you get to the point where you’ve identified a clear and repeatable security issue with WordPress, BuddyPress, bbPress, or any other plugin, let is know by checking out the following page:
https://codex.wordpress.org/FAQ_Security
Thanks, and good luck.
March 20, 2013 at 4:01 am #156839In reply to: Is Buddypress right for me and my project?
LudachrisGSX
ParticipantThanks for the replies… having used WordPress several times before to build client sites, I do feel pretty comfortable with it and understand what it is. I’ve just never used it for a community site solution like my vBulletin site business. I guess I’m just trying to feel comfortable with the idea of using a script that wasn’t originally designed to be a community script as the basis for a community site.
One of the drawbacks of it not being a community script out of the box is that you have to load it up with a ton of plugins and then worry about compatibility and quality of code (something I’ve also encountered with vB, Drupal, and Joomla). The more plugins the more headache come upgrade time usually. Hopefully that won’t be a big issue like it is with vB.
I think I feel good enough to start installing a test site to build it up and see how close we can get to our project vision using available plugins and themes.
March 20, 2013 at 3:23 am #156838In reply to: HTML Showing on Profile Page
bp-help
Participant@praisehim Sorry to butt in but the simplest answer is to just not use that theme and use the default buddypress theme. The moderators here are well versed in the default theme and some other ones. Anytime you use themes or plugins that are not included with BP then you have to rely on that theme or plugins author for support. Don’t get me wrong their will be people that will try to help but it seems to go a lot smoother when they know the theme and these moderators know their stuff on here really well. Their good people!
March 20, 2013 at 12:12 am #156830danbpfr
Participanthi @number_6,
Number 2: – Why did you resign ? 😀
sticky is a WP setting. This can be done/undone when you publish a post.
The only sticky or featured related code i found is in the child theme index.php
Give a try by removing this:27
<?php if ( is_sticky() ) : ?>
<span class=”activity sticky-post”><?php _ex( ‘Featured’, ‘Sticky post’, ‘buddypress’ ); ?></span>
<?php endif; ?>or ask the author @modemlooper directly
March 19, 2013 at 11:46 pm #156828In reply to: Member home page: "All Activity"
danbpfr
Participant<?phpif( bp_has_activities('user_id=1895624') ) : ?>https://codex.buddypress.org/developer/developer-docs/loops-reference/the-activity-stream-loop/
buddypress/bp-activity/bp-activity-classes.php
March 19, 2013 at 8:21 pm #156813In reply to: accessing private groups
Paul Wong-Gibbs
KeymasterAs Boone told you already, there are no known security issues with BuddyPress.
March 19, 2013 at 6:15 pm #156804In reply to: [Resolved] How do I change colors in BP theme footer
Bornholmeren
ParticipantThanks, I can use that also, but what I ment was the link and text belove my hole site, in the bottom, where it says:
http://www.bornholmeren.net er lavet i WordPress og BuddyPress.
It is not easy to read with the color it has know.
March 19, 2013 at 5:30 pm #156800In reply to: [Resolved] can't create groups
shadow772
Participantsorry fot not waiting, but I have to solve this issue for the running system.
I know you have other things to do and btw: buddypress is greatin the test environment I can now create groups just by re-uploading a fresh buddypress-plugin folder via ftp
doing a backup right now and testing for the running system
wish me luck =)March 19, 2013 at 4:42 pm #156792In reply to: Is Buddypress right for me and my project?
modemlooper
Moderatorno worries! 😉
March 19, 2013 at 4:38 pm #156791In reply to: Is Buddypress right for me and my project?
@mercime
Participant@ludachrisgsx Looks like you’d want to import vbulletin forums to bbPress forums https://codex.bbpress.org/import-forums/vbulletin/ For more information/assistance, please post at https://bbpress.org/forums/
BuddyPress and bbPress are both WordPress plugins.
1. scalable – yes. One can only be limited by server and skillset. https://wordpress.org/showcase/flavor/buddypress/ are just some who have thousand of users.
2. not buggy – nothing’s perfect in this world. Having said that, both BuddyPress and bbPress have the same Project Lead and both projects are actively maintained and upgraded. Compatibility of both plugins with current WordPress version is assured.
3. easily modified – easy is relative. The code is open source. Experienced BP/bbP/WP developers can certainly add/remove features as needed.
4. ton of features – register at http://testbp.org/ the official BuddyPress test site running default features on trunk versions of WP/BP/bbP using Twenty Twelve theme.
5. easy to build out different content types etc – see #3 above.
6. not bloated – one can enable or disable features as needed.
7. easily optimized for search engines – WP/BP are naturally optimized for search engines even without “seo” plugins.
8. solid support community – all of us who give support in these forums are volunteers living in different time zones. There is no on-demand support. One could hire full-time/experienced developers by posting at:
– https://buddypress.org/support/forum/plugin-forums/bp-jobs-board/ and
– http://jobs.wordpress.net/9. secure, obviously – we take security seriously.
>> I know that asking this here will come with a BP slant,
Unlike phpfox and vbulletin, we’re not trying to sell BuddyPress. It’s free. It’s there for anybody to use. And it’s an outstanding plugin if I may say so myself, constantly improving and keeping up to date with latest developments. We have active communities submitting enhancement requests, bug reports and patches for the bugs where found. There are developers who submit add-ons themes/plugins which are either free in WordPress.org or commercial ones specifically for BuddyPress.
Good luck with your selection process.
EDIT – I took my time answering, didn’t see your post @modemlooper
March 19, 2013 at 3:56 pm #156787In reply to: how to hide admin activity on Buddypress activity?
Ben Hansen
Participant@mercime thanks!
March 19, 2013 at 3:49 pm #156786In reply to: Is Buddypress right for me and my project?
modemlooper
ModeratorMy concerns about BuddyPress – it’s open source, which is risky to build a business around when you’re looking to customize it and add plugins.
BuddyPress IS WordPress AND is also open source and WP powers a large portion the internet. As for support, you can hire a developer to create and fix anything. The core plugin is completely stable and constantly being updated.
Did you hear Google dropped Google Reader? phpfox could have a similar fate and since it’s not open source you could lose out, at least with open source you could take the code and do what ever you want.
March 19, 2013 at 3:39 pm #156785bp-help
ParticipantIs there anyone else that would not mind helping me out on this? Thank you everyone! 🙂
March 19, 2013 at 3:28 pm #156782In reply to: Buddypress default theme
modemlooper
ModeratorYou can turn off the responsive CSS
`function my_bp_no_responsive() {
remove_theme_support( ‘bp-default-responsive’ );
}
add_action( ‘bp_head’, ‘my_bp_no_responsive’);`
March 19, 2013 at 11:05 am #156767In reply to: [Resolved] can't create groups
shadow772
ParticipantI’m using OneCommunity theme
at the test environment I deactivated all plugins, except buddypress itself and also switched to the BP Default theme, but it didn’t helpit all worked with all the plugins and this theme, I dunno why it now doesn’t anymore
EDIT- info removed per request ~~~ mercime
March 19, 2013 at 10:58 am #156766In reply to: Blog comment moderation forced
discdemo
ParticipantDoes anyone know how comments would slip by moderation in a buddypress environment, even when “an admin must always approve” is checked? I tested a few comments in an activity feed and it posted without a hitch.
thx.
-
AuthorSearch Results