Search Results for 'buddypress'
-
AuthorSearch Results
-
October 24, 2010 at 3:49 pm #96322
Roger Coathup
ParticipantDid you look in the documentation section before posting, or use the search?
This has been covered many times in the forums, and there are sections to read in the Codex Documentation on how to check your site is configured properly.
October 24, 2010 at 3:46 pm #96321rich! @ etiviti
Participanthave them check their spam folder (and proper host config for sending email – maybe the host has trouble with users sending out spam)
buddypress rules for usernames
`
if ( !validate_username( $user_name ) || in_array( $user_name, (array)$illegal_names ) || $user_name != $maybe[0] )
$errors->add( ‘user_name’, __( ‘Only lowercase letters and numbers allowed’, ‘buddypress’ ) );if( strlen( $user_name ) < 4 )
$errors->add( ‘user_name’, __( ‘Username must be at least 4 characters’, ‘buddypress’ ) );if ( strpos( ‘ ‘ . $user_name, ‘_’ ) != false )
$errors->add( ‘user_name’, __( ‘Sorry, usernames may not contain the character “_”!’, ‘buddypress’ ) );/* Is the user_name all numeric? */
$match = array();
preg_match( ‘/[0-9]*/’, $user_name, $match );if ( $match[0] == $user_name )
$errors->add( ‘user_name’, __( ‘Sorry, usernames must have letters too!’, ‘buddypress’ ) );
`October 24, 2010 at 2:58 pm #96318In reply to: create theme
Tammie Lister
ModeratorThe question of ‘how to create a custom theme’ is a fairly open ended one. My advice would be start with creating child themes of the parent theme. As Chouf1 already said the codex is a great place to start. You may also want to look at how others have done things and learn by example for instance here: https://buddypress.org/extend/themes/. If I was going to advise someone on how to learn I’d say you have to first off do a child, add a widget area.. learn about what CSS does what maybe using something like firebug to do inline changes and learn. If you’re looking to do a total fresh take non default theme then you want to follow the more methodical process of creating image > XHTML / CSS > theme when learning. By having your end goal from the start you can focus the things you will need to learn and apply.
October 24, 2010 at 2:53 pm #96316In reply to: What is this theme?
Tammie Lister
ModeratorYou may find the widget version of default by modemlooper https://wordpress.org/extend/themes/buddypress-widget-theme gets you on the right track otherwise you can fairly easily add widget areas to your theme or use something like the 3 column or other default themes. Have you checked out a few of the default variations right here: https://buddypress.org/extend/themes/ ?
October 24, 2010 at 2:38 pm #96315In reply to: What’s this image ?
rich! @ etiviti
ParticipantOctober 24, 2010 at 2:38 pm #96314In reply to: Creating/Finding a PHP Error Log
Rukario
ParticipantI’m sorry, I finally found https://codex.wordpress.org/Editing_wp-config.php#Configure_Error_Log
but even that didn’t help. I don’t understand why my website is being so stubborn. BuddyPress worked flawlessly on my test server. I mean, I would have expected a little error here and there with maybe some quick fixes. I’ve been at this for weeks and it’s starting to get ridiculous. I might have to change hosts or find a different social community setup. I’d really hate to not use BP though, it’s so amazing and the best free one I’ve ever seen.
EDIT
Problem solved. All I had to do was set the WP_DEBUG to true in the WP_Config file and the errors showed up.October 24, 2010 at 2:22 pm #96313In reply to: Widget-Logic & Default theme not working?!
fracanz
ParticipantI changed the syntax for the one BP uses and the plugin is working so far.
For example, instead of using the standar conditional tags !is_page(‘register’) try !bp_is_register_page() in order to prevent a widget to show up in the sidebar when a user gets to “yourdomain.com/register”
A full list of functions to determine the current page can be found at https://wordpress.org/support/topic/buddypress-and-widget-logic (thanks to alanft)
I hope this may helpOctober 24, 2010 at 2:10 pm #96309In reply to: 1.2.6 Upgrade – Lost translation
Waclaw Jacek
ParticipantDear Mark!
I have just installed BuddyPress 1.2.6 along with WordPress 3.0.1, installed translations for both and put `define (‘WPLANG’, ‘pl_PL’);` inside wp-config.php. Everything seems to work fine, even if only the BuddyPress translation is in place.
October 24, 2010 at 12:50 pm #96304In reply to: Activity Stream Problem
eek
MemberSOLVED:
“If you are using buddypress and you have your privacy settings set to block search engines, blog posts will not show up as part of the activity stream
Hope this little bit of advice will save someone a few hours of sweat pouring, banging-head-against-wall agony.”
October 24, 2010 at 12:49 pm #96302eek
MemberI love you man!!!
:D” title=”>:D” class=”bbcode_smiley” />< God dammit, i have trying EVERYTHING, and i couldn't have solve this in anyway, your answer WAS GOLD!!!!October 24, 2010 at 12:36 pm #96301In reply to: Blocks on Frontpage
pcwriter
ParticipantIf I’m not mistaken, I believe you’ve been inspired by http://www.workathomemommies.com/

