Search Results for 'buddypress'
-
AuthorSearch Results
-
March 11, 2013 at 3:43 pm #156057
In reply to: 1.7 can't see buddy press layouts in my theme
carlh1
ParticipantThanks Hugo, what exact file are you talking about? the page “groups” is assigned to the “groups” in buddypress settings. Do you just want the source from view source in my browser? I dont’ think that’s what you are asking for. Where exactly can I find the file Paul was asking for? Is it in the editor, or do I need to ftp to find it? Is it in the buddypress plugin directory?
March 11, 2013 at 3:09 pm #156054In reply to: [Resolved] buddypress.css not working properly?
bp-help
Participant@karmatosed Actually I got confused because I have various installations of WP and BP on my localhost. Actually on my WP 3.5.1 install and BP 1.7b1 install using a child theme of “Responsive” I just use my child themes style.css to overide any buddypress css that I need too. Reason I do this is so if the “Responsive” theme gets updated then my child themes styles stay intact. Make sense?
March 11, 2013 at 2:50 pm #156053In reply to: [Resolved] CSS help for member directory
bp-help
Participant@naijaping @mercime
I removed #buddypress from the css and here is what my style.css looks like:
`
/*
Theme Name: BuddyPress Child
Theme URI: http://example.com/
Description: Child theme for the BuddyPress Default theme
Author: bphelp
Author URI: http://example.com/about/
Template: bp-default
Version: 1.0
Tags: blue, buddypress, custom-background, custom-header, custom-menu, editor-style, featured-image-header, featured-images, fixed-width, light, right-sidebar, rtl-language-support, sticky-post, threaded-comments, translation-ready, two-columns, white
*/
/*————————————————————-
Custom CSS
————————————————————–*/
@import url(“../responsive/style.css”);/* Custom member loop avatar styling */
#members-dir-list img.avatar {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
-webkit-box-shadow: 0 1px 0 #fff;
-moz-box-shadow: 0 1px 0 #fff;
box-shadow: 0 1px 0 #fff;
}#members-dir-list a:hover img.avatar {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
filter: grayscale(100%);
-webkit-transition: -webkit-filter 0.2s ease-in-out;
-moz-transition: -moz-filter 0.2s ease-in-out;
transition: filter 0.2s ease-in-out;
}#members-list li {
overflow: auto;
list-style: none;
float: left;
width: 30%;
margin: 20px 20px 28px 0;
border: 0;
}#members-dir-list ul.item-list li div.item-title, #members-dir-list ul.item-list li h4, #members-dir-list ul.item-list li div.item-meta
{
width: 100%;
text-align: center;
}#members-dir-list ul.item-list li div.item-title {
font-size: 110%;
}#members-dir-list ul.item-list li div.item-meta {
text-transform: uppercase;
font-size: 80%;
}#members-dir-list ul.item-list li img.avatar {
margin-bottom: 8px;
}#members-dir-list a.friendship-button.add {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
border: 5px solid #89ac48;
font-size: 26px;
font-weight: bold;
background: #a5d156;
color: #ffffff;
line-height: 50px;
}#members-dir-list a.friendship-button.is_friend.remove {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
border: 5px solid #CC0000;
font-size: 26px;
font-weight: bold;
background: #FF5050;
color: #ffffff;
line-height: 50px;}
ul#members-list.item-list li div.action {
text-align: center;
overflow-y: hidden;
top: 18px;
right: 6px;
}
/* End Custom member loop avatar styling */
`
Here is another pic to see the changes but it still needs some adjusting.

