Search Results for 'theme'
-
AuthorSearch Results
-
August 27, 2010 at 4:24 am #90527
In reply to: Buddypress problem….see movie we made for details
Mark
ParticipantLooks like Javascript problems. I’d be checking the CSS id’s and class names (in the theme HTML code) to make sure they are what they should be in order to work with BP.
August 27, 2010 at 2:36 am #90525In reply to: adding links to header navigation
pcwriter
Participant.You could also try my plugin (he says with shameless self-promoting grin).
See this post for the latest beta version: https://buddypress.org/community/groups/add-all-nav-links-to-bp-adminbar/forum/topic/updated-the-beta/
Here are the user configuration options available in the admin panel under “Settings” > “BP-WP-Navbar”
– Hide or display the main theme navigation
– Hide or display the site name in your new adminbar
– Hide or display the Login and Signup links in the adminbar
– Hide or display the “Visit Random” menu
– Select whether to display top-level WordPress pages horizontally or in a dropdown menu
– Define the label for the dropdown in WordPress 2.x
– If you’re running WP3.x, the plugin will fetch whatever custom menu labels you assign and display them in the admin bar along with all child pages in dropdowns
– Define the label for the Buddypress directory dropdown (default = “Community”)
– Define the font, font-weight and font-style for all menu items
– Define ALL colors: navbar background, main and sub menu item backgrounds, border, text and hover colors too
– Set the overall width of the navbar and of sub-menus
– Set the height of all menu items
– Adjust margins where required
– Reposition your fancy new custom navbar anywhere you like, relative to your theme so it scrolls with your pagesIf you add categories to your custom menus in WP3.x, the plugin will pick them up and display them in whichever menus they are assigned to. Give it a whirl.
August 27, 2010 at 2:22 am #90524In reply to: adding links to header navigation
govpatel
ParticipantI am using twentyten child theme and have transferred all folders that buddypress uses for menu using BuddyPress Template Pack plugin and than use the menu to add buddypress menus using custom link. @keela I can show how if you can contact me.
August 27, 2010 at 1:28 am #90519In reply to: Problem with Title Tag in Category and Tag
@mikey3d
Participant“There is something wrong in your set up. The default installation/theme shows the title tag with spaces between the words.”
I have install WordPress and BuddyPress as clean as pure water. Trust me, it is the BuddyPress problem.
“Are you using the default theme unmodified?”
Default theme
“Have you got any additional plugins running?”
No! Only BuddyPress and I have added bp-custom.php from the last time we talked. I disable bp-custom.php.
https://buddypress.org/community/groups/requests-feedback/forum/topic/no-title-of-each-posts-and-pages/The problem is still the same.
Thanks, Mikey3D
August 27, 2010 at 1:07 am #90518In reply to: adding links to header navigation
Roger Coathup
ParticipantYou’ll need to create your own theme and modify the header.php file.
Theme design needs PHP, HTML and CSS skills. If you’ve got those, you are flying!
Check in support.. Documentation for the article on child themes.
If you are not competent building your own theme and editing the php file, you might be able to find an off the shelf theme that automatically includes categories in the nav menu
August 27, 2010 at 12:49 am #90517In reply to: Problem with Title Tag in Category and Tag
Roger Coathup
Participant@mikey3D – there is something wrong in your set up. The default installation/theme shows the title tag with spaces between the words.
Are you using the default theme unmodified? Have you got any additional plugins running?
Switch to default theme, disable all plugins and let us know if the title tags now have spaces
August 26, 2010 at 11:31 pm #90512Roger Coathup
ParticipantThis is a simple thing to achieve with just a little custom theming. It’s also highly theme specific (if, where, when, how big, etc, you want adverts), and not something I’d expect in a default setup.
If you want a simple plugin solution, there are lots of off the shelf basic plugins in WordPress that should work without problem in BuddyPress (ad-rotator plugins). Use a theme with dynamic sidebars, install the plugins and add the widgets.
If advertising is really crucial to the business, then you are better to work with a full powered ad management system, e.g. OpenX or Google Adserver. Again, these are straightforward to include in a BuddyPress site: create dynamic sidebars in your theme for each of the advertising zones you require, then insert widgets with the ad zone codes from your management system. These ad management systems provide all the options you requested, and a whole lot more.
August 26, 2010 at 10:49 pm #90509In reply to: Adding Title to Buddypress site
joe
ParticipantHey thanks for the prompt reply!
I think I’ve done it now (prior to reading your suggestion).
I edited the CSS for the theme.. I think I used the ‘Z-index’ command and place the title underneath everything else, is this an OK way of achieving my goal?
If not I’ll gladly go your route, thought I think they’re basically the same thing?
Thanks!
Joe
August 26, 2010 at 9:11 pm #90493In reply to: put admin bar links somehwere else
Hugo Ashmore
ParticipantTo be more accurate the adminbar is added to the wp_footer via an add_action in the core adminbar file so you would need to remove that action and add a new action ‘bp_after_header’
You would do something along the lines of [not tested]
remove_action( ‘wp_footer’, ‘bp_core_admin_bar’, 8 ) ;
add_action( ‘bp_after_header’, ‘bp_core_admin_bar’, 8 );Probably ought to be in a wrapper function? and would be run from a functions.php file in a child theme to avoid editing of any core files.
August 26, 2010 at 8:29 pm #90489In reply to: put admin bar links somehwere else
jenyus
MemberWhere do i find the call to the admin bar? its not in the footer for my theme so if i knew what the call was i could search for it a lot easier.
yeah, i dont want to do relative or absolute positioning.
August 26, 2010 at 8:06 pm #90487In reply to: put admin bar links somehwere else
Hugo Ashmore
ParticipantThen you should customise your theme and move the admin bar from the footer to an inflow position after the header, it’s that or use the positioning property absolute (bad idea) or relative using a huge offset value equally not a great idea – to effect the adminbar placement.
August 26, 2010 at 7:10 pm #90483In reply to: BuddyPress Stopped working
robo523
Memberyes it does work with the default, and it used to work with my custom theme, until i had to reinstall my theme.
August 26, 2010 at 6:45 pm #90482In reply to: Adding Title to Buddypress site
govpatel
ParticipantI visited your site and I do not see title at top.
Depending on how your theme is setup you can do that by going into header.php file and check the class Id used than go in style.css and look the class and add
display:none;
than it will not display the title and description.
This is what i have in default twentyten theme
#header #site-title a{
color: #555555;
float: left;
font-size: 40px;
font-weight: bold;
margin-bottom: 20px;
text-shadow: 0 2px 1px #ffffff;
display:none;
}
#header #site-description{
float: right;
font-style: italic;
margin: 10px 0;
display:none;
}Title and description are important for search engines.
August 26, 2010 at 1:32 pm #90458Roger Coathup
Participant@davidniyat – you can’t just cut and paste sections from the default theme if they rely on functions that are defined elsewhere in the theme. It’s designed to be use a parent theme.
The bp_dtheme functionality is embedded / used in various places in the theme. In particular, you need to take a look at the functions.php file where those functions are defined.
August 26, 2010 at 1:14 pm #90456In reply to: BuddyPress Spam
Ted Mann
ParticipantI’m using a custom child theme, so the footer copy has been changed. At the risk of inviting more spam, here’s my signup page: http://injersey.com/join-injersey
I’ve got si-captcha, Humanity, alternate slug, htaccess tweak, and 2 required profile fields. At this point it’s just getting kind of absurd. There must be some kind of backdoor that’s letting them in. Like Matt ( @footybible ), every single one of these spam signups is registering for a sub-blog. Unlike Matt, I offer the ability to register for a town via the Group Registration Options plugin ( https://buddypress.org/community/groups/bp-registration-options/ ) developed by @Messenlehner. Worked pretty well until 2 weeks ago, when we started getting slammed every day at about 2am with spam signups and posts.August 26, 2010 at 11:35 am #90449Paul Wong-Gibbs
KeymasterAdmin bar not appearing in front end is probably because your theme doesn’t call wp_footer()? And what is your permalink structure, can you share it here?
August 26, 2010 at 11:00 am #90445kateM82
Memberi can’t change the theme to bp-default theme, it has to be able to be integrated into my live site.
the permalink structure does get changed with the change to wp3.0, can you let me know what it needs to be to work?
thanksAugust 26, 2010 at 10:04 am #90441@mercime
ParticipantDid you change permalink settings to other than default? If that doesn’t work, change theme to bp-default theme.
August 26, 2010 at 7:09 am #90428In reply to: How do I change the name of the “Forum” tab
danbpfr
ParticipantMany solution are possible… but the best is to create a child theme so you don’t loose your custom changes at the next BP update.
In the child theme, you install a copy of header.php where the menu containing “forum” is set. That’s all.August 26, 2010 at 3:09 am #90417imjscn
Participant@paulhastings0, I see your solution will add an Activity page, that’d be great if want BP fully functional on other themes. But I want less than that. The final result I wish to achive is 2 tabs in root blog’s sidebar showing “Recent Activities” and “Lastest Topics”. When visitor click activity or topics in this tabs, it goes to the activity/topic in the 2nd blog which is BP themed. How?
August 25, 2010 at 11:33 pm #90401In reply to: put admin bar links somehwere else
pcwriter
ParticipantHere comes some shameless self-promotion! Try the beta-version of my plugin: Add-All-Nav-Links-To-BP-Adminbar. You can add all your main navigation items to the bp-adminbar, hide your theme’s main nav, then customize your new adminbar just about any way you like, including repositioning the whole thing anywhere on your pages. Here’s a screenshot of the backend admin panel: http://i33.tinypic.com/2nvea8j.jpg
You can download from my site here:
http://nowrecovery.com/downloads/add-all-nav-links-to-bp-adminbar2.1beta.zipThe current release is available here:
https://buddypress.org/community/groups/add-all-nav-links-to-bp-adminbar/If you try it, please let me know what you think in the plugin’s forum
August 25, 2010 at 10:44 pm #90398In reply to: BuddyPress Stopped working
Roger Coathup
Participant1. Does it work with the default BuddyPress theme bp-default?
2. Are your permalinks working – try changing them to a custom setting such as /%category%/%postname%/ – do you receive any error messages about .htaccess?
August 25, 2010 at 9:34 pm #90388In reply to: Buddypress not on themainblog ?
John
ParticipantI’ve removed the redirect rules.
At themainblog/network/ there’s the default buddypress theme but when I click on a member’s activity for example I always end up ion the member directory page, If i click on a name from activity It’s getting me to the same page.
On the activity page, I’ve got two path of link :
http://127.0.0.1/themainblog/network/members/admin/ – when I’ve posted an update after the relocation of buddypress
http://127.0.0.1/themainblog/members/admin/ – the old links from the latest updates I’ve posted on my original buddypress installationAugust 25, 2010 at 9:11 pm #90382In reply to: Buddypress not on themainblog ?
John
ParticipantYes but I didn’t had to activate it, it was already network activated (It was previously “linked” to http://127.0.0.1/themainblog/).
I’ve enabled the theme on blog #9.August 25, 2010 at 9:02 pm #90380In reply to: Buddypress not on themainblog ?
r-a-y
KeymasterAhh okay, wp-config.php is better actually.
Did you activate BuddyPress network-wide?
Also, did you enable the BuddyPress Default theme on blog id #9? -
AuthorSearch Results