Search Results for 'theme'
-
AuthorSearch Results
-
September 1, 2009 at 10:40 am #51871
In reply to: BuddyBar for bbPress
Sven Lehnert
ParticipantThere is a bug in the deep integration script
if ( !defined( ‘ABSPATH’ ) & !defined( ‘XMLRPC_REQUEST’ )) {
define( ‘WP_USE_THEMES’, false );
include_once( ‘/your/absolute/path/to/wordpress/wp-blog-header.php’ );
header( “HTTP/1.1 200 OK†);
header( “Status: 200 All rosy†);
It looks like everything is working fine, but a user from the german buddypress forum ( mt ) find out, that wordpress overwrites the buddypress header and so there comes header 200 back and often it is a 302 or even a 404.
this is the new script from mt.
if ( !defined( ‘ABSPATH’ ) & !defined( ‘XMLRPC_REQUEST’ )) {
define( ‘WP_USE_THEMES’, false );
include_once( ‘/your/absolute/path/to/wordpress/wp-config.php’ );
$wp->init();
$wp->register_globals();
I post it hire because I think it must be interesting for everyone. In fact it is really important for seo and the german forum is far away from hire…
September 1, 2009 at 4:21 am #51864In reply to: BuddyPress Showoff: Post your links
gerikg
ParticipantJust the basic theme: http://kiaspeed2.com
I need to learn php and css!
September 1, 2009 at 1:50 am #51862In reply to: Details About the New Theme Architecture
Jason Giedymin
Participantsince your doing the digging..
I posted a scheme (http,https) security patch for the depreciated and new theme logins @ https://trac.buddypress.org/ticket/960
August 31, 2009 at 11:45 pm #51857In reply to: Why is BuddyPress stripping my object or embed tags?
mqluvly
ParticipantQuoted by Jomark “
I was able to find a work around for this by using custom fields since it does not strip the codes. I have it working on my web tv-social networking site that mostly uses embedded videos, http://piyesta.com/sadyatv.”
Would you mind sharing your tips and tricks on how you did this. I have tried uploading the above plugins and have tried adding the allowed tags, nothing seems to work properly. The embed videos are not embedding. I like what you have on your site.. How did you create a new custom field and implemented in to the default theme? Thanks!
August 31, 2009 at 10:30 pm #51849In reply to: Plugin request: Removing "create a blog" options
elemsee
Participantsigh
I:
— installed BP through wpmu plugin admin without any error messages.
— have not altered any directories, save for moving bp-themes to wp-content as instructed in setup instructions.
— have not touched any php files, save for bp-core-adminbar.php
— have only added the code above.
— am not using supercache.
— have cleared computer cache three times.
I’m going to have to find another solution. Maybe find the language “create a blog” and “blog registration has been disabled” and make it say something else. Thank you for your help, though.
In the meantime, can someone either a) address my original question and create a plugin (not that I’m demanding someone do work for me) or b) add something to the BP admin where you can turn off “create a blog” instances, or c) any other solution that I am clearly not well-versed enough to think of.
thanks.
August 31, 2009 at 10:03 pm #51843In reply to: Confused about include and template tags…
Andy Peatling
Keymaster<?php include( WP_CONTENT_DIR . '/themes/bphome/feeds/feeds.php' ) ?>August 31, 2009 at 7:12 pm #51829In reply to: Details About the New Theme Architecture
Andy Peatling
KeymasterYes, the load_template calls need to be replaced with locate_template calls. I will fix this shortly.
August 31, 2009 at 1:53 pm #51808In reply to: Details About the New Theme Architecture
Detective
ParticipantThe code is spreaded through many bp template tags, like:
function bp_get_profile_header() {
load_template( TEMPLATEPATH . '/profile/profile-header.php' );
}Since TEMPLATEPATH always point to the parent theme, currently if someone uses a custom theme, then it’s impossible to use those template tags. Not a big deal, almost always it’s possible to write a copy of the function and load the correct file.
If I remember correctly, there is a function named locate_template that first looks into the child theme, and then into the parent.
August 31, 2009 at 8:37 am #51797In reply to: Details About the New Theme Architecture
John James Jacoby
Keymaster@detective, I thought that issue was addressed but it’s possible it crept back in. Child theme files should always override the parent file, with the exception of style.css and functions.php which have special handling.
August 30, 2009 at 2:32 pm #51770In reply to: New Groupblog Plugin
abcde666
ParticipantHi Marius,
so how does the dashboard for users look like for the Group-Blog ? Does the user still have access to his own dashboard or is it possible to disable this ?
I guess by using P2-theme, there is no need for the complicated user-dashboard anymore ?
Many thanks,
Erich
August 30, 2009 at 1:27 pm #51769In reply to: New Groupblog Plugin
Mariusooms
Participant– is it possible with BP to disable the “Wire” ?
Yes…this can be disabled per group at the group creators discretion.
– is it possible to use P2-theme in your “Group-blog” ?
I don’t know, I have not use the P2 theme yet, but I imagine it should be no problem.
– are there any language-related wording in your plugin (at the user-interface) which need to be translated when I would like to run your plugin for a german-language-website ?
Yes, a language file is included which you may translate using the wordpress guidelines.
August 30, 2009 at 1:21 pm #51768In reply to: New Groupblog Plugin
abcde666
ParticipantHi Marius,
many thanks for your answer and your work to create this plugin for version 1.1 !!!
I am looking forward to using this.
– is it possible with BP to disable the “Wire” ?
– is it possible to use P2-theme in your “Group-blog” ?
– are there any language-related wording in your plugin (at the user-interface) which need to be translated when I would like to run your plugin for a german-language-website ?
Thanks again !
Erich
August 30, 2009 at 9:49 am #51765In reply to: New Groupblog Plugin
Mariusooms
Participant– I would like to disable User-Blogs for each single user, but instead have a Group-Blog using P2-theme. Does this work with your plugin ?
Yes, this one of the nice features. You can have blog creation disabled for users, but groups can still create blogs.
– Is your plugin compatible with BP-version 1.1 ?
Yes, it was build on bp1.1 architecture.
– what is the difference from your Group-Blog-plugin compared with the one from Burt ?
I admit, I am not super familiar with Burts plugin, but I believe Burts plugin is focussed on a single blog with defined (by the site admin) groups to able to post in to.
The groupblog plugin has a single blog for each single group. So the blog is unique to the group. Also, I don’t know if Burt will adopt his plugin to bp1.1, you could ask him.
August 30, 2009 at 3:08 am #51759In reply to: Details About the New Theme Architecture
Detective
ParticipantI just tested locally BP 1.1.
The new theme architecture is great, previously I had a custom bp theme that integrated another WP theme (Thesis). Now it is much easier to integrate another theme!

