Search Results for 'wordpress'
-
AuthorSearch Results
-
March 8, 2010 at 2:09 am #67162
In reply to: Bug: BuddyPress to WordPress profile syncing broken
paulhastings0
ParticipantI’m not going to let this one die.
March 8, 2010 at 1:37 am #67157In reply to: New plugin: BP Group Management
Anointed
Participantsorry boone it’s an old update. I should have mentioned that.
I added another person to the group just now and their avatar showed up, so it’s fixed… thank you
I’m curious if you have any plans of adding the ability for the admin or moderator to add members who are not friends to a group via the front end instead of the back end.
Basically I am doing everything I can to keep people away from the back end of wordpress. I plan on having a lot of moderators for bp, who really should have no reason to ever see the back end if possible.
If not, no worries, the plugin works perfectly as it is. a HUGE thank you!
March 8, 2010 at 1:36 am #67156In reply to: Hopped Up Beer
abfinteractive
ParticipantHi dpee,
We are using the plugin found here: http://www.myreviewplugin.com/
I HIGHLY recommend it. The support is amazing (we have found a few bugs and they were fixed within a day). It is the best WordPress review plugin hands down.
March 7, 2010 at 11:09 pm #67143In reply to: Widget areas for Groups, Forums, etc
March 7, 2010 at 10:59 pm #67142In reply to: 500 Errors (1and1 webhost)
ravetildon
MemberI use 1and1 for a couple of my sites…
From what they tell me, 1and1 will not work with most wordpress or wordpress mu sites because they only allow php limited amount of memory.
You can change the memory in php.ini and if you use phpinfo it will show up as 64mb, but at the server level they have it configured for this:
These are the following restrictions on our “Linux shared business” hosting packages.
A process may only use a CPU at 100% for 6 seonds
A process may use a maximum of 12 mb of RAM
A maximum of 12 process to be run at any 1 time
They do have a shared developer package with a lil better memory, but you’ll probably still get the issues…
March 7, 2010 at 10:55 pm #67141In reply to: Can't go into wp-admin
miguelaqp
MemberCan somebody help me please?
I’m using one database to hold 6 different WordPress Blogs. I decided to put in one of them BuddyPress, and now I can’t go in like an administrator in this Blog. All others are functioning okay, so I believe the problem is only with themes or something like that on this blog. Something that was caused by BuddyPress installation. When I try to access to: http://www.aqplink.com/sanmartin70/wp-admin/ it tells me that I don’t have permission to access to this page. What should I do? All was working fine, until I install BuddyPress, so it is something that I didn’t take care of. I didn’t read too much after I saw a messages that encourage to install, because even our grant mother could install it without problems. And since I’m used to install plugging without any precaution…I closed my eyes and proceed…
Please help me.
March 7, 2010 at 10:25 pm #67132In reply to: Widget areas for Groups, Forums, etc
Paul Wong-Gibbs
KeymasterIn your theme/child theme, you just need to add new widget areas in, same as any regular WordPress theme. I’m not a theme expert but have a look at http://www.themelab.com/2008/04/18/see-how-easy-it-is-to-widgetize-wordpress-themes/ under “Multiple Widget Ready Areas”
March 7, 2010 at 10:23 pm #67131In reply to: Create New Blog is gone
marketingjeff
MemberI don’t even have it my options. My site was just a standard wordpress with the buddypress plug in.
March 7, 2010 at 2:59 pm #67095In reply to: how do i disable members from creating groups?
rich! @ etiviti
Participantonly problem with removing the link:
<?php echo bp_get_root_domain() . '/' . BP_GROUPS_SLUG . '/create/' ?>someone could still access the url directly to start the process.I went ahead and created a plugin (waiting on repo request on wordpress.org) to disable the steps and show a ‘new groups creation is closed’ message. Also added in a midlevel-cap to allow another set of users the ability to create private/hidden + w/forums. I may expand this to restrict other steps in the group creation process (as other plugins using the group extension api may add in their own step)
Basically the plugin removes the $bp->groups->group_creation_steps – adds in a custom position 0 step to display a closed page.
March 7, 2010 at 2:25 pm #67094Andrea Rennick
ParticipantIf it’s related to user blogs, you’re better asking over at the wpmu forums,
https://mu.wordpress.org/forums/view/all-topics
Where there are plenty of topics discussing just this very thing. (Yes, it’s possible, yes there are plugins)
March 7, 2010 at 1:48 pm #67092In reply to: Most effective/stable events plugin?
MrMaz
ParticipantIf you guys can agree on an existing GPL events plugin that works in WordPress I might consider extending it or forking it to work with BuddyPress. The one that David Lewis mentioned looks promising, and I would probably fork that one since it hasn’t been updated for 9 months (depending on what the author has to say).
March 7, 2010 at 6:52 am #67081In reply to: BuddyPress AND Community Blog
Mariusooms
ParticipantThe GroupBlog plugin does not fit into that structure really well. While it does some of it, it really is going a different direction in its approach. You’d be best to take a look at this plugin:
https://wordpress.org/extend/plugins/bp-community-blogs/
It is no longer under development for a year and will not be updated either. It will not work with 1.2, but it does do what you desire. You could at least use that as a starting point and port the code to bp1.2.
March 7, 2010 at 4:05 am #67072MrMaz
Participantquery_posts() is expecting an array to passed to it for the arg ‘category__not_in’. It looks like you are passing it a string of ids separated by commas. get_exclude_categories_loop() should be returning an array.
query_posts(array('category__not_in' => array(2,6)));See multiple category handling here:
https://codex.wordpress.org/Template_Tags/query_posts
This is not valid PHP:
<?php
query_posts(array('category__not_in' => array(get_exclude_categories_loop))); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>This is:
<?php
query_posts( array( 'category__not_in' => get_exclude_categories_loop() ) ); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>March 7, 2010 at 1:36 am #67065In reply to: Most effective/stable events plugin?
David Lewis
ParticipantI was actually going to use this one since I don’t need registration or payment: https://wordpress.org/extend/plugins/calendar/
March 7, 2010 at 12:55 am #67062In reply to: BuddyPress admin bar is not showing on site
gaysurfers
ParticipantI am using WordPress 2.9.2.
March 6, 2010 at 11:06 pm #67055In reply to: BuddyPress-Links 0.3 FINAL is here at last
MrMaz
ParticipantYou are correct, that is a bug. Thanks for the report.
You can change that manually, or check out the 0.3 branch, as I have just committed that fix…
svn co https://plugins.svn.wordpress.org/buddypress-links/branches/0.3
Thanks!
March 6, 2010 at 9:48 pm #67048schwooba
ParticipantYou could try this WordPress plug-in…’wp-members. Works for me.
March 6, 2010 at 8:41 pm #67041In reply to: Testing new theme, Hybrid as a parent
thekmen
ParticipantJust uploaded a slighter newer version with some CSS updates & support for the BuddyPress Links plugin.
http://xfactor-blogs.com/downloads/
@Arun thanks for pointing that out, will fix it on the next update.
March 6, 2010 at 7:51 pm #67037In reply to: How to search other than members and groups
r-a-y
KeymasterThere’s a plugin for group tags, but that categorizes the groups and not the activity content:
https://wordpress.org/extend/plugins/buddypress-group-tags/
Andy mentioned that the code for global activity search exists, it just needs a frontend.
March 6, 2010 at 5:54 pm #67025In reply to: Facebook-Like-Chat Plugin for Buddypress?
m@rk
ParticipantThanks Dfa327… but where to download? The repository at wordpress.org doesn’t seem to be updated?
March 6, 2010 at 5:06 pm #67018In reply to: Turn off links for profile fields
Boone Gorges
KeymasterThanks for the plug, Erich

