Search Results for 'theme'
-
AuthorSearch Results
-
March 4, 2011 at 9:58 pm #106837
In reply to: messages – Select, Mark As – links do not work
shanebp
ModeratorFixed, so far, by doing this:
Created a directory called _inc under themes/my theme and copied in ajax.php and global.js from bp-default/_inc
Put this in your theme/functions.php
/* Load the AJAX functions for the theme */
require_once( TEMPLATEPATH . ‘/_inc/ajax.php’ );/* Load the javascript for the theme */
wp_enqueue_script( ‘dtheme-ajax-js’, get_template_directory_uri() . ‘/_inc/global.js’, array(‘jquery’) );March 4, 2011 at 8:44 pm #106831In reply to: Profile background–How do I add a color?
Avi M
ParticipantI think you would have to go into buddypress it’s self and change the css.
I was able to do a fair amount of style customization to BP but I’m using custom theme designed to work with bp so not sure how others would go about it.
https://buddypress.org/community/groups/buddypress-group-css/
That being said you might want to give this plugin a look and see how it does things and then adapt and aplly to your own needs.
March 4, 2011 at 4:37 pm #106816In reply to: Sorry, that file cannot be edited
jakeL
MemberI didn’t know if this was a bug or something intentional in WP. It would be very nice to be able to edit the child theme PHP files in the WP editor rather than editing offline and re-uploading to make any changes
March 4, 2011 at 4:34 pm #106815jakeL
MemberJust started getting this problem too! I believe it may have began after I inserted my own PHP file for group-header.php in my child theme. *However*, the only lines of code I deleted were lines 6-9 from that file, to remove the Group Admins text and avatars and only show the moderators. The text “Group Mods” shows up but below it says “no mods” just like your issue.
Any help would be great!!
March 4, 2011 at 3:04 pm #106811Virtuali
ParticipantYour not an idiot. You can use `<a class="button" href="` anywhere in your theme to place a button to link wherever you want it to.
Place this in the code wherever you want it to appear