However, I have found that the BP code many times uses the following code:
load_template( TEMPLATEPATH . '/some_file' );This doesn’t work quite right if some uses a custom theme, because it directly looks into the parent theme for
some_fileinstead of checking in the child theme first.August 30, 2009 at 2:52 am #51756Jeff Sayre
ParticipantWas he ever a BuddyPress.org member? I don’t recall his name. If he was on BP in the past and you know the his username (I assume it would be a pseudonym since I don’t recall his real name), then simply message him directly.
Otherwise, you’ll have more luck inquiring on the WPMU forums.
I’m closing this thread as it has nothing to do with BuddyPress support.
August 30, 2009 at 1:13 am #51750In reply to: Details About the New Theme Architecture
Andy Peatling
KeymasterI have not yet confirmed support for the old themes in 1.1. This will happen.
August 30, 2009 at 1:06 am #51747In reply to: New Groupblog Plugin
abcde666
Participant– can I have a Group-Blog instead of the BBPress-Forum ?
– I would like to disable User-Blogs for each single user, but instead have a Group-Blog using P2-theme. Does this work with your plugin ?
– Is your plugin compatible with BP-version 1.1 ?
– what is the difference from your Group-Blog-plugin compared with the one from Burt ?
https://wordpress.org/extend/plugins/bp-community-blogs/
Many thanks,
August 29, 2009 at 10:46 pm #51745In reply to: Changing avatars for the blogs list
peterverkooijen
ParticipantDisabling them is just removing this from the template files:
<?php bp_the_site_blog_avatar_thumb() ?>in bp-themes/bpmember/directories
I have to keep them in, because no picture would kinda break the logic of the layout.
So what is the latest on this? How/where can you set the blog avatar? When will this functionality be added to BP?
August 29, 2009 at 9:58 pm #51744In reply to: User Blogs use same theme as default BP theme?
gweston
MemberI am having the same probably. I have read many other posts and nothing seems to work
August 29, 2009 at 6:22 pm #51736In reply to: User Blogs use same theme as default BP theme?
3612275
InactiveHmm..this isn’t working, it doesn’t show up as a selectable theme for user blogs…
August 29, 2009 at 4:46 pm #51731In reply to: How to get a section identifier in the body tag?
r-a-y
Keymasterif ( $bp->current_component == BP_REGISTER_SLUG && $bp->current_action == '' ) {
...
}But you shouldn’t really need to define this since the register page template is already accessible on your main WP theme (depending if you’ve copied the bp_show_register_page() function from the original bphome theme).
August 29, 2009 at 3:21 pm #51727In reply to: bp-events for bp 1.1 needs testing!
Mariusooms
ParticipantOK, well I had a few problems to start with, mainly due to remnants from the previous plugin version’s structure.
The main purpose was actually moving forward as I had no way of testing backwards compatibility. Therefore please don’t expect to much out of old events, rather focus on creating new ones.
Another thing to note is that I tried putting the events directory in the framework directory rather than the default theme directory, and that caused things not to work. I think it would be better, and in line with groups and member directories, if events could be added to the framework, not just the theme.
Actually when dealing with parent and child themes, it is best to leave the framework alone imo. Since than you don’t lose any information when updating the frame work. I think this is common with parent/child themes. Evens so, it should just work in the framework folder as well. What exact errors were you having in regards to this.
When I look at an event that was already created prior to installing this version, I see the location as it should be, however, when going to the front end admin screens, the location is set to the tagline. Updating the location instead adds the new location to the recent news, and leaves the location unchanged IN THE FRONT END ADMIN SCREENS.
Again, this is probably due to incompatibility with the previous version. Namely the website field has been left out, which is likely to shift everything around. I’m not sure.
There are no icons for the event menu list.
Hmmm, they work fine on my install. Please check where the path is pointing to for the image that is missing.
Event invite isn’t working, but I don’t think it is for groups either.
Yeah…did not get around testing this, but should behave the same way as groups as the architecture is identical.
The ajax loading icon has gone from the widget; although the ajax change in newest etc still works, without the loading icon it isn’t necessarily clear that anything is happening.
Ajax functionality is lacking yes.
Also for the widget, can we have event details back in?
I actually did not change the widgets. I would have to check this out.
Going to domain.com/events doesn’t bring anything up; I’m assuming that this will be where the calendars will be put back in?
The directory still needs to be ported. You could theme your own.
This is definitely a step in the right direction. Things seem cleaner. But some of those features really need building back in once this base is established.
It is essential that the base is solid imo. Before the plugin was so much and much of it did not work. I think it could also be versioned better, but that is really up to the author. At this point my aim was to help jump start this plugin. Code and patches are welcome if you would like to help.
August 29, 2009 at 1:56 pm #51724In reply to: bp-events for bp 1.1 needs testing!
Alex Cragg
ParticipantOK, well I had a few problems to start with, mainly due to remnants from the previous plugin version’s structure.
Another thing to note is that I tried putting the events directory in the framework directory rather than the default theme directory, and that caused things not to work. I think it would be better, and in line with groups and member directories, if events could be added to the framework, not just the theme.
When I look at an event that was already created prior to installing this version, I see the location as it should be, however, when going to the front end admin screens, the location is set to the tagline. Updating the location instead adds the new location to the recent news, and leaves the location unchanged IN THE FRONT END ADMIN SCREENS.
There are no icons for the event menu list.
Event invite isn’t working, but I don’t think it is for groups either.
The ajax loading icon has gone from the widget; although the ajax change in newest etc still works, without the loading icon it isn’t necessarily clear that anything is happening.
Also for the widget, can we have event details back in?
Going to domain.com/events doesn’t bring anything up; I’m assuming that this will be where the calendars will be put back in?
This is definitely a step in the right direction. Things seem cleaner. But some of those features really need building back in once this base is established.
August 29, 2009 at 4:45 am #51714In reply to: P2 Theme As The Wire/Wall?
John James Jacoby
KeymasterWhen it’s ready, it’ll be available through the BuddyPress/WordPress theme repo, so everyone can have at it.
August 29, 2009 at 4:20 am #51713In reply to: P2 Theme As The Wire/Wall?
-
AuthorSearch Results