Search Results for 'wordpress'
-
AuthorSearch Results
-
April 29, 2010 at 3:53 pm #75975
In reply to: Function Details
Brajesh Singh
Participanthi try this plugin for redirecting to profile page after login
https://wordpress.org/extend/plugins/bp-redirect-to-profile/
It should work with single wp too, if it does not, please let me know, I will update the plugin.For clicking on home link, please create a child theme, copy the header.php from bp-default to your child theme and modify it.
Change the line which says Home in the navigation, It’s anchor url to bp_loggedin_user_domain() from site_url().Hope that helps.
April 29, 2010 at 3:39 pm #75973In reply to: Function Details
JPS Bhullar
Participantredirection after login in WOrdpress not wordpresss mu..which function to use
April 29, 2010 at 2:18 pm #75949Ipstenu (Mika Epstein)
ParticipantIt took me a while to think about this.
I mostly like it, but the ‘faded’ quality of the colors is weirding me out.
- Text in the forums is a little … small. Compare it to wordpress.org and notice how their text is a little darker and larger. That is much easier to read for the majority of people, I’d think.
- The blue for links should be darker
- The grey for alternate posts is a great background color. Don’t change.
- The TEXT in the post-reply form is too light.
- The text in the Post Reply button is similarly too light.
The other thought I have is hard to quantify, but I’m going to say it anyway. Something about the GROUPS makes it feel like a hobby site, rather than a serious ‘business’ site (yeah, I said it). I’m not sure if it’s the rounded corners missing, or the general paleness of the site, but something feels off. Casual.
Yeah, that were crap feedback. Sorry.
(Oh and the fact that HTML isn’t working? Like I put LI and UL in this post and it’s borked? Is frustrating.)
April 29, 2010 at 6:28 am #75908In reply to: BuddyPress.org’s Unified Search – How can I get it?
Andy Peatling
KeymasterI did it with just a template. Copy and paste the members, groups, forums, and activity loops into a new template file. Add the parameter ‘search_terms=’ . esc_html( $_GET ) to each of the loops and then create a new WordPress page called search and assign the template file to it. Then just pass ?f=searchterms to the URL and bob’s your uncle.
April 29, 2010 at 2:54 am #75891In reply to: [New Plugin] CubePoints Buddypress Integration!
Tosh
Participant@vee_bee I’m using the BuddyPress Template Pack Plugin with my Single Install WP. So I updated my:
wp-content/themes/fusion/members/single/member-header.php file with this and it works great. Shows the points for the member your viewing at the moment. Tried to get the donate link to work as well. But no success just yet.These forums don’t allow you to embed code like the wordpress.org forums I guess. In the echo’s I’m just surrounding it with a bold tag
<?php
// Cubepoints for current user
echo ““;
if(function_exists(‘cp_displayPoints’)){
global $bp;
cp_displayPoints($bp->displayed_user->id);
}
echo ““;
// END Cubepoints
?>So how it displays on mine is:
User @user
1635 pointsactive 6 hours, 32 minutes ago
Cancel Friendship
Mention this User
Send Private MessageApril 28, 2010 at 11:56 pm #75859In reply to: Extending Groups
John James Jacoby
Keymaster@techguy The philosophy for wide-spread adoption is to not create any additional tables, and use meta whenever possible. This way you can rely on the internal functions of WordPress and BuddyPress to get and set that data, and you don’t have an upset site admin that needs to figure out where to put that table, how to cache it, how to serve it across multiple servers, etc…
I also think it depends on the scope that you need to achieve. The Groups API works really well for just about anything that you would want to plug into the groups component, but at the same time there can also be a need for totally 100% custom jobs where even the built in functionality doesn’t work for your application, in which case a totally custom theme might be in order.
All in all, I usually start with a custom plugin, that relies on the Groups API and group meta, and only use wp_sitemeta/wp_options if it’s a blanket default setting for all groups that can be changed by the site administrator.
April 28, 2010 at 10:03 pm #75827In reply to: put some conditions and redirection upon login
Brajesh Singh
ParticipantEither .htaccess or if that is uncomfortable, you can use some code and checkout for referrer at any of the wordpress actions like “wp” or “init” or anything else. Check for the original referrer and then redirect if the origin is not your site.
April 28, 2010 at 9:15 pm #75819In reply to: BuddyPress.org’s Unified Search – How can I get it?
r-a-y
KeymasterIf you don’t mind dabbling with BP code… sitewide search could be implemented like this (I say “could” because I haven’t tried it yet).
First a form needs to be created with an input field. Then, you’d need to create a new page (in BuddyPress or a page in WordPress with a page template) and add a bunch of BP loops that checks for the same input field variable.
April 28, 2010 at 9:02 pm #75818In reply to: Can you customize the Activity stream page?
pcwriter
ParticipantTry Modemlooper’s widgetized theme as a child theme of bp-default. It might be just what you’re looking for.
April 28, 2010 at 7:35 pm #75789manitas
ParticipantThanks for your reply.
I have tried with this line
define(‘COOKIE_DOMAIN’, ‘localhost.localdomain’);but unfortunately it doesn’t work.
By the way, it doesn’t seem to come from buddypress because wp3 has the same behavior without buddypress. That’s why i just post the same topic on wordpress.org
Thanks again
April 28, 2010 at 7:30 pm #75788In reply to: Forums setup is empty
Mika H
ParticipantHI again and thanx for supporting,
I really dont see where u say i can find the ” groups” in my admin panel of wordpress site.
See picture, where should i go exactly to find this though i cant find anything in the logical place for me to look, as in “Buddypress>>Forums setup”see picture:
http://yfrog.com/jqwpprobljPlease advice.
April 28, 2010 at 7:08 pm #75774In reply to: Hide Admin
Brajesh Singh
Participanthi @r-a-y is_site_admin() and is_admin() are very different. is_admin() checks whether you are inside wordpress admin or not.
@scotm
How about making the activity of admin user private
`add_filter(“bp_activity_hide_sitewide_before_save”,”make_admin_activity_private”,10,2);
function make_admin_activity_private($hide_sitewide,$activity){
//get the current activity
if(current_user_can(‘manage_options’))//user is admin
return 1;
else
return $hide_sitewide;}
`
Hopefully the code goes through this forum.April 28, 2010 at 7:06 pm #75772In reply to: since installing bp new users can not sign up
José M. Villar
Participant@Anthony why don’t you check if “allow new registrations” is enabled at “options” under “site admin” in your wordpress backend ? Read the same question today and provided the same answer, let’s hope it is the same problem !
April 28, 2010 at 6:58 pm #75769NY Law
ParticipantI am really a big fan of buddypress.
April 28, 2010 at 6:54 pm #75767In reply to: [New Plugin] CubePoints Buddypress Integration!
Tosh
ParticipantThanks, glad people are finding it useful!
I’ve been using it on my own site for a while now. So I thought I’d share the plugin love.
Please rate the plugin and vote if it works for you.April 28, 2010 at 6:39 pm #75759In reply to: Buddypress version of wordpress 'mystique' theme?
k33n
ParticipantLooks solid, would love to check it out.
April 28, 2010 at 6:16 pm #75749In reply to: [New Plugin] CubePoints Buddypress Integration!
jaxster
ParticipantHi Tosh,
What’s the easiest way for my users to view their points? I can’t seem to find a link on my profile page or the buddypress admin bar? Or is the only way to view your points is to go to the WordPress admin pages?sameast
ParticipantHi Boones
I using Version: 0.2.1 with a wordpress 2.9.2 installation. Yes its happening on everything i have only got extend profile enabled within component settings.
April 28, 2010 at 12:46 pm #75677In reply to: Password strength feature
stwc
ParticipantThere’s one in /wp-admin/profile.php in the WordPress dashboard. Presumably you could look at how that’s working, and just reuse the code in your register.php in your child theme.
April 28, 2010 at 12:36 pm #75675In reply to: Odd blank sections in WP admin after installing BP
Jeff Sayre
ParticipantIt looks like you need to increase the allocated memory limit for PHP. Depending on the way your hosting company has set up the servers, you might be able to do this yourself. If you’re on a shared hosting package, they might not allow you to increase the memory limit.
I suggest contacting technical support at Rackspace and tell them about the error message. Then ask them what is set in the server’s php.ini file for the value of the memory_limit directive. If Rackspace allows for this value to be overridden by Apache, then you can easily tell php to use more memory by adding this to the very top of your .htaccess file.
### Set PHP Memory Directive ###
php_value memory_limit 60M
As a final check, make sure that your site is running PHP5. Although WordPress does run under PHP 4, it also runs under PHP 5 and that is always better.
If this is all foreign to you, then perhaps Rackspace will do it for you.
April 28, 2010 at 11:35 am #75666In reply to: (solved) BuddyPress not working as it should.
Paul Wong-Gibbs
KeymasterFor that to work as intended, you also need to set WP_LANG in your wp-config.php and load a nBb_NO translation for WordPress.
April 28, 2010 at 8:36 am #75650finni3
ParticipantMaybe you will find this info from the Google SoC site interesting @derekbolden:
Student Name: Kunal Bhalla
Mentor Name: John Jacoby
Title: Events Plugin for WordPress and BuddyPress
Abstract: Events have become an integral part of Social Networking; this plugin would also be useful for WordCamp.org – allowing people to handle WordCamp registration through the WordCamp site itself, etc.This plugin will provide basic event functionality for plain vanilla WordPress installs and enhanced capabilities for BuddyPress installs by leveraging the new WordPress Custom post types and moving on from that.
Source: http://socghop.appspot.com/
April 28, 2010 at 7:42 am #75647In reply to: How can users add a new post in buddypress?
@mercime
ParticipantAnyone tried using Posthaste Plugin or the TDO mini-forms with BP posting yet?
April 28, 2010 at 6:12 am #75638In reply to: BP Album+ || New Features Requests and Discussion
foxly
ParticipantJust use version 0.1.7, currently on the WordPress plugin repo. It’s reasonably stable and thousands of people are using it on their sites.
As for when version 0.1.9 will be ready for full scale distribution, that’s difficult to predict.
Software development is a nonlinear process. It’s not like we compile a list of features, know exactly how many lines of code each one will take, and then work through them at exactly X lines of code a day. Some days we make huge process, and other days we don’t get anything written because we’re researching something that isn’t working correctly.
Still, we have two programmers working all day every day on this plugin, and we’ve gone from zero to “pretty darned good” in less than 5 weeks. So if we can hold that rate of progress, we should have something “epic” reasonably soon.
I’ll see if I can post some screen caps later to show you guys what we’re working on.
^F^
April 28, 2010 at 5:30 am #75633r-a-y
KeymasterNow this is just my honest opinion, but I wouldn’t get it (this isn’t a slight against Lisa).
If you glance the TOC, it’s more of an introduction to BP, which is great if you don’t know anything about WordPress or BuddyPress and you’re just diving in. And, you’re right, you can find most of this info online.
If you are an intermediate developer (or if you’re experienced with WP), you can learn as you go and dig through the BP code and other BP plugin’s code.
FYI, WPMU.org is not an affiliate site.
-
AuthorSearch Results