But make sure you end it with ``
March 4, 2011 at 1:07 pm #106804In reply to: Updating 1.2.8 and Template Pack
pcwriter
ParticipantNothing has been changed in bp-default theme from Buddypress 1.2.7 to 1.2.8. You can see changes have been made only to core files here:
https://trac.buddypress.org/changeset?old_path=%2Ftags%2F1.2.7&old=3570&new_path=%2Ftags%2F1.2.8&new=4078If you’re unsure about updating, keep a copy of BP1.2.7 handy so you can revert back to it if anything breaks
March 4, 2011 at 11:32 am #106802In reply to: autocomplete not functioning when composing message
xavieremerson
Memberhi, everybody,
I’m also stuck in this….
But I got the solution…actually i used the tipe from ‘wizard_clp’ that he identifies the location where the actual problem is…
for this you have to activate friends and also u have minimum one fiend to auto complete to workout.
then his problem is how to edit core files
i just copied that function ie ‘messages_autocomplete_init_jsblock’ into my theme unction page renamed it.
add it into the actions wp_head;
then i changed the class of that variable to make different from original one
ie var acfb =jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . ‘/wp-load.php’ ?>’,inputClass : ‘.send-to-inputs’,});i think this vl help you lot…
Thankz for the tip…
god bess you
xavieremerson1@gamil.comMarch 3, 2011 at 10:52 pm #106766@mercime
Participant@FiestyLatina you’re welcome. Note that you will have to implement your theme’s HTML structure to some BP plugins, not all. You’ll know when you have to make the changes when you see the misalignment of your sidebar and content area on the page/s where the plugin is being implemented.
March 3, 2011 at 9:44 pm #106759In reply to: Child theme + custom header + functions.php
pcwriter
Participanthttps://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/ says:
“If you create a blank functions.php file in your child theme, the parent theme functions.php will still be loaded. This will allow you to inherit existing functions, but also add your own. You must make sure you give your child theme functions a unique name, otherwise they will clash with the parent.”
In other words, you CAN create a functions.php file in your child-theme, but the functions IN that file must have unique names.
March 3, 2011 at 9:11 pm #106756In reply to: Sorry, that file cannot be edited
@mercime
Participant@StevieG adding footer.php from bp-default to your child theme shouldn’t mess with your install.
So going back to “If I try to access the files in my child theme I get the error message ‘Sorry, that file cannot be edited’.” is this in relation to editing the child theme files via Network Admin > Appearance > Editor panel? If not, what files are you trying to edit and where?
EDIT- just found out you posted same topic in WP Forums and the problem as posted there was clearer
March 3, 2011 at 7:52 pm #106747In reply to: Changing navigation
r-a-y
KeymasterCan you be specific? Excluding widgets, the bp-default theme doesn’t have a sidebar nav.
March 3, 2011 at 2:05 pm #106716In reply to: Child theme + custom header + functions.php
bazookaman
MemberThe tutorial I read about child themes here: https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/ says you cannot have a functions.php file in the child theme b/c it conflicts with the real functions.php file. So it says to rename it. To your second point, that is exactly what i want to do. I WANT to override the default functions.php file b/c I want to change the default header size. But since the default header size DOES exist in the default functions file you are saying I cannot override it with a child theme?
March 3, 2011 at 12:59 pm #106714ftrenkam
MemberHad the same problem on a fresh BP 1.2.8 install on a fresh WP 3.1. Changed theme to bp default, changed permalink settings, made sure .htaccess contained rewrite rules as generated by BP. mod_rewrite was definitely activated. However, the .htaccess in the BP root (a subdirectory under a local domain) was not evaluated at all. Ubuntu 10.04 server edition, everything installed via packet management except for WP/BP which were simply unzipped from the download archives.
This entry in httpd.conf helped:
~~
`
Options FollowSymLinks
AllowOverride FileInfo Options
Allow from all
`
~~After that all the links on tabs, registration etc. worked fine.
March 3, 2011 at 12:41 pm #106713In reply to: 404 error page on most buddypress links
ftrenkam
MemberHad the same problem on a fresh BP 1.2.8 install on a fresh WP 3.1. Changed theme to bp default, changed permalink settings, made sure .htaccess contained rewrite rules as generated by BP. mod_rewrite was definitely activated. However, the .htaccess in the BP root (a subdirectory under a local domain) was not evaluated at all. Ubuntu 10.04 server edition, everything installed via packet management except for WP/BP which were simply unzipped from the download archives.
This entry in httpd.conf helped:
~~
`
Options FollowSymLinks
AllowOverride FileInfo Options
Allow from all
`
~~Change the root dir of bp accordingly. After that all the links on tabs, registration etc. worked fine.
March 3, 2011 at 12:36 pm #106711In reply to: 404 Page not found
ftrenkam
MemberHad the same problem on a fresh BP 1.2.8 install on a fresh WP 3.1. Changed theme to bp default, changed permalink settings, made sure .htaccess contained rewrite rules as generated by BP. mod_rewrite was definitely activated. However, the .htaccess in the BP root (a subdirectory under a local domain) was not evaluated at all. Ubuntu 10.04 server edition, everything installed via packet management except for WP/BP which were simply unzipped from the download archives.
This entry in httpd.conf helped:
~~
`
Options FollowSymLinks
AllowOverride FileInfo Options
Allow from all
`
~~Change the root dir of bp accordingly. After that all the links on tabs, registration etc. worked fine.
March 3, 2011 at 1:30 am #106695In reply to: user profile sign-up
tiki16
ParticipantHello. Same problem. When you comment on a post it doesn’t appear and I can’t even see where I would be able to create a profile as a new user visiting the site. The author of the theme requires payment for support. Guess I got suckered in. All this work for a useless theme. yeesh!
I am working locally on xampp, windows 7 but doubt if that is the issue.
SteveMarch 3, 2011 at 12:34 am #106690In reply to: Child theme + custom header + functions.php
@mercime
ParticipantYou can have your own functions.php file in a child theme. Just make sure that the new function you’ll be adding is not the same as the ones already in functions.php of bp-default parent theme.
March 2, 2011 at 12:16 pm #106665In reply to: Creating an blank buddypress theme
robsmitties
MemberKa Yue, thats exacly what i need.. when does this theme release? i want to use it to understand the buddypress code so i can build my site from scratch…. thanks a lot
March 2, 2011 at 5:54 am #106653In reply to: user profile sign-up
Paul Wong-Gibbs
KeymasterGo back to the default (unedited) theme, disable any plugins other than BuddyPress, and try again. If it still doesn’t work, are there any messages in your web server’s error log.
March 2, 2011 at 5:24 am #106646In reply to: Installed BP, but I can’t create any forums?
ARHistoryHub
Participanthttps://codex.buddypress.org/home/
The docs are fairly thorough, and assuming you’ve correctly installed buddypress and bbPress forum integration, the forums should appear along with all the other newly created pages – i.e. – example.com/forum, example.com/groups. If these pages are not appearing in your navigation, your wordpress theme may not be compatible with wordpress. In this case you could switch to a theme designed for BP or work to make your current theme compatible.
Also, make sure these components are enabled in the buddypress admin dashboard settings. If you feel you’ve done everything correctly, you should be able to create new groups by going to yoursite.com/groups and clicking the new group button that appears at the top of the page.
March 2, 2011 at 3:11 am #106634FiestyLatina
MemberOmg that worked! Thank you to everyone that took the time to help me, if there’s anyway I can repay, please let me know!
March 2, 2011 at 2:48 am #106633In reply to: Change Menu Bar
pcwriter
ParticipantYou seem to be having difficulty with the basics. May I suggest switching to an easier theme to customize?
I designed BuddyLite with newbies in mind (like me!) You can get a similar look and feel as your current theme, while taking full advantage of WP3 custom menus, and a bunch of basic customization options through a simple admin panel.
You can download it here: http://buddylite.com/buddylite-basic/
March 1, 2011 at 7:02 pm #106595In reply to: lost tooltip on @user?
noizeburger
ParticipantThe fact that I’m using a standard wp-theme (arras – adapted to work with bp together with template pack) made me realise, that I have the same problem. When the site’s loading I can see the “?” for a short time, then it disappears and doesn’t work.
March 1, 2011 at 10:56 am #106571In reply to: Forum is not applied correctly
@mercime
ParticipantAt the end of the BP template pack process, per instruction on screen, you need to add (hardcode) new navigation tabs or links to your theme’s header.php to link to BuddyPress components directory pages.
Add link to the components you enabled in BuddyPress settings. The default set of links are:
* Activity: http://yoursite.com/activity/
* Members: http://yoursite.com/members/
* Groups: http://yoursite.com/groups/
* Forums: http://yoursite.com/forums/
* Register: http://yoursite.com/register/ (registration must be enabled)
* Blogs: http://yoursite.com/blogs/March 1, 2011 at 8:13 am #106565In reply to: Change Menu Bar
JamieMM
MemberI opened the folder and found the original custom css which is below and also the style.css which is after the custom. I didnt see where I could find the nav menu?
body {
width: 1000px;
}#leftSidebar {
width: 182px;
float: left;
padding: 20px 5px 20px 20px;
background: url( images/sidebar_back.gif ) top left repeat-x;
margin-top: 1px;
overflow: hidden;
border-right: 1px solid #e4e4e4;
}#leftSidebar .widget {
margin-bottom: 20px;
}#leftSidebar h3.widgettitle {
background: #eaeaea;
padding: 5px 15px;
font-size: 12px;
clear: left;
margin: 10px -4px 10px -20px;
}#wp-admin-bar div.padder {
width: 1000px !important;
}#content div.padder {
float: left;
width: 525px;
border-left: 1px solid #e4e4e4;
margin-right: 226px;
border-right: 0px solid #e4e4e4;
-moz-border-radius-topleft: 0px;
-webkit-border-top-left-radius: 0px;
-moz-border-radius-bottomleft: 0px;
-webkit-border-bottom-left-radius: 0px;
margin-left: -1px;
}div.post div.post-content, div.comment-content {
margin-left: 0px;
}THIS IS THE STYLE.CSS
/*
Theme Name: BP Columns
Theme URI: http://buddypress.org
Description: A 3 Column Buddypress theme.
Version: 1.2
Author: modemlooper
Author URI: http://twitter.com/modemlooper
Template: bp-default
Tags: buddypress, three-columns
*//* Inherit the default theme styles */
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css );
/* Inherit the default theme adminbar styles */
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css );
/* Custom styles */
@import url( custom.css );
-
AuthorSearch Results