If you want to learn how to widgetize a page so you can put whatever you want on it, here’s a great tutorial:
http://wpmu.org/how-to-widgetize-a-page-post-header-or-any-other-template-in-wordpress/If you just want to style the appearance of blog posts on your frontpage, you can do that through CSS.
There are any number of great resources and tutorials in the vast wilderness of cyberspace to help you learn what you need to know. To help you identify exactly what you need to change in your theme’s CSS to get the effect you want, I highly recommend installing the Firebug for Firefox addon:
http://getfirebug.com/Hope this helps!
October 24, 2010 at 12:18 pm #96299In reply to: Update permalinks in activity stream
Roger Coathup
Participant@pcwriter – Yes, the performance thing was interesting.
Quoting his SEO recommendations ( @mikey3d) as though he were an authority, wasn’t so clever.
Here’s a link from seomoz.org (they make their money knowing about SEO): http://www.seomoz.org/knowledge/url – they are also open to reasoned debate about whether they are right or wrong!
—
As for your link problem – that’s because your activity stream items are ‘compiled’ when the activity was created – not when it is displayed – when it was created, you had your old permalink structure (so, that’s what got displayed).
It’s more luck, rather than design, that Otto’s permalink structure also maps your old permalink structure to the same pages as your new structure. I’d happily take the lucky break though!
My thoughts:-
If you don’t have a lot of activity already, and don’t expect a huge huge site (with performance worries!) – then go for the SEO friendly (/%category%/%postname%/), and accept a few of the old permalinks won’t work.
If not, stick with the Otto settings that are working at the momentOctober 24, 2010 at 12:02 pm #96298In reply to: Update permalinks in activity stream
pcwriter
ParticipantI agree – of course ensuring that the main keyword is prominent in url, title & description is a good thing; that’s one of the ways SEs determine the relevance of content… and up goes the pagerank
(Otto does come off as being a “bit” opinionated on that point, doesn’t he?)But he does illustrate a valid point about performance and WordPress’ rewrite rules. Here’s an interesting discussion on trac about URL routing, and how to improve same (over my head, but interesting nonetheless):
https://core.trac.wordpress.org/ticket/12935October 24, 2010 at 9:41 am #96288In reply to: Largest BP community site?
Paul Wong-Gibbs
KeymasterI don’t know of any large BuddyPress sites that share their traffic, unfortunately.
October 24, 2010 at 9:39 am #96287Paul Wong-Gibbs
KeymasterYou probably need to update your theme. If you built it yourself, take a look at https://codex.buddypress.org/extending-buddypress/bp-default-theme-changelog/, otherwise ask the person who built it for you.
October 24, 2010 at 8:54 am #96286colage
MemberCreate groups is also missing for me now… and it wasn’t before. I’m so confused and exhausted!
http://colage.dreamhosters.commark
October 24, 2010 at 8:38 am #96285In reply to: Editing profile redirects to homepage?
Roger Coathup
ParticipantAnd is it the activated theme on your BuddyPress site?
Do the other BuddyPress links work.. Members, groups, activity?
Hover over your profile link – which URL is it trying to send you to?October 24, 2010 at 8:20 am #96282Roger Coathup
ParticipantTry changing your permalinks to /%category%/%postname%/
Can you do that, or do you get an error message?
If successful, do BuddyPress links now work
If not, you need to configure your server correctly for WordPress before using BuddyPressOctober 24, 2010 at 8:16 am #96281In reply to: Editing profile redirects to homepage?
Roger Coathup
ParticipantHave you installed / activated a BuddyPress compatible theme, eg bp-default, on your BuddyPress site?
October 24, 2010 at 6:20 am #96276In reply to: Notification Problem
Driftless
ParticipantI’m noticing this behavior as well – even though it was ‘fixed’ in April … https://trac.buddypress.org/changeset/2921
Don’t know if that fix was included in the latest release?
October 24, 2010 at 5:38 am #96274In reply to: After bp 1.2.6 upgrade No admin bar for guest
anindyaray
Member@hnla thanks hnla for your response …
Yes I have checked , Its working ok with BP default theme …
I’m using Blogs-mu theme , and after updating I am seeing this problem , even when admin bar is disabled for guests that white space is visible ?
as for details what would be required ?
as for example here is the screen shot for the home page of my website , in the image look just below the address bar , a white space is visible ?
http://img153.imageshack.us/img153/4278/whitespaceu.jpgwhat more detail can I provide ? please mention
ThanksOctober 24, 2010 at 5:35 am #96273Driftless
ParticipantWoohoo! Persistence pays… Once again, thanks to boone and r-a-y
Found the solution here: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/changing-group-tab-display-defaults/#post-55449
Wraped it all in a
`if ( groups_get_groupmeta( $bp->groups->current_group->id, ‘forum_only’ ) ) {`
wrapper – and we’re golden.
Now back to the easily-changeable groupmetadata thing…
October 24, 2010 at 3:44 am #96269Charlie Gordon
ParticipantHi again, I’ve been trawling through the forums and it looks like my problem is the same as this one: https://buddypress.org/community/groups/installing-buddypress/forum/topic/buddypress-and-pathinfo-almost-pretty-permalinks/
is there a solution for this already?
Thanks!
October 24, 2010 at 3:22 am #96268Driftless
ParticipantI see a partial solution here:
The only other things I need to complete the process is a way for the end-user to easily set groupmeta. Can’t have em mucking about in the db now can we…
Thanks
October 24, 2010 at 3:22 am #96267In reply to: Update permalinks in activity stream
pcwriter
ParticipantThanks for the link to that excellent post by Otto! Very educational reading.
I’ve updated my permalink structure following Otto’s recommendations (and WP’s rules) and guess what… even though activity stream item URLs don`t appear to have changed, the new structure redirects instantly to the proper post.
Thanks again!
-
AuthorSearch Results