Search Results for 'change buddypress menu'
-
AuthorSearch Results
-
June 18, 2012 at 5:25 am #135976
@mercime
Participant== After installed the Randy Candy Child Theme, the menu show each page 2 times and don’t show the footer widgets.==
Randy Candy Child Theme has not been updated for some time already. There are some changes which need to be done on the header.php and footer.php.
== BuddyPress Group Live Chat ==
As noted on plugin page in WordPress extend, that plugin has been tested on BP 1.2.8. It has not been updated for BP 1.5+
June 15, 2012 at 5:36 pm #135853@mercime
Participant== The extra classes are gone now, but the menu is still showing up as a bullet list. ==
The menu was never rendered as bullet list so I don’t understand what you mean that it “is still showing up as bullet list.” The latest version of Frisco theme is version 1.5.04 so do make sure that’s the version you’re using.
Also, make sure that you didn’t delete anything from the navigation menu in your theme’s header.php. You can compare it with theme’s original header.php file – https://themes.svn.wordpress.org/frisco-for-buddypress/1.5.04/header.php
If you made any changes to the stylesheet, then re-upload theme’s original style or copy over . https://themes.svn.wordpress.org/frisco-for-buddypress/1.5.04/style.css
June 15, 2012 at 3:48 pm #135838In reply to: Change Buddypress theme?
@mercime
ParticipantFirst of all, since you’re new to BuddyPress I suggest that you use the bp-default theme during Installation Wizard or later via dashboard menu Appearance > Themes while you’re setting up and exploring the different BuddyPress components available in your installation.
== Now I cannot go back and select the correct theme to integrate BP with my WP theme. ==
Just go to dashboard menu Appearance > Themes and choose the theme you want to use in your installation. If you’re going to use a WP theme for the BP install, know that you need to install/activate BP Template Pack plugin as well and go through Appearance > BP Compatibility process.
June 15, 2012 at 11:27 am #135829In reply to: sign up error page
chennareddya
Memberi have been working in localhost URL is like: http://abcdev.arn/dcomm (i installed wordpress under this folder, and i installed BP, BB press plugins only. Theme is buddypress default theme).
I created 1 menu, 4 cusom categories (for my specific purpose). After installing BP, i got a message like—->: “BuddyPress is almost ready. You must update your permalink structure to something other than the default for it to work.”
If i change the permalink to other structure, my custom categories are redirects to error page. But the BuddyPress links are redirecting to error pages in either case!!
On top of the home page i can see “login”, “sign up” links. login is working fine but sign up is giving error like —> “The requested URL /dcomm/register/ was not found on this server.”
Please ask me for any other details you require..
Thanks,
ChennaJune 11, 2012 at 12:53 pm #135670In reply to: Building a child theme: overriding default.css
danbpfr
ParticipantHi, you don’t need to copy default.css to your child theme. Use instead style.css in the child theme and add your changes to the specific part taken from default.
Example: let’s say you want to change the width of div#content .left-menu from 170 to 200px
in default.css you have`div#content .left-menu {
float: left;
width: 170px;
}`In your child theme, you write this in the style.css file
`div#content .left-menu {
width: 200px;
}`https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
May 31, 2012 at 7:32 am #135305In reply to: BuddyPress doesn’t display on designated page
@mercime
Participant== I have associated Discssion Forums with a blank page named Community. ==
Change Forums base to community as well.
Go to wp-admin menu Settings > Forums – Archive Slug – Forums Base ==> from forums –> communityMay 24, 2012 at 1:59 am #135001In reply to: Installed it but site is empty?
@mercime
Participant– See links to subpages on the right sidebar of https://codex.buddypress.org/getting-started/
– I suggest using bp-default while you are setting up the site and change to a different theme later.
– After going thru installation wizard, you can make changes at dashboard menu BuddyPress > Choose specific setting you want to changeMay 18, 2012 at 6:57 pm #134755In 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 9, 2012 at 5:01 pm #134239In reply to: BuddyPress dropdown menu is not working properly.
@mercime
Participant== one of the links in the dropdown menu at the top of the page ==
What browser are you using?== using the buddypress 2011 theme as well. ==
Which BuddyPress 2011 theme? theme URI? Does the same behavior apply when you change to bp-default theme?May 2, 2012 at 11:41 pm #133894In reply to: do not have associated WordPress Pages
starprintbrokers
MemberI am stuck again. I worked with my host and had the entire site removed. I removed themes, WordPress, everything to start with a fresh install. I installed WordPress, then BuddyPress and them Salutaion. To my relief, all the pages showed up. I tested it by going going to the template’s “Register” and “Sign in buttons on the first page. They worked fine. In Register on that front pagepull down menu, I clicked the “Sign up instantly!” button. It took me right to the Registration page, just as it should. I starting add in photos, and content to the Why MeggieBooks and the Get in Touch pages. I’ve been careful not to change many settings unless so I would not run into trouble. I have not added any plugins. So I was just showing it off, and pressed the “Sign up Instantly!” button and it now takes me to the front page, or maybe doesn’t take me anywhere. I see that all the content is now gone on the Registration page.
April 30, 2012 at 5:42 pm #133764In reply to: Getting Started…
Tilley46
ParticipantThanks @mercime– I got the Home Page sorted and changed the general settings, but still can’t view or get the ‘registration’ page functioning. It appears that the pages ‘activate’, ‘activity’, ‘forums’, ‘groups’, ‘members’, and ‘register’ were all created when BP was installed and activated. However, when clicking ‘view page’ on both the ‘forums’ and the ‘register’ pages in the WP pages menu, it links to ‘Home’- the static Home Page I created- instead of a ‘forums’ or ‘registration’ page… Not sure what the issue is. Do I need to reinstall BuddyPress after having changed the general settings?
April 25, 2012 at 12:42 am #133522@mercime
Participant@markyeoj what I see are some custom modifications on your end that went awry. Change to bp-default theme and deactivate plugins, I believe issues will be corrected.
P.S. after I log in, I get redirected to this same topic and I have to go to dev.freelanceu.net/zim/fitnessdiary/ not good.April 15, 2012 at 3:27 am #132991@mercime
Participant@mrlobaloba remember that solving this involved changing to bp-default theme and deactivating other plugins except BuddyPress beforehand and assigning the new Page Attivita to the Activity stream in BuddyPress > Pages and clicking save.
This was what I did in that specific installation – simple really:
1. Go to Network Admin dashboard menu BuddyPress > Components – deactivate activity stream component, click button to save/update.
2. Go to lavori.italianproplayers.com/wp-admin (where you defined BP i.e., where BP is installed) and dashboard menu Settings > Permalinks and click on Save button.
3. Go back to Network Admin dashboard menu BuddyPress > Components – Activate activity stream component, click button to save/update
4. Check that the page Attivita is selected for the Activity stream in BuddyPress > Pages and click save.
5. Go back to lavori.italianproplayers.com/wp-admin dashboard menu Settings > Permalinks and click on Save button.Note that the above might or might not work for other installations.
I suggest that you set up BP components, pages, forums, etc. and adding BP plugins using the bp-default theme. Test if BP components and plugins work using bp-default theme as well. Change to BP-compatible or BP-ready theme if you’re satisfied that your default installation is working well.
April 5, 2012 at 1:22 pm #132494In reply to: Buddypress Upgrade Created Menu Problem
tsmith870
MemberI am using the latest update on the theme. I’d think it must be a change in Buddypress after the recent update, since the theme was properly displaying the menu prior to the BP update. Is the prior version of BP still available for download? The quickest fix is probably for me to re-install that version.
March 30, 2012 at 4:44 am #118368In reply to: Buddypress menus
not1_name
MemberThank you for taking the time to get back to me. It’s nice to confirm what I suspected. ie, best remove the buddybar on small screens and have the profile menu as the main one. I’ll change the home button to site-wide activity, and then have the profile as a compact drop down for mobile devices. I’ll report back when I get it set up.
March 17, 2012 at 10:46 pm #131541In reply to: Change css on menu tabs
@mercime
ParticipantOverwrite styles from parent theme https://buddypress.trac.wordpress.org/browser/tags/1.5.4/bp-themes/bp-default/_inc/css/default.css#L501 in your child theme
Firebug, a Firefox add-on, can help you inspect the element and change the style you need.
March 15, 2012 at 1:33 pm #131414In reply to: Change Width of Buddypress and menus
jamesmcbennett
Member@mercime I still can’t figure out how to get it on one line……
Here is header…
http://pastebin.com/r1Pwi5hRMarch 11, 2012 at 9:57 pm #131244In reply to: Change Width of Buddypress and menus
@mercime
Participant== Is there a way to get it on the same line. ==
Adjust style of the navigation menu to add space for the new profile link on the right of the default navigation UL. Use Firebug, a Firefox add-on, to identify the styles that affect the positioning of the custom navigation and move it to the left
March 11, 2012 at 5:38 pm #131236In reply to: Change Width of Buddypress and menus
jamesmcbennett
MemberSo on my header page I have placed the code you provided and activated plugin to get profile link in main nav meny.
I can either get it one line below (current http://pastebin.com/xJ5Y02nA) or by moving the new code up one or two lines, the “Profile menu” appears above the line above main nav menu. Is there a way to get it on the same line.
http://www.fabsie.com/wp-content/uploads/2012/03/corrections-fabsie2.pngMarch 11, 2012 at 5:16 pm #131235In reply to: Change Width of Buddypress and menus
jamesmcbennett
MemberPossibly this might help
http://www.fabsie.com/wp-content/uploads/2012/03/corrections-fabsie.pngThe
div#subnav.item-list-tabs {
margin: 0px 0px 20px 0px !important;
}
moves the GREEN LINEI want to move the dropdown menu saying “last active” towards left so that it fits within the white rectangle (green dashed line) without being cropped.
@mercine The above code is controlling the wrong part…..
March 8, 2012 at 7:07 pm #131051In reply to: Change Width of Buddypress and menus
jamesmcbennett
MemberFlexi-header.php
What should I modify and how do I get the profile/mesages links into the nav links?
March 8, 2012 at 6:54 pm #131047In reply to: Change Width of Buddypress and menus
jamesmcbennett
Member@mercine
Great, got it a little bigger, now back to this….
http://www.fabsie.com/wp-content/uploads/2012/03/buddypressproblem.pngany idea how to move the “last active” to left.
March 8, 2012 at 6:40 pm #131045In reply to: Change Width of Buddypress and menus
@mercime
ParticipantRemove code afer `
` in your header.php, It’s going to wreck the layout. You’ve got to ask theme developer where you can add that code in the custom navigation menu of the premium theme.More importantly, your layout is wrecked in the content area. Some styles added to your stylesheet like:
`body.directory #content {
margin: 0 34% 0 7.6%;
width: 58.4% !important;
}
div#content .padder {
margin-right: 351px;
}
etc.`
have compounded the problem. Those styles were not there before nor is that one of the recommended additions at all.March 8, 2012 at 1:35 pm #131032In reply to: Change Width of Buddypress and menus
jamesmcbennett
MemberAlso not sure how to get part II working.
Plugin Installed
header .php now reads
`
<html ><meta charset="” />
<body id="” >
`
Not sure what you mean by
“Caveat: you would need to manually change the div classes/ID of the menu UL/LI in the plugin’s bp-profile-menu.php file”March 8, 2012 at 1:21 pm #131031In reply to: Change Width of Buddypress and menus
jamesmcbennett
MemberDeleted above code from stylesheet.
http://www.fabsie.com/forums still doesn’t work.Any other tips.
-
AuthorSearch Results