-
Detective posted a reply on the forum topic Genealogies Theme (integrated with Thesis): 3 months ago
Sorry, I don’t know what could be the problem.
Just a quick note: in the same folder as the file thesis.php, you can put a file tarski.php and do some customizations there
The file loaded in that folder (I don’t remember the name right now) depends on the current parent theme. -
Detective posted a reply on the forum topic Genealogies Theme (integrated with Thesis): 3 months ago
@stwc
I had a website using Thesis as theme. When BuddyPress was released, I wanted to have a matching Theme that would inherit all the functionality I already had.
That’s what this theme does.
@Cyberbougnat
The widgetized home page is a page template. You need to create a page, select the template in that page, [...] -
Detective posted a reply on the forum topic Extending WordPress Themes – Post Experiences: 3 months ago
If you are interested, I’ve released my Thesis integration.
http://buddypress.org/forums/topic/genealogies-theme-integrated-with-thesis -
Detective posted a reply on the forum topic Genealogies Theme (integrated with Thesis): 3 months ago
Yes, you need to buy Thesis.
But you can also modify this theme to suit another theme. I have a test installation using Tarski and it works ok.
You don’t need to customize/modify anything in Thesis. -
Detective posted a reply on the forum topic New BuddyPress 1.2 default theme: 3 months, 1 week ago
It looks great! Thanks, Andy.
-
Detective posted a reply on the forum topic Genealogies Theme (integrated with Thesis): 3 months, 1 week ago
Check out these forum posts:
http://buddypress.org/forums/topic/new-theme-framework-and-exisiting-wp-themes
http://buddypress.org/forums/topic/extending-wordpress-themes-post-experiences -
Detective posted a reply on the forum topic Genealogies Theme (integrated with Thesis): 3 months, 1 week ago
could you explain what it does
it’s a bp theme
what is the goal of it
to be a bp-theme, integrated with Thesis
and who’s developing it?
me -
Detective started a new topic Genealogies Theme (integrated with Thesis) in the forum Creating & Extending: 3 months, 1 week ago
Here you can have it: http://bitbucket.org/egraells/bp-genealogies/
It’s licensed under the GPL2.
Some sites that use this theme:
http://ryuuko.cl
http://libreasociacion.cl
Tested with BP 1.1.3. -
Detective posted a reply on the forum topic Ryuuko — chilean gaming site: 3 months, 4 weeks ago
It will happen someday.
-
Detective posted a reply on the forum topic Showing buddypress avatar on member blog themes?: 4 months ago
http://mirlo.cl/how-to/buddypress-sitewide-avatars/
-
Detective posted a reply on the forum topic Horizontal Userbar: 4 months, 1 week ago
Hi,
Check out http://ryuuko.cl
It uses a horizontal user bar at the top. Feel free to see the markup and the css. -
Detective posted a reply on the forum topic wp-signup.php is a blank page: 4 months, 2 weeks ago
JJJ, the code that Xevo posted ( and I posted in another thread
) IS more effective and also is more correct, because you’re relying in that there’s no output before the signup_header action. Your code was the first thing I tried when I had the problem and, in fact, it didn’t work on [...] -
Detective posted a reply on the forum topic wp-signup.php is a blank page: 4 months, 2 weeks ago
The signup_header hook is called inside wp_head, so the HTTP headers will be already sent and the redirect won’t be effective.
-
Detective posted a reply on the forum topic Allow image plugin in forums: 4 months, 2 weeks ago
You can add it to your theme’s functions.php.
-
Detective posted a reply on the forum topic Allow image plugin in forums: 4 months, 2 weeks ago
This is what I use in my forums:
function gs_bp_forums_add_allowed_tags( $allowedtags ) {
if ( bp_is_group_forum_topic() ) {
$allowedtags = array( 'src' => array() );
[...] -
Detective wrote on their own wire: 5 months ago
Chile clasificó al mundial
-
Detective wrote on the wire of the group Sites Using BuddyPress: 5 months ago
Ryuuko – http://ryuuko.cl
A social network for chilean gamers.
We're running BP 1.1.1 with a custom theme, compatible with the Thesis theme. It needs some small styling fixes with IE, apart from that, it works really good
-
Detective wrote on their own wire: 5 months, 1 week ago
My posts don’t appear on the forums
-
Detective posted a reply on the forum topic Extending WordPress Themes – Post Experiences: 5 months, 2 weeks ago
My approach is kind of weird.
First:
I needed a custom BP framework. So I started looking at the old Skeleton Theme. The first thing I noticed is that I didn’t want a fixed layout BP theme, so I removed all sidebars in each template file and wrapped the content inside a function.
This means that every [...] -
Detective posted a reply on the forum topic New theme framework and exisiting WP themes: 5 months, 3 weeks ago
Here are a few screenshots of my integration (with a custom BP framework):
http://egraells.mirlo.cl/files/2009/09/bp-genealogies-preview-1.png
http://egraells.mirlo.cl/files/2009/09/bp-genealogies-preview-2.png
http://egraells.mirlo.cl/files/2009/09/bp-genealogies-preview-3.png
My custom framework initially was written from scratch, but since BP 1.1 I’ve borrowed a lot of code, styles and icons the bp-sn-parent
-
Detective posted a reply on the forum topic New theme framework and exisiting WP themes: 5 months, 3 weeks ago
I prefer the other way around:
- The parent theme will be the original WP theme without modifications (or with light modifications in headers to add the BP navigation).
- The child theme will be the BP theme framework, but without the redundant files ( header, footer, archives, index, etc).
Why? Because some complex WP themes (specially [...] -
Detective posted a reply on the forum topic Is this the way Forums are supposed to work?: 5 months, 3 weeks ago
Maybe if the user doesn’t belong to any groups, the new topic page could contain an error message. If the user belongs to one or more groups, the “forum” dropdown should list only those forums.
-
Detective posted a reply on the forum topic Upgrading to 1.1-beta breaks Atahualpa blog theme: 5 months, 3 weeks ago
You could use the following setup:
- Leave Atahualpa without modifications.
- Modify the bp-sn-parent style.css to make it a child of Atahualpa. Remove all duplicated files from Atahualpa ( in particular header.php and footer.php, you decide if you want to remove single.php, index.php, etc ).
Now choose the bp-sn-parent as your theme.
This should let you have a [...] -
Detective joined the group BuddyPress Job Board 6 months ago
-
Detective posted a reply on the forum topic problem using another plugin's class…: 6 months ago
Maybe your BP plugin is loaded before the WP plugin, and therefore the mapress class is undeclared. Perhaps it’s best for you to do the following:
function init_my_plugin() { global $bp_mapress; $bp_mapress = new mapress; }
add_action( 'plugins_loaded', 'init_my_plugin' );