Search Results for 'buddyboss'
-
AuthorSearch Results
-
September 12, 2014 at 4:17 pm #192570
In reply to: How to make my site like Facebook
peter-hamilton
Participantplugins I would recommend:
buddypress-activity-plus
This adds images/video/links to your activity wall, which is a facebook-ish function.
There is another plugin in the making which should be an improved version called BP-attachmentsGD-bbpress-attachments
Allows people to upload images to the forum, easier then the existing system.And ofcourse the facebook plugin.
These plugins and some playing around with my templates allowed me to make a facebook-ish site.
BBFacelookI also suggest to look into a theme called BuddyBoss, it is a change but this is a very facebook inspired theme.
Good luck
P.H.August 25, 2014 at 11:35 pm #188485In reply to: [Resolved] Group Edit Dashboard broken
SeeingBlueS2
ParticipantI didn’t find anything in that link useful. The site is http://greatarchitect.us, the theme is buddyboss. On the outside everything appears fine. It all used to work fine until I used that repair option. I haven’t had any updates recently. This also appears to only be an issue in the dashboard so I’m not sure the theme is related, my guess is this is a backend failure, probably something that needs to be fixed in the database.
July 16, 2014 at 7:00 am #185164In reply to: Group page commenting is not working
@mercime
ParticipantI’ve tested this against all my other plugins and themes and it seems to just be happening on this theme (called buddyboss).
@jono_39 Sorry to learn that you’re having that issue. It’s great that you took the initiative to troubleshoot and identify the cause. I can only say at this point that the best place to find resolution would be at the premium theme author’s forums because we do not have access to the theme.July 13, 2014 at 5:24 pm #185057In reply to: Notifications tab seems to break site
noyzen
ParticipantS O L V E D.
Hi! i just created an account and loged to say SPEACIAL THANKS to the @buddyboss.
i was worked hard on a theme and found this bug after all works… i was sooo mad/sad.hey guy you are a BOSS!
tyJuly 13, 2014 at 4:29 pm #185051In reply to: Background Color of Posts
@mercime
Participant@essam12 Wall posts are BuddyBoss theme-specific features. I would suggest that you also post at the premium theme’s forums.
June 25, 2014 at 6:48 pm #184405In reply to: Add sidebar to Registration Page
Paul Bursnall
Participant@mercime If you visit http://falcon.everygoalmatters.com you can see the sidebar is present on every page. I set the ‘left sidebar’ template for the Register page, but no sidebar displayed. I then contact Buddyboss support who advised of the page template above to edit. Which I’ve also done, but still no sidebar will show. Off the top of my head, is it not the case that the Register page has no call to sidebar? I’ve swapped around with a few themes recently and saw the same issue on each one.
Thanks,
Paul.June 25, 2014 at 3:07 am #184384In reply to: Add sidebar to Registration Page
@mercime
ParticipantI’m advised by Buddyboss support to call the sidebar on this page: /buddypress/bp-themes/bp-default/registration/register.php … I am editing the right file?
@style960 No idea why their support is advising you to call the sidebar on the bp-default theme instead of using BP theme compatibility as we have no access to the premium theme. Perhaps you just need to clarify what they really meant by asking them to provide you with an example. Surely, you are not the only on who wants a sidebar in that theme.May 15, 2014 at 6:50 pm #182993In reply to: Getting the notification link for Activities?
godavid33
Participant@buddyboss AHHHHHHH THANK YOU! Does exactly what I want, so lovely.
So many hours and lines of code wasted… haha
May 15, 2014 at 4:25 pm #182983In reply to: The Best Cache'ing solution for BP?
BuddyBoss
ParticipantFragment caching would be ideal, but that really needs to be built into BP core. You can do it on your own but you’ll be hacking up template files right and left and it will be hard to update later. A lot of effort if you don’t NEED it. I would suggest Object Caching as Paul Gibbs said.
Ideally you will use APC object caching as it’s really fast (stores cached values in RAM). If you use W3TC with file caching (default) it will not be as fast as it has to read from files.
Here’s a tutorial I wrote about how to enable Object Caching on BuddyPress:
Briefly:
If you are hosting with a VPS or other setup where you have server admin access, you can contact your web host and request that they install APC on your server (it’s free) and then it will be available to you as a very fast method for Object Caching. Generally you cannot install APC on a shared hosting environment. APC stores the cached values in RAM, which is why I recommend at least 2GB of RAM for ideal server performance.
Once your web host has confirmed that APC is installed and working, you will then need to enable it for WordPress with a plugin. My recommended method is with the APC Object Cache Backend plugin (as Paul Gibbs suggested). This is not a true plugin, but rather a “drop-in” file. As such, you do not actually activate the plugin. You just need to copy the object-cache.php file into your /wp-content/ directory. You don’t even need to upload the actual plugin. That’s it! As long as you have APC installed on your server and have placed the file correctly, APC-powered Object Caching should now be enabled and you should begin seeing performance improvements. To confirm that it’s working, you can type this into your browser while logged in as an admin: http://www.yourdomain.com/wp-admin/plugins.php?plugin_status=dropins (change yourdomain.com!). It should show APC Object Cache as a drop-in, and if so, you now have a good caching method enabled.
May 15, 2014 at 4:22 pm #182981In reply to: How to Optimize and Maximize BuddyPress Performance
BuddyBoss
ParticipantAnd here’s a tutorial for setting up a CDN with WordPress/BuddyPress. This makes such a big difference and is really easy and cheap to set up. A no brainer.
May 15, 2014 at 4:20 pm #182980In reply to: How to Optimize and Maximize BuddyPress Performance
BuddyBoss
ParticipantHere’s a tutorial I wrote about how to enable Object Caching on BuddyPress:
Briefly:
If you are hosting with a VPS or other setup where you have server admin access, you can contact your web host and request that they install APC on your server (it’s free) and then it will be available to you as a very fast method for Object Caching. Generally you cannot install APC on a shared hosting environment. APC stores the cached values in RAM, which is why I recommend at least 2GB of RAM for ideal server performance.
Once your web host has confirmed that APC is installed and working, you will then need to enable it for WordPress with a plugin. My recommended method is with the APC Object Cache Backend plugin (as Paul Gibbs suggested). This is not a true plugin, but rather a “drop-in” file. As such, you do not actually activate the plugin. You just need to copy the object-cache.php file into your /wp-content/ directory. You don’t even need to upload the actual plugin. That’s it! As long as you have APC installed on your server and have placed the file correctly, APC-powered Object Caching should now be enabled and you should begin seeing performance improvements. To confirm that it’s working, you can type this into your browser while logged in as an admin: http://www.yourdomain.com/wp-admin/plugins.php?plugin_status=dropins (change yourdomain.com!). It should show APC Object Cache as a drop-in, and if so, you now have a good caching method enabled.
May 14, 2014 at 9:45 pm #182929In reply to: [Resolved] BuddyPress Activity page as Homepage
mth75
ParticipantI did a test on a clean wordpress/buddypress/bbpress install, same problem (no plugins except buddy press/bbpress).
Thx for the tip, i’ve planned to look into this one in new release (parallel to a new buddyboss rel.).
In the meantime I’ve created a ticket … this is a bug.
https://buddypress.trac.wordpress.org/ticket/5643
Very nice corporate site btw, we don’t have those vista’s here in the Netherlands.
May 14, 2014 at 9:31 pm #182926In reply to: [Resolved] BuddyPress Activity page as Homepage
mth75
ParticipantThx for looking Julian. I did check with Buddyboss (they are great indeed). I tested with a none Buddyboss theme/install (wp 2013 en 2014) … same problem. It’s most definitely a Buddypress issue.
The guys from Buddyboss made a note of my problem, but I won’t hold my breath for this one.
Can I elevate this problem as a bug?
Best regards,
Marc
May 14, 2014 at 9:22 pm #182924In reply to: [Resolved] BuddyPress Activity page as Homepage
julianprice
ParticipantDid you check with BuddyBoos maybe they would know better. I did go to search since I don’t know Dutch I searched “Jupiter”. & got sent to activity page than try to show Posts but nothing for the results.
Maybe look at your widgets for search posts. Also it could be something with you making your home page something other than a static page and/or recent blog posts.
BuddyBoss are suppose to be great so I would probably ask them.
May 7, 2014 at 2:14 pm #182600In reply to: BuddyPress theme – Looking for ideas
Aron Prins
Participant@bphelp
But this has nothing to do with the bp-default theme? This is a theme that is based on twitter bootstrap customized to match with a buddypress site. It also works with WordPress that has no BP enabled…I feel that there are just a few really good themes for BuddyPress out there like BuddyBoss and recently InspireBook by rtCamp. Im looking to contribute to that list 😉
Cheers,
AronApril 21, 2014 at 3:15 am #181828palmdoc
ParticipantNot happening for me too. On Buddyboss 3.1.7 – will report to the developers
April 18, 2014 at 10:49 am #181653sharmavishal
ParticipantView profile is working for me…checked with bp default and buddyboss theme
April 15, 2014 at 8:03 am #181277In reply to: BuddyPress 2.0 RC1 Feedback
sharmavishal
ParticipantThe pleasure is all mine..indeed an honor to be interacting with you.
Just did a fresh install of Buddypress and stil the same issue remains…
http://domain.com/username/settings/profile/ is blank with the BP default theme…
strangely the above page works with buddyboss theme..anyway to debug this?
Also i dont see “delete account” in the settings menu in the wp-admin bar in BP 2.0
thanks once again
March 31, 2014 at 8:29 pm #180576In reply to: Stop BuddyPress SPAM
culsire_ceo
ParticipantI’m trying the coding from BuddyBoss I’ll let you know if it helps
March 31, 2014 at 3:54 am #180534In reply to: scalablity of buddypress
thatmtnman
ParticipantDear Mr. Buddyboss…
Once again, thank you so much for the informative and specific reply. Two gigs of ram it shall be!
I wish I could attend your lecture…I really do. I’ve not been to a WordPress/Buddypress anything yet, and I am dying to go. Absolutely dying. I want to get far more involved with the WordPress/Buddypress company/community. We are both students (married, older etc) and are living on student loans…so for now, travel for us is limited to the bus 🙁
I have another question unrelated to capacity-should I start another thread, or may I ask it here?
cheers!
March 30, 2014 at 8:10 am #180508In reply to: 2.0 top features – ideas
SK
Participant@buddyboss no inevitability there. Check out many responsive table solutions http://css-tricks.com/responsive-data-table-roundup/
@mercime C’mon! Even Chris Coyier (the first ever to try making a table responsive and author of the article you have linked) himself admits that there is no good solution to make tables responsive. The article essentially lists a bunch of hacks that people have tried in order to somehow make the table layout somewhat work on small screens. Nobody cares that much for tablets (yet) but mobile screens are becoming more important every day. And tables are not suitable for mobile devices (there might be task-specific hacks, but there is no general-purpose solution). We can’t stay in denial about this for very long.March 29, 2014 at 11:46 pm #180491In reply to: scalablity of buddypress
thatmtnman
Participantthank you buddyboss! How much ram do you feel would be adequate.
I guess the other thing is, a CDN is going to be acting like a cache, and so, since a buddypress site can’t use cache any way (or it serves stale content) things like W3 etc should not be part of the install?
cheers
March 24, 2014 at 9:34 pm #180250shanebp
ModeratorMarch 21, 2014 at 7:02 pm #180104In reply to: Notifications tab seems to break site
shughey
ParticipantI’m having the same problem so I tried using your fix but something is wrong. I don’t have:
elseif ( bp_is_user_forums() ) : bp_get_template_part( 'members/single/forums' );
I have:
elseif ( bp_is_user_forums() ) : locate_template( array( 'members/single/forums.php' ), true );
Using WP 3.8.1 and Buddypress 1.9.2
March 17, 2014 at 5:33 pm #179912In reply to: Notifications tab seems to break site
devlopez
Participant@buddyboss indeed is the buddyboss. Thank you for the fix, my theme does not break down now.
-
AuthorSearch Results