https://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/ is the plugin you’re thinking of. I updated it about a week ago to work on versions of BP 1.2+ (though you should definitely let me know if it does not work!).
@Nick – the plugin will do what you want. Check out the readme file, which will explain how to make it work.
@gregfielding – That’s a good idea, but at the moment BP is not set up in a way that makes it easy to create those check marks with a plugin. Maybe I’ll submit a core patch that does it, as I’d like to see it too.
March 6, 2010 at 4:37 pm #67016In reply to: Most effective/stable events plugin?
peterverkooijen
ParticipantIn my site I use this plugin. It has all the basic functions I need – RSVP, confirmation emails, payment bridge, etc. – but the interface is a mess. It also has no BP integration, but I don’t really need that in my project.
I had planned to restructure, rewrite and expand the plugin, also including the excellent jQuery plugin FullCalendar. I’m very interested to see what Erwin and Marius Ooms come up with! A connection with groups, Buddypress’ killer app imho, sounds like a great idea as well.
But for my project I really need a solid event management tool, like a self-hosted version of eventbrite.com, integrated with the BP members database. I don’t really need a solution that allows members to create events or put stuff on a calendar.
Will Erwin and Marius solutions be an event management tool or more like an expanded community calendar? I’d encourage them to look into the EdgeTechWeb plugin…
EDIT:
Actually, the EdgeTechWeb plugin is really ugly. I need alternatives…
Advanced Events Registration (based on EdgeTechWeb’s…?)
…
March 6, 2010 at 2:42 pm #67004In reply to: new version of BuddyPress Rate Forum Posts
epsi
ParticipantI like to try any plugin and, hei…
@Dwenaus, this Rate Forum Posts plugin looks cool.It is fine in my localhost but I found this error in live site
http://iluni-ftui.org/groups/situs-iluni/forum/
WordPress database error You have an error in your SQL syntax;
check the manual that corresponds to your MySQL server version for the right syntax to use near
‘WHERE object_type = ‘bb_post’ AND meta_key = ‘rfp_rating’ AND object_id = 1′ at line 1 for query
SELECT meta_value FROM WHERE object_type = ‘bb_post’ AND meta_key = ‘rfp_rating’ AND object_id = 1
made by require, require_once, do_action, call_user_func_array, bp_core_do_catch_uri, load_template, require_once, locate_template, load_template, require_once, do_action, call_user_func_array, rfp_after_topic_title, rfp_get_post_rating_signed, rfp_get_post_rating
It solved by adding code below in rate.inc.php
require_once ABSPATH.’bb-config.php’;
global $bb_table_prefix, $bb_meta_table;
$bb_meta_table = $bb_table_prefix . ‘meta’;
Thanks for the plugin.
Now it works. But since I’m still a WP noob.
I don’t know if it is politically correct.
March 6, 2010 at 2:28 pm #67003Okfalls
ParticipantHi to all those people that watched at at times gave me feedback on my troubles getting BP to work on my site. The short answer… I had BP installed on my “localhost”. So what I finally ended up doing was to export my localhost SQL and then imported it to my server at Powweb. It worked… Now I am just tweaking my install and ironing out the way I would like the site to look.
So to those that watched and answered my hiccups “thank you” I appreciate you taking the time to pass on your expertise.
All the best,
Rod
March 6, 2010 at 10:04 am #66984In reply to: Turn off links for profile fields
Nick Watson
ParticipantHmm well, I did a search, and that name seems very familiar, but it appears that it’s the same plugin as the one I have installed:
https://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/
my problem is getting them to be NOT links, unless someone uses the tags
Thanks, I think that was maybe the old name for it??
-
AuthorSearch Results