Search Results for 'buddypress'
-
AuthorSearch Results
-
November 28, 2010 at 9:18 pm #99410
In reply to: Forums Not Working – Error when creating topic
Virtuali
ParticipantHOLY CRAP, @hnla, it worked!!!!!!!!!!!
Thank you so so so so so so so much!
Now Will I need to do this on every single group???
November 28, 2010 at 8:51 pm #99409In reply to: Mapology is available
Anonymous User 96400
Inactive@neosmedia
Sorry for the delay in getting you set up for the support forum. It was the weekend after all
I’ve already made you a member of the Mapology group. Please post your questions over there. Thanks!November 28, 2010 at 6:59 pm #99406kkeller22
MemberHello,
extended profiles is enabled. I am using the default buddypress theme. I have permalinks set to non-default. Does it have anything to do with my blog not being my main page (instead of pangeastable.com it is pangeastable.com/my-palate). I’m thinking it may have something to do with the permalinks but I have no idea where to begin correcting this. I’m using yahoo hosting so you can install wordpress through our yahoo admin center. I also tried installing wordpress manually and ran into the same problem.
November 28, 2010 at 6:52 pm #99404In reply to: SideBar Whos Online and Recently Active
Virtuali
Participant@eor, I do have a solution for you! Go into your theme’s custom CSS file, and add the following CSS.
Global Elements
*/}
h1, h2, h3, h4, h5, h6 {
margin: 5px 0 15px 0;
}p { margin-bottom: 15px; }
p:last-child { margin-bottom: 0; }hr {
background-color:#E7E7E7;
border:0 none;
clear:both;
height:1px;
margin: 20px 0;
}img.avatar {
float: left;
border: 2px solid #eee;
}img.avatar {
background: #ffffff;
padding: 4px;
border: 1px solid #ddd;
/* Round Corners (native in Safari, Firefox and Chrome) */
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
/* Add the Shadow */
-moz-box-shadow: 2px 2px 2px #dddddd;
-webkit-box-shadow: 2px 2px 2px #dddddd;
}November 28, 2010 at 6:47 pm #99402Virtuali
Participant@guigoz, there is a plugin that allows you to put RSS Feeds into your groups. So every time a member inserts a RSS, the posts will show up on the activity stream.
Is that what you are looking for?
November 28, 2010 at 6:42 pm #99401Virtuali
ParticipantTo fix the error message, at-least for now, delete the buddypress plugin, then re-install it. Sometimes updates can screw up plugins. (especially a major plugin like buddypress)
In the future, deactivate such plugins to avoid this.
November 28, 2010 at 5:20 pm #99397In reply to: [Resolved] Sidebars left and right in a fluid theme
pcwriter
ParticipantThanks for the suggestion. I had looked at some grid frameworks, but didn’t want to go that route for this theme. I’m keeping it in mind for future projects though.
@bowromir
Bingo! Silly me and my thick head
I was working with fixed-width sidebars. Percentages didn’t even occur to me for them. Your suggestion got me going where I wanted to go with my fluid theme. Thanks a bunch!
November 28, 2010 at 4:39 pm #99394In reply to: Groupblog Plugin questions
David
ParticipantI final got what I was looking for. Here is the code if anyone wants to try it or use it. Paste it in the functions.php of your child themes. What it does is removes the orginal function for the “My Blogs” link in the admin bar and I then made my own function that calls that original function only if the user has a blog. Thus anyone that is just a subscriber to the site will not see the “My Blogs” link in the admin bar (to confuse them).
/* Removes the function from the buddypress/bp-core/bp-core-adminbar.php file in buddypress plugin*/ remove_action(‘bp_adminbar_menus’, ‘bp_adminbar_blogs_menu’, 6); /*reset the “MY Blogs” link function so that it only shows for users that have blogs and not subscribers*/ function bp_adminbar_mynew_blogs_menu() { global $bp; if ( !is_user_logged_in() || !function_exists(‘bp_blogs_install’) ) return false; if ( !$blogs = wp_cache_get( ‘bp_blogs_of_user_’ . $bp->loggedin_user->id . ‘_inc_hidden’, ‘bp’ ) ) { $blogs = bp_blogs_get_blogs_for_user( $bp->loggedin_user->id, true ); wp_cache_set( ‘bp_blogs_of_user_’ . $bp->loggedin_user->id . ‘_inc_hidden’, $blogs, ‘bp’ ); } echo ‘ loggedin_user->domain . $bp->blogs->slug . ‘/”>'; _e( ‘My Blogs’, ‘buddypress’ ); echo ‘‘; echo ‘ ‘; if ( is_array( $blogs ) && (int)$blogs ) { $counter = 0; foreach ( (array)$blogs as $blog ) { $alt = ( 0 == $counter % 2 ) ? ‘ class=”alt”‘ : ”; $site_url = esc_attr( $blog->siteurl ); echo ‘ ‘; echo ‘‘ . esc_html( $blog->name ) . ‘‘; echo ‘ ‘; echo ‘ ‘ . __( ‘Dashboard’, ‘buddypress’ ) . ‘ ‘; echo ‘ ‘ . __( ‘New Post’, ‘buddypress’ ) . ‘ ‘; echo ‘ ‘ . __( ‘Manage Posts’, ‘buddypress’ ) . ‘ ‘; echo ‘ ‘ . __( ‘Manage Comments’, ‘buddypress’ ) . ‘ ‘; echo ‘ ‘; echo ‘ ‘; $counter++; } } $alt = ( 0 == $counter % 2 ) ? ‘ class=”alt”‘ : ”; if ( bp_blog_signup_enabled() ) { echo ‘ ‘; echo ‘root_domain . ‘/’ . $bp->blogs->slug . ‘/create/”>’ . __( ‘Create a Blog!’, ‘buddypress’ ) . ‘‘; echo ‘ ‘; } echo ‘ ‘; echo ‘ ‘; } /*checks to see if the logged in user has any blogs. Saves the array values to $blogs and then saves the blog count to $blogcount. The IF statement then will be true if the value is 1 or more thus showing the link in the admin panel for the “My blogs”*/ $blogs = bp_blogs_get_blogs_for_user( $bp->loggedin_user->id ); $blogCount = ($blogs); if ( bp_core_is_multisite() && $blogCount >= 1){ add_action( ‘bp_adminbar_menus’, ‘bp_adminbar_mynew_blogs_menu’, 6 ); }If anyone has a better (cleaner) way to do this please I would love to see it. I am just in the early stage of learning php so any help would be great. Thanks
November 28, 2010 at 1:26 pm #99390In reply to: [Resolved] Sidebars left and right in a fluid theme
Bowe
Participant@pcwriter why don’t you just use percentages? If you have a fluid width and set the width of the negative margin-right and the content width.
For example:
div#sidebar {
width: 25%;
float: left;
}div.content {
float: right;
margin-right: 26%;
}The code above won’t work, but it’s to give you an idea!
November 28, 2010 at 6:35 am #99385In reply to: How to display replies in Notifications menu
Liesl Fawcett
Participant@gunju2221 Yeah that’s what I’m looking for. Right now I have my members using mentions to get “notified” on the site. I wonder why it is only for messaging and other functions and not replies. Oh well, hopefully there will be a plugin for it soon.
November 28, 2010 at 6:33 am #99384In reply to: Can’t make comments in groups
barney373
MemberSolved it. Buddypress would not recognise BP-TinyMCE
November 28, 2010 at 4:33 am #99383Kevin Murray
ParticipantThere seems to be something wrong with the custom header process with the buddypress theme. I set up images with 1250 × 125 pixel dimensions, but they are then cropped and expanded, so part of the image is missing and the resolution is lowered. Most frustrating. Has anyone found this?
November 28, 2010 at 3:49 am #99381In reply to: SideBar Whos Online and Recently Active
eor
MemberPlease help!! I am lost. I’ve tried messing with everything I imagine would effect the sidebar widgets..specifically geared towards the buddypress. like i said i used the buddypress template pack. Please help.
November 28, 2010 at 2:34 am #99377In reply to: Renamed “Group” but URL still shows old name
Sofian J. Anom
ParticipantUse this plugin to edit the group slug: https://buddypress.org/community/groups/bp-edit-group-slug/
November 27, 2010 at 10:03 pm #99370Michael
Participantyeah i did visit the permalinks and updated it, still no luck.
November 27, 2010 at 9:49 pm #99369Hugo Ashmore
ParticipantJust visiting the page flushes , you can also just do a quick save to ensure there are no messages along the lines of “this is what we would have written to your file if it had been possible”
November 27, 2010 at 9:21 pm #99368Michael
Participantforce a flushing of the cache in permalinks? How do you do that? And what do you mean by definitely write to the .htaccess?
November 27, 2010 at 8:58 pm #99367Hugo Ashmore
ParticipantHave you visited the permalinks page to force a flushing of the cache and can you definitely write to the .htaccess file.
November 27, 2010 at 8:48 pm #99365In reply to: Group settings create
Robert
ParticipantI activate orginal theme from buddypress and ………..
http://awesomescreenshot.com/05b3zo315
other idea ?November 27, 2010 at 8:37 pm #99364Michael
ParticipantI didnt do a fresh install, what I did was transfer all the files from public_html folder to my computer and then transferrred it over to my new server via FTP. I then edit the wp_config file to fix the sql connection info. The front page loads up properly but all the links to any other folder like /members, /groups, etc end up with a 404 not found error.
November 27, 2010 at 8:35 pm #99363In reply to: Group settings create
Robert
ParticipantI deactivate all plugins (not only from buddypress) and nothing.. now i wil try to recreate template files
November 27, 2010 at 6:17 pm #99356In reply to: Domain.com and BP
xiayou
MemberThank you for the fast reply. I have installed the BuddyPress Template Pack, which updated the template so it could use the Buddypress.
I am paying for the hosting, it is the basic Windows hosting at Domain.com.
November 27, 2010 at 6:07 pm #99354In reply to: Domain.com and BP
Virtuali
Participant@xiayou, from looking at your website, it looks like you are using a custom theme. The first thing that comes to mind, is Are you using the BP template pack?
Are you using a host that is free, or do you have a subscription?
If you have a subscription, it is most likely not the host, more likely conflicting plugins, or a theme that just has a bad bug.
Try switching to the BP default theme to see if the problem persists, so we can knock off the possibility that it is the theme.
November 27, 2010 at 6:01 pm #99352In reply to: how receive a notification
Virtuali
Participant@superfifi, you need to provide details on your question. You want to receive and email on a blog post comment, or a buddypress activity comment?
November 27, 2010 at 5:56 pm #99349In reply to: Help with inserting photo’s into activity feed
Virtuali
ParticipantYes, I do have the problem, except it does not overlap the sidebar. It is a flaw with the plugin, because it is meant for a buddypress default theme.
For your sake since it is overlapping, try going into the plugin css, and setting the right margin position to “hidden”.
Another option is to disable the sidebar in the right, but you might not want to do that option.
You also can go into the easy albums forum, and search on similar topics to this issue.
-
AuthorSearch Results