Search Results for 'buddypress'
-
AuthorSearch Results
-
May 18, 2012 at 6:57 pm #134755
In reply to: How can I make the logo display? [RESOLVED]
Wendy Cockcroft
MemberSorry, Hugo, I need to know *exactly* what this is supposed to look like. Putting this in
`<?php
if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
function bp_dtheme_enqueue_styles() {}
endif;
?>function bp_dtheme_setup() {
global $bp;// Load the AJAX functions for the theme
require( TEMPLATEPATH . ‘/_inc/ajax.php’ );// This theme styles the visual editor with editor-style.css to match the theme style.
add_editor_style();// This theme uses post thumbnails
add_theme_support( ‘post-thumbnails’ );// Add default posts and comments RSS feed links to head
add_theme_support( ‘automatic-feed-links’ );// Add responsive layout support to bp-default without forcing child
// themes to inherit it if they don’t want to
add_theme_support( ‘bp-default-responsive’ );// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
‘primary’ => __( ‘Primary Navigation’, ‘buddypress’ ),
) );// This theme allows users to set a custom background
add_custom_background( ‘bp_dtheme_custom_background_style’ );// Add custom header support if allowed
if ( !defined( ‘BP_DTHEME_DISABLE_CUSTOM_HEADER’ ) ) {
define( ‘HEADER_TEXTCOLOR’, ‘FFFFFF’ );// The height and width of your custom header. You can hook into the theme’s own filters to change these values.
// Add a filter to bp_dtheme_header_image_width and bp_dtheme_header_image_height to change these values.
define( ‘HEADER_IMAGE_WIDTH’, apply_filters( ‘bp_dtheme_header_image_width’, 401 ) );
define( ‘HEADER_IMAGE_HEIGHT’, apply_filters( ‘bp_dtheme_header_image_height’, 80 ) );// We’ll be using post thumbnails for custom header images on posts and pages. We want them to be 1250 pixels wide by 133 pixels tall.
// Larger images will be auto-cropped to fit, smaller ones will be ignored.
set_post_thumbnail_size( HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true );// Add a way for the custom header to be styled in the admin panel that controls custom headers.
add_custom_image_header( ‘bp_dtheme_header_style’, ‘bp_dtheme_admin_header_style’ );
}`makes it worse, not better, because the code shows up above the header.
Here’s the CSS:
http://snazzymob.com/wp-content/themes/Snazzy/style.css
I don’t care how stupid I look to you as long as the end result is that I’m given the correct information. That means providing me with the actual code in the actual way it’s supposed to be entered in the functions.php file.
This is what is there now:
`<?php
if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
function bp_dtheme_enqueue_styles() {}
endif;
?>`There’s got to be a way to stop the header image repeating.
May 18, 2012 at 5:53 pm #134752In reply to: [Resolved] Mystique Theme From DigitalNature
May 18, 2012 at 5:47 pm #134750In reply to: [Resolved] Mystique Theme From DigitalNature
@mercime
ParticipantB. COPY your theme’s sidebar.php and Save As > sidebar-buddypress.php
Open up sidebar-buddypress.php
Add the following code at the TOP, above original sidebar code:
``Add the following code at the BOTTOM, below all other code:
``Save file.
C. Upload header-buddypress.php and sidebar-buddypress.php to your theme folder in server wp-content/themes/mystique/ in the same directory where your regular header.php and sidebar.php files are
D. Final note: Copy the style modifications for some BP elements https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and paste those at the bottom of your theme’s stylesheet, then adjust to taste.
May 18, 2012 at 5:47 pm #134749In reply to: [Resolved] Mystique Theme From DigitalNature
@mercime
Participant@hedak You will only need to create two new files, header-buddypress.php and sidebar-buddypress.php
If you’ve revised any of the BP template files transferred to your mystique theme folder in server during the BP Compatibility process, please delete the 6 BP folders transferred to your mystique theme folder in server – /activity, /blogs, /forums, /members, /groups, /register – then re-run Appearance > BP Compatibility again to make sure that you have clean template files.
A. COPY your theme’s header.php and Save As > header-buddypress.php
Open up header-buddypress.php and at the BOTTOM of the file, below other code contained within, add this:
<div id="mask-3" class="clear-block"> <div id="mask-2"> <div id="mask-1"> <div id="primary-content"> <div id="post-" > <div class="clear-block">Save file.
May 18, 2012 at 5:37 pm #134748whyme26
MemberI have the same problem. All the main pages (groups, activity, forums, etc..) work fine, It’s just the “Buddybar” links under “My Account” like Profile, and such. This is a fresh install of WordPress and Buddypress with no plugins and using the default buddypress theme.
As far as I know rewite_modules are turned on – if they weren’t wouldn’t pretty permalinks not work at all? Although I’m still thinking it’s something with my host as buddypress works fine running on localhost with xampp..
Any idea what could be going on?
Could this maybe be buggering it up….? this WP/BP install is on my domain’s root, but I do have some subdomains running other wordpress installs (no buddypress).
Thanks for any advice.
May 18, 2012 at 5:26 pm #134747In reply to: adding menu tabs
shanebp
Moderatortop_level nav
https://codex.buddypress.org/developer-docs/functions/core/bp_core_new_nav_item/subnav example, add to your plugins/bp-custom.php
https://codex.buddypress.org/extending-buddypress/bp-custom-php///generate the 'Bongo' subnav tab to Messages add_action( 'bp_setup_nav', 'add_subnav_tab', 100 ); function add_subnav_tab() { global $bp; bp_core_new_subnav_item( array( 'name' => __( 'Bongo', 'buddypress' ), 'slug' => 'bongo', 'parent_url' => $bp->loggedin_user->domain . $bp->messages->slug . '/', 'parent_slug' => $bp->messages->slug, 'screen_function' => 'messages_screen_bongo', 'position' => 40, 'user_has_access' => bp_is_my_profile() ) ); }May 18, 2012 at 5:21 pm #134746dannyjimmy
MemberThat sounds like a potentially viable fix, actually;
Namely, if you created a required extra field that groups had to fill out, and then made it the update box conditional based upon that.
Of course, that wouldn’t block people posting there from their own “What’s New” box on root.com/activity… but I doubt most people would do that anyway.
@Hugo, you seem like a pretty active and experienced voice in this community, whereas I’m fairly noobish (I don’t speak PHP)… any chance we could work together on moving this forward, either with something as simple as a trac improvement request or even maybe putting a patch together? I’m decent at design but not code.
@ Everyone else… are others experiencing this / agreeing? This is the biggest issue that has hit me in the face on my first serious BP project…
May 18, 2012 at 4:25 pm #134745In reply to: Help me!!!! My posts are not updating in database
@mercime
Participant== Whenever any member are putting some posts on my blog, its not updating in my posts database. ==
BuddyPress doesn’t cause that kind of behavior. It might be caused by old WP/BP plugin.
To check: Go to basic WP installation, i.e., Deactivate all plugins then change to Twenty Eleven theme and check if issue is resolved. If so, activate BuddyPress only and Frisco theme and start posting. Do not activate plugins which are not explicitly updated to current WP/BP versions.May 18, 2012 at 4:12 pm #134743dannyjimmy
MemberSorry I wasn’t more clear.
I’ve already got that disabled. But that doesn’t stop somebody from posting in “What’s New In This Group?” when they see in the stream a question that I asked within a forum . All it does is remove the “reply” button from the stream notice.
The overall issue here (of which the above is just an example) is of the confusion created where there’s two places in a group (forum, stream) to create conversations.
So in simplest terms, I need a way to prevent or discourage stream-posting in groups where I want a forum enabled.
May 18, 2012 at 3:40 pm #134740@mercime
Participant@dannyjimmy go to dashboard menu BuddyPress > Settings and click on Yes for “Disable activity stream commenting on blog and forum posts?”
May 18, 2012 at 3:39 pm #134739In reply to: site registration
Hugo Ashmore
Participant@idowu My apologies that was a little misleading as I could have sworn there was a button on the members account screen for ‘Sites’ what I was thinking of is the buddybar where you have a set of links, under ‘blogs’ there is a ‘create’ link in addition to the large button on the main BP blogs dir page. I would spend a little while having a good rummage around all the links and screens in BP so you’re familiar with what is where.
May 18, 2012 at 3:34 pm #134737In reply to: No next button on install wizard
@mercime
Participant@pearl91 I assume latest BP./WP versions. Linux or Windows hosting? Have you changed your Settings > Permalinks from default to other listed?
May 18, 2012 at 3:31 pm #134735In reply to: Misaligning BuddyPress Site
@mercime
ParticipantYou need to add the `div.padder` style I posted above if you want your BP pages to look like the rest of the site. You haven’t added the styles from Twenty Ten which brings in the widths of `div.item-list-tabs` and `div#subnav.item-list-tabs`
Use Firefox and install Firebug add-on and you’ll be able to ID the areas you need to change.
May 18, 2012 at 3:22 pm #134734In reply to: site registration
@mercime
ParticipantMay 18, 2012 at 3:07 pm #134733@mercime
ParticipantYou’re welcome. Marking this as resolved.
May 18, 2012 at 3:06 pm #134732In reply to: Group Forum uninstall failure?
@mercime
ParticipantDid you read https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/
If you did, at what point did sitewide forum installation fail?May 18, 2012 at 1:04 pm #134729In reply to: Register with twitter plugin
Eric Langley
Participant@sushit
Check out JanRain’s plug in. It works great and you get other social network as well.
https://wordpress.org/extend/plugins/rpx/
@elangleyMay 18, 2012 at 12:29 pm #134728May 18, 2012 at 11:34 am #134725In reply to: Group Forum uninstall failure?
angrywookie
Member@mercime well that fixed that issue at least cosmetically after reinstalling the sitewide forum I now can’t get to it at all. Can’t make a menu item to get to it and one isn’t made.
Too many headaches… I’m thinking it’s garbage like this is why I gave up on BP the last time. Think I’m going to look for other options for the forum at least.
May 18, 2012 at 11:31 am #134724In reply to: How can I stop spammers registering?
abray
ParticipantThere are two on the Featured Plugin page. Take a look – https://buddypress.org/extend/plugins/. Hope that helps.
May 18, 2012 at 10:17 am #134721In reply to: site registration
Jageshmk
MemberHi
I have installed Buddypress in my wordpress site.
But create an account or sign up showing Register by /register url and its not showing create an account form for buddy press.
Its showing only register and nothing else.
Please give me a solution to fix this issue
Thanks
JageshmkMay 18, 2012 at 9:17 am #134719In reply to: Misaligning BuddyPress Site
RossBBoS
Member@mercime Hi,
Thanks for your reply
I have copied the whole lot of those style mods over and changed a few of the minuses to, for example, 0 but to no avail so far! Unless it hasn’t updated on my laptop?If you still see the overlaps on the website, do you have any recomendations of how much to change the numbers by?
Thanks for the heads up about the URLs I will sort that.
Thanks very much
May 18, 2012 at 7:46 am #134718In reply to: Misaligning BuddyPress Site
@mercime
Participant== My theme is the arras theme. ==
@allthingsbetting You could copy over some of the style mods to twenty ten theme to the bottom of your theme’s stylesheet then adjust to taste – esp `div.item-list-tabs` and `div#subnav.item-list-tabs` where you have to bring in the negative margins which expand the width of those navigation items.
Add also the following to your style.css
`div.padder {
background: #fff none;
border: 1px solid #ccc;
margin: 0 10px 15px 0;
padding: 0 15px;
}`Plus some unsolicited advice – you have URL’s with members-3/ and groups-2/ which is not cool. Back up DB.
Delete the current Pages “Members” and “Groups”. Go to trash and delete all “Members” and “Groups” Pages > Permanently. Go create new Members and Groups pages. You’ll see clean members/ and groups/ url’sMay 18, 2012 at 7:03 am #134717LeifQ
ParticipantApache rewrite_module may be off. If you’re running WAMP 2.2 you can go to Apache >> Apache modules, scroll down and make sure that ‘rewrite_modules’ is checked. Here’s another way, too…
http://www.404-error.org/buddypress-404-file-not-found-fix/May 18, 2012 at 6:26 am #134716In reply to: Group Forum uninstall failure?
@mercime
Participant== Now the group forums will not uninstall. ==
@angrywookie There’s a final task for the group forums uninstall -> delete the bb-config.php file generated when group forums were installed. You’d find bb-config.php at the root of your WP install, the same directory where you have your wp-config.php file https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/4/#forums-faqs -
AuthorSearch Results