Search Results for 'buddypress'
-
AuthorSearch Results
-
March 12, 2013 at 2:14 pm #156116
In reply to: [Resolved] BuddyPress and Constructor theme
randerson1228
ParticipantHugo.
Thanks very much for that follow-up information.
I don’t know what I should do about that. Should I just delete everything and start again?March 12, 2013 at 1:56 pm #156115In reply to: Groups Button Text
boiy
ParticipantI actually dont get it
what is the purpose of the POEDIT application… i chaged my “join Group” to “join Us’… but the text didnt change… but when i edit from buddypress core files ‘bp_groups_template.php” .. it changes to ‘join Us’ and it is my understanding that core files arent to be tampered with… due to future update… can sumone pls explain this language file thing proparly and how i can customize my texts and strings… or is the another way
March 12, 2013 at 1:24 pm #156113In reply to: Groups Button Text
boiy
ParticipantI actually dont get it
what is the purpose of the POEDIT application… i chaged my “join Group” to “join Us’… but the text didnt change… but when i edit from buddypress core files ‘bp_groups_template.php” .. it changes to ‘join Us’ and it is my understanding that core files arent to be tampered with… due to future update… can sumone pls explain this language file thing proparly and how i can customize my texts and strings… or is the another way
March 12, 2013 at 12:53 pm #156112In reply to: BuddyDroid – BuddyPress for Android
Yuttadhammo
ParticipantBuddyDroid 0.9 is now uploaded; it should allow you to access the feed from within Private Buddypress. Also, please update the WP plugin to the latest version on github:
March 12, 2013 at 11:58 am #156111In reply to: [Resolved] BuddyPress and Constructor theme
Hugo Ashmore
ParticipantHaving looked further at this theme framework on a local test install and it appears to work pretty well in it’s default out of the box implementation with BP 1.7 so I’m afraid whatever custom settings / layout configurations you have set in the frameworks backend are causing issues.
March 12, 2013 at 9:44 am #156108In reply to: User Role Blog Creation Issues
s_mari20
ParticipantHello, I am interested in this option too, I want to give the user role to author when we makes new blog(site), and I saw your code above. But where shall I put this code? In buddypress files? But where?
thank youMarch 12, 2013 at 6:37 am #156104In reply to: WooCommerce and buddypress
snooper
Participanthi guys
last night i started setting up a fresh WP installation with the newest version of BP. all good.
i then installed (via WP) woocommerce and after installation (i guess during activation) it just stalled. admin would not respond at all. no errors, just complete blank page, for every page i tried, except for one time i got a 500 error with no detail.i eventually deleted the plugin folder and it went back to work without woocommerce.
if anyone has any suggestions here, i’d be happy to hear.i also want to install another couple of plugins, like Learn Dash – wondering how all theses templates are going to work with each other….
Thanks!
March 12, 2013 at 3:23 am #156102In reply to: BuddyPress Alignment with custom theme
March 12, 2013 at 12:47 am #156097In reply to: My BuddyPress Hosting Recommendation
Ben Hansen
Participantwell it’s an interesting post but it is contrary to my own personal experience with WP Engine i signed up right about the time he gave up. I would note the fact that he states that the CEO issued personal apology and reimbursement for the migration issue, thats seems like at least they took the issue seriously at some point. Also way he closes the post “Where I am today Back at Linode, back to running it myself.” This is exactly the reason it makes sense for people along a spectrum of technical expertise not just novices. Granted the WP managed hosts are not without their drawbacks and even WPE has some quirks that take a little getting used to.
WP Engine is the only company that provides both phone support and specialized wp hosting as far i know. The entire system is built from the ground up only to host WP sites. I cannot tell you how valuable it is when you call into support and you don’t have to explain how wordpress works or what buddypress is every time you are trying to get to the bottom of something. It is also the only hosting company i know that Automattic is financially involved in, to me that means something, i suspect it also means something to WPE.
In my experience the notion of a perfect host is a canard, what may be a great host today could be horrendous two years from now, but WPE aside from any deal killing kind of quirks is the best platform you could be hosted on aside from wordpress vip unless you truly can afford to do everything yourself.
March 11, 2013 at 11:21 pm #156092In reply to: [Resolved] buddypress.css not working properly?
Kyle H
Participant@bphelp Yes the current structure is /mytheme/css/buddypress.css.
Any other ideas? I’d really like to get this working.
March 11, 2013 at 11:04 pm #156090modemlooper
ModeratorThere is also bp_is_activity_component()
March 11, 2013 at 10:59 pm #156088modemlooper
ModeratorMarch 11, 2013 at 8:36 pm #156084In reply to: BP-default theme funky on secondary blog
Ben Hansen
Participantyeah idk but i do know that it’s meant for the primary site none of the buddypress stuff would do anything on the sub-sbites anyway.
March 11, 2013 at 8:27 pm #156082akgt
ParticipantYes I have, but i’ve had no reply.
March 11, 2013 at 7:43 pm #156079In reply to: [Resolved] BuddyPress and Constructor theme
Hugo Ashmore
ParticipantOh and you ought really to ask this question of the theme authors, as they are the ones that have diverged from the norm so are best placed to understand or know how they have and how that has been done and suggest an approach you can take. They just need to know that BP attempts to use the standard WP templates and the content loop replaced with BP content.
Failing all the above you may need to fall back on the older method of overloading BP templates into your child and ensuring the markup matches to the themes markup.
You may like to look through the codex to see if the constructor theme has been template packed by Mercime.
March 11, 2013 at 7:38 pm #156078In reply to: [Resolved] BuddyPress and Constructor theme
Hugo Ashmore
Participantand what is in this file:
// load one of layout pages (layouts/*.php) based on settings
get_constructor_layout(‘page’);This is going to be a problem with these frameworks that break with the normal WP methods for their own approach to templating and where users are going to have to figure out how to deal with this.
You could try creating a file named buddypress.php in your theme root and in that file copy the contents of what ever is in layouts/page.php but that file may also not be standard.
March 11, 2013 at 6:53 pm #156077In reply to: [Resolved] BuddyPress and Constructor theme
randerson1228
Participantsingle.php
/**
* @package WordPress
* @subpackage Constructor
*/
// requeried comments
wp_enqueue_script( ‘comment-reply’ );// load header.php
get_header();// load one of layout pages (layouts/*.php) based on settings
get_constructor_layout(‘single’);// load footer.php
get_footer();Just a note:
open and close php are removed as I think that is causing the entire file to not show up…March 11, 2013 at 6:51 pm #156076In reply to: [Resolved] BuddyPress and Constructor theme
randerson1228
Participanthmm… dont know where they go to…
index.php…
/**
* @package WordPress
* @subpackage constructor
*/
// Stupid Parser This is Theme support the Gravatar Service
// get_avatar();// load header.php
get_header();// load one of layout pages (layouts/*.php) based on settings
get_constructor_layout(‘index’);// load footer.php
get_footer();March 11, 2013 at 6:50 pm #156075In reply to: [Resolved] BuddyPress and Constructor theme
randerson1228
ParticipantAnd here is index.php…
March 11, 2013 at 6:49 pm #156074In reply to: [Resolved] BuddyPress and Constructor theme
randerson1228
Participanthmm… I pasted all three, but only one showed up.. 2nd try… here is single.php…
March 11, 2013 at 6:47 pm #156073In reply to: [Resolved] BuddyPress and Constructor theme
randerson1228
ParticipantHere is single.php…
Here is Page.php
<?php
/**
* @package WordPress
* @subpackage Constructor
*/
wp_enqueue_script( 'comment-reply' );// load header.php
get_header();// load one of layout pages (layouts/*.php) based on settings
get_constructor_layout('page');// load footer.php
get_footer();Here is index.php…
Where should I look next and what should I change?
Thanks for your help.
Cheers
RoyMarch 11, 2013 at 5:51 pm #156068In reply to: [Resolved] CSS help for member directory
bp-help
Participant@naijaping @mercime
Okay I finally got it. Not certain it is totally right but it looks good in both chrome and firefox. I did have to create a div class in the members-loop.php called user-location surrounding the code from step 3 in the tutorial to be able to style it. The changes I made are in the below css in case anyone wants to try this. I also included a pic at the bottom to show the end result. Thank you both for your help! Cheers!
`
/*
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: 62%;
text-align: center;
}
.user-location {
width: 62%;
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;
margin: 18px 102px 0 0;
}#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;
margin: 18px 102px 0 0;
}ul#members-list.item-list li div.action {
text-align: center;
overflow-y: hidden;
top: 18px;
right: 6px;
}#member-dir-count-bottom {
display: none;
}
/* End Custom member loop avatar styling */
`
March 11, 2013 at 5:38 pm #156065In reply to: [Resolved] BuddyPress and Constructor theme
Hugo Ashmore
ParticipantThis is a problem with your theme.
BP theme compatibility is designed to automagically use standards WP templates if certain custom ones aren’t found, assuming you haven’t created any custom files in your theme BP is looking for these files in this order:
page.php
single.php
index.php
If you theme does not have these or use one in a standard manner then you may well get a screwy layout, but it’s going to be very hard to tell you what is going on with a third party theme like this.
Looking at BP pages I can see straight away something not quite right as there is a distinct lack of WP/BP body classes that I would expect to see.
You’re going to need to look those standard files above, determine which is being used by BP components in theme compat mode then try and work out what your framework is using to generate your general page.php page views i.e what file is used when you create a WP ‘page’.
March 11, 2013 at 4:10 pm #156059In reply to: [Resolved] buddypress.css not working properly?
bp-help
Participant@cikez did you copy the buddypress css directory folder as well as its contents to the root of your theme? If I am correct it needs to maintain its directory structure so in the root of your theme if you copied it correctly there will be a folder named css and inside it will contain buddypress.css
March 11, 2013 at 3:55 pm #156058In reply to: [Resolved] buddypress.css not working properly?
Kyle H
ParticipantI am using an Artisteer theme. I am not sure what other information you need. I am moving the buddypress.css file to a folder /css/ in my themes directory. If i do not move it over everything looks ok, but as soon as I move buddypress.css over it seems to remove all styling from the default BP install.
Thanks.
-
AuthorSearch Results