Hope you guys can help! I appreciate the help you have given so far! Thanks!March 11, 2013 at 2:44 pm #156050In reply to: 1.7 can't see buddy press layouts in my theme
carlh1
ParticipantThanks for the reply Paul. Sorry for my ignorance, I’m not schooled in themeing. What file do you want to see? When I look in the editor shouldn’t I be able to see a groups template in that list somewhere? I don’t. And the “groups” page that was created when I installed buddypress doesn’t have any code. What can I send you?
March 11, 2013 at 2:30 pm #156049In reply to: BuddyPress Alignment with custom theme
bookee
Participant@mercime, again thanks for the quick reply. I copied the following lines of code to my theme’s sidebar.php (very bottom of the page), but nothing happens meaning the login form doesn’t show on the sidebar. Is there a specific location in the sidebar.php file to add it?
What i meant by top menu login option is having a member login menu that would take the registered users to a login form similar to the form on the sidebar. Hope that makes sense. Below is the code i copied to my theme’s sidebar:
[EDIT – please use pastebin.com to post long blocks of code. ~~ Mercime]
Thanks!
March 11, 2013 at 1:50 pm #156046In reply to: zenthemes?
shanebp
ModeratorI’ve never used zenthemes.
But their Buddies theme page says:
“WordPress 3.3.1 & BuddyPress 1.5.3.1, bbPress 2 compatible”So it’s out of date – should be at least WP 3.5 and BP 1.6
March 11, 2013 at 12:21 pm #156045terraling
ParticipantSorry, I missed the array() out of my example.
The slug of my page is actually “talk-of-the-town”, it is the static front-page of the site and has the buddypress activity page assigned to it. The page id is 95.
None of these tests identify the page, although they do identify the other pages in the list:
is_page(array('page1','page2','page3','talk-of-the-town')) ? get_template_part('filters') : get_sidebar();is_page(array('page1','page2','page3','95')) ? get_template_part('filters') : get_sidebar();is_page(array('page1','page2','page3','activity')) ? get_template_part('filters') : get_sidebar();bp_is_page(‘activity’) does work.
I have the same problem with the groups page, btw.
The above is by way of information. The test is to load a special sidebar on certain pages, otherwise load the normal sidebar. I’m just going to reverse the test, to load the normal sidebar for other specified pages, otherwise load the special sidebar.
Thanks for your help…
March 11, 2013 at 11:43 am #156044Hugo Ashmore
ParticipantNot sure at what point you’re running the check but simply dumping is_page(‘activity’) out in the header.php of a bp enabled theme only returns true when on activity page.
Not sure about your example of comma separated items didn’t think that worked although you can pass an array.
Maybe you need to do an if( is_home() && bp_is_current_component(‘activity’) )
March 11, 2013 at 10:50 am #156041terraling
ParticipantWhy does is_page(‘activity’) not work?
I don’t know, that’s why I posted the question.
It seems that if you have a page which you assign one of the BP pages (eg activity) to, then BP somehow hijacks it so that WP is no longer able to recognise it by its slug or, in this case, using is_front_page().
March 11, 2013 at 10:34 am #156038dasped
ParticipantI would suggest that the best way forward is to contact the theme author – Parallelus
In the DynamiX theme I had to edit out a line in dynamix/functions.php
wp_enqueue_script( ‘dtheme-ajax-js’, BP_PLUGIN_URL . ‘/bp-themes/bp-default/_inc/global.js’, array( ‘jquery’ ), $version );
Unfortunately adding add_theme_support( ‘buddypress’ ); is not the answer, though it is certainly something theme authors need to look at for their future updates.
I also own the Salutation theme and after a quick peek I can not find the same or similar string as I posted above.
No point in both of us contacting the author so if you get any joy from them, please let me know how you got on. It will come in very handy, as I plan to use the theme at some point in the future.
In your enquiry to theme author, I would suggest linking them to the top post here: http://bpdevel.wordpress.com/author/boonebgorges/
It will help them in their investigation.
Again, please do let me know your outcome.
Thanks
March 11, 2013 at 10:34 am #156037Hugo Ashmore
ParticipantWhy does is_page(‘activity’) not work? You could try testing for bp_is_current_component(‘activity’) though?
March 11, 2013 at 10:15 am #156035In reply to: [Resolved] buddypress.css not working properly?
Tammie Lister
ModeratorMarch 11, 2013 at 10:08 am #156034terraling
ParticipantOK, I tried using bp_is_page(‘activity’) and it [correction] DOES work,
but I noticed dipping into the BP files that bp_is_page() is deprecated.
There is no way to recognise the page using WP core functions is_page() or is_front_page(), true?
March 11, 2013 at 9:18 am #156015Paul Wong-Gibbs
KeymasterDid you try posting on bbpress.org? That’s the best place for this query.
March 11, 2013 at 8:53 am #156010In reply to: [Resolved] buddypress.css not working properly?
Hugo Ashmore
Participantbut once I add the buddypress.css file from /bp-legacy/css/ to /mytheme/css/ it breaks buddypress styles completely.
You may need to explain what your process in more detail. Adding /css/buddypress.css to both 2012 and a child theme based on 2012 works as expected.
March 11, 2013 at 7:54 am #156008In reply to: [Resolved] CSS help for member directory
Prince Abiola Ogundipe
ParticipantIf you are using css tutorial from wpmu and your theme is default buddypress template/child theme, Remove “#buddypress” from all the css. I think it should do the trick.
or better still a link to your site so that i can try and solve it for you.
Thanks
March 11, 2013 at 6:41 am #156006In reply to: [Resolved] buddypress.css not working properly?
bp-help
ParticipantSorry the above had a typo:
use this instead:
`
/*
Theme Name: Whatever you wanna name the child theme
Theme URI: http://example.com/
Description: Child theme name for whatever theme you chose
Author: your name here
Author URI: http://example.com/
Version: 1.0 or whatever you want to number it
Tags: whatever tags is appropriate if it is a a theme specific to buddypress then you will want to add “buddypress” to the tags sense 1.7 adding buddypress tag is not a necessity.
*/
/*————————————————————-
Custom CSS
————————————————————–*/
@import url(“../whatever theme name you made a child theme of
“case sensitive”/style.css”);
`March 11, 2013 at 6:36 am #156005In reply to: [Resolved] buddypress.css not working properly?
bp-help
ParticipantIf your using a theme other than buddypress default within a child theme then things are gonna break when if you copied the bp-default themes style.css into your active theme. If your using a child theme based on something else then you need to add adjust and add this to your active themes style.css
/*
Theme Name: Whatever you wanna name the child theme
Theme URI: http://example.com/
Description: Child theme for whatever theme you choose
Author: your name here
Author URI: the theme name you made a child them of "case sensitive"
Version: 1.0 or whatever you want to number it
Tags: whatever tags is appropriate if it is a a theme specific to buddypress then you will want to add "buddypress" to the tags sense 1.7 adding buddypress tag is not a necessity.
*/
/*-------------------------------------------------------------
Custom CSS
--------------------------------------------------------------*/
@import url("../whatever theme name you made a child theme of
"case sensitive"/style.css");March 11, 2013 at 4:43 am #156003companyjuice
ParticipantThis does not fix the issue with “Duplicate Activity”. I already have add_theme_support( ‘buddypress’ ); in my functions.php file. However, in BP 1.7-beta1, not in BP 1.6.4, there is a bug that posts messages, replies, and lists members twice.
March 11, 2013 at 4:39 am #156002@mercime
Participant@dasped @dasped @companyjuice To avoid duplication of posts for themes which are already compatible with BuddyPress i.e, BuddyPress-ready themes, add the following line in your theme’s functions.php file
add_theme_support( ‘buddypress’ );
March 11, 2013 at 2:55 am #155996companyjuice
ParticipantI am having the same issue — duplicate posts. When posting an update or replying to posts, the Razor or Salutation theme is causing BuddyPress to post the message twice. I’ve tested this by switching between the Razor/Salutation theme and the BuddyPress Default theme. The BP Default theme does not have this problem — it is only in Razor/Salutation. I am using the latest beta version 1.7 of BuddyPress. No other plugins are installed.
Anybody else experiencing this problem?
How should BuddyPress act when the non-Default theme is handling the BP posts so it does not post a duplicate message?
March 11, 2013 at 2:05 am #155994In reply to: My BuddyPress Hosting Recommendation
Asynaptic
Participant@ubernaut I completely agree with you in that you must research the host to find out all you can about them. Believe it or not, there are amazing hosts out there at very reasonable prices. I found this out personally because a friend pointed me to webhostingtalk where they all congregate (and compete). I don’t want to mention my host because it will sound like I’m advertising but they are a reseller of liquidweb and I am a fanatical fan because they are out of this world for technical support above and beyond what a normal host would provide as well as the quality of their servers and the price is incredibly reasonable.
So I think on the whole we agree, do your research. Don’t go in with a preset bias or prejudice and you’ll find that most people’s preconceptions (as shown here in this thread) are wrong. Again, I’m speaking from experience here.
@bowromir hi Ben, if you’ll note I wrote that my assumption was that you used an affiliate link because you truly believed in wpengine. I hoped that was the case and I’m glad to be proven correct.As for the rest, we’ll have to agree to disagree. I’ve helped friends set up their wordpress blogs on shared hosting and they are getting better performance than some others on vps! go figure. and for a huge saving to boot!
My two cents here are for people to not be scared about doing things the right way, instead of paying for overpriced and overhyped service. If you are absolutely not technical, know that you can combine a great host with a couple of plugins (installed and tweaked by a freelancer) and then set it and forget it for a couple of years for great performance. Again, this is simply a fact from experience. Of course, if you want to pay out the wazoo for the same or inferior service, be my guest!
googling around you’ll find a lot of glowing recommendations for wpengine, with the not surprising affiliate link. but you’ll also find experiences like this one:
March 11, 2013 at 1:42 am #155993In reply to: Installation and Forum Issues
BenRacicot
ParticipantThanks @mercime,
But I understand how it’s suppossed to work. However, I removed “Forums” from the Setting->BuddyPress->Pages Tab. Now I have this:

So what do you do now in BuddyPress 1.7? There should probably be an option to add forums like the initial install has?
March 10, 2013 at 11:50 pm #155991Unsal Korkmaz
ParticipantI released the plugin..
FirmaSite Theme Enhancer:https://wordpress.org/extend/plugins/firmasite-theme-enhancer/
March 10, 2013 at 9:49 pm #155984Guust
ParticipantStill not right, although I format the code as code, it does not quite post correctly.
See here for the correct code: https://wordpress.org/support/topic/adding-biographical-info-and-other-info-to-the-buddypress-profile-page -
AuthorSearch Results

