Search Results for 'theme'
-
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 18, 2012 at 12:07 am #135974nickharambee
Participant@karmatosed Thanks for this. It works well except that I’d like the sidebar to be a fixed width, and the content to be a variable width (up to the max width setting). Is there any way to adapt your method to work with a fixed width sidebar?
June 17, 2012 at 9:31 pm #135968In reply to: buddy press toolbar
danbpfr
Participanthello,
add this to your child theme’s functions.php
`// remove visit random menu on admin bar
remove_action( ‘bp_adminbar_menus’, ‘bp_adminbar_random_menu’, 100 );`June 17, 2012 at 9:07 pm #135967Tammie Lister
ModeratorYou can take a slightly simplier approach:
div#content { remove the margin-left, float it right and set a width of say 80% *you may have to adjust this to fit }div#sidebar{ change to be a width % like 17% and float left, remove the margin left -100% }You will have to tweak this a little to work for yourself but this is a less restrictive approach and keeps some of the responsiveness of the default theme.
June 17, 2012 at 4:36 pm #135960In reply to: Adding jQuery script for background image animation
phrees
MemberTry using wp_enqueue_script in your theme’s functions.php file. Put jQuery in as a dependency.
https://codex.wordpress.org/Function_Reference/wp_enqueue_script
June 17, 2012 at 3:18 pm #135959In reply to: Buddypress actions and group activity stream
shanebp
ModeratorAddressing just the do_action part of your question.
add_action is used to call a particular function
do_action is used to provide a hook to and specify when/where that function is calledFor example, in groups/single/activity.php, you should see this:
``
So, in your theme functions.php, you could do this
`
add_action( ‘bp_before_group_activity_content’, ‘my_function’);
function my_function() {
echo “my_function was called“;
}
`You should see “my_function was called” after the form and before the activity listings on all group activity pages – because that is where the do_action is located.
You need to read up on do_action / add_action and apply_filters / add_filter.
These concepts are essential to creating any WP codeJune 17, 2012 at 11:12 am #135955danbpfr
ParticipantHi,
No answer but a single question…
Did you assign a page for forum ? If yes, and because you installed bbPress as standalone forum, a forum page is not necessary.
A forum page is only needed when you install BP including forums for groups.It seems that many people encouter such comment button problem since BP 1.5.6 update.
Perhaps try to change permalinks settings and test with BP Default…
June 17, 2012 at 9:59 am #135953In reply to: Profile fields and Activity Stream not working.
ninjaface
ParticipantSwitching to the default buddypress theme does not correct this issue. Could this be some sort of issue when during an install maybe of buddypress? If so how would I do a clean reinstall and would this affect my existing content?
June 16, 2012 at 11:53 pm #135946In reply to: Adding Dynamic Profile Link to Main Menu Item
@mercime
Participant@thadman as I mentioned above, the code works in Custom Community theme per my test.
Posted in pastebin.com => functions.php file of Custom Community with the dynamic profile link at the bottom of the file. http://pastebin.com/cagpd9Mc
June 16, 2012 at 10:59 pm #135945In reply to: Adding Dynamic Profile Link to Main Menu Item
Thadman
Participanthttp://www.puclpodcast.com/newfinal? Is a custom community theme and that function file does have a a call for wp_nav_menu.
June 16, 2012 at 10:51 pm #135944In reply to: Adding Dynamic Profile Link to Main Menu Item
Thadman
ParticipantOk Thanks.
I am using Custom Community Version 1.8.9.1 though, I’m switching from iBlogPro because I wanted to start using buddypress. The site at the front is an iBlogPro Theme but that function file is from the custom community theme.June 16, 2012 at 9:05 pm #135939In reply to: Adding Dynamic Profile Link to Main Menu Item
@mercime
Participant@thadman the code won’t work with your theme. You should contact theme developer (or use forums of iblogPro users) who has coded own custom menu and therefore is not using wp_nav_menu function directly to call the menu.
June 16, 2012 at 8:44 pm #135935In reply to: [Resolved] Can’t install BuddyPress – White Screen
@mercime
Participantnickbaer, this topic is resolved for Pinhead149, original poster of the topic. You can continue here or start a new topic for your issue. What theme was activated in your installation when you activated BuddyPress? Where are you hosted? Linux or Windows hosting? Shared hosting plan?
June 16, 2012 at 8:03 pm #135929enderandrew
MemberI assume it is most likely that the theme isn’t working with the unreleased 1.6 yet. However, I’m curious if someone could perhaps help me get it working. I want to test and troubleshoot 1.6 SVN.
June 16, 2012 at 7:29 pm #135927@mercime
Participant== 9. Are you using the standard BuddyPress themes or customized themes? Suffusion with the Suffusion Buddypress pack ==
This is a Suffusion/BuddyPress pack plugin issue. Please bring this to the developer’s attention. However, BP 1.6 is not out yet so I’m not surprised Sayontan, the developer, hasn’t released any updates yet.
June 16, 2012 at 7:25 pm #135926enderandrew
MemberI’ve modified what I believe is the relevant suffusion function to more closely mirror what is in bp-default.
`function suffusion_include_bp_js() {
if (!is_admin() && function_exists(‘bp_is_group’)) {
wp_enqueue_script(‘suffusion-bp-ajax-js’, get_template_directory_uri() . ‘/_inc/global.js’, array( ‘jquery’ ), $version );
$params = array(
‘my_favs’ => __( ‘My Favorites’, ‘buddypress’ ),
‘accepted’ => __( ‘Accepted’, ‘buddypress’ ),
‘rejected’ => __( ‘Rejected’, ‘buddypress’ ),
‘show_all_comments’ => __( ‘Show all comments for this thread’, ‘buddypress’ ),
‘show_all’ => __( ‘Show all’, ‘buddypress’ ),
‘comments’ => __( ‘comments’, ‘buddypress’ ),
‘close’ => __( ‘Close’, ‘buddypress’ ),
‘view’ => __( ‘View’, ‘buddypress’ ),
‘mark_as_fav’ => __( ‘Favorite’, ‘buddypress’ ),
‘remove_fav’ => __( ‘Remove Favorite’, ‘buddypress’ )
);
wp_localize_script( ‘suffusion_include_bp_js’, ‘BP_DTheme’, $params );
if ( is_singular() && bp_is_blog_page() && get_option( ‘thread_comments’ ) )
wp_enqueue_script( ‘comment-reply’ );
}
}
add_action( ‘wp_enqueue_scripts’, ‘suffusion_include_bp_js’ );`June 16, 2012 at 7:24 pm #135925In reply to: [Resolved] Can’t install BuddyPress – White Screen
@mercime
Participantnickbaer – BP Columns is a child theme of bp-default theme which means you need to activate BuddyPress plugin first before you can use BP Columns.
June 16, 2012 at 7:17 pm #135924In reply to: [Resolved] How to modify the width of adminbar?
@mercime
ParticipantAdd the following to your theme’s stylesheet:
#wp-admin-bar { left: auto !important; max-width: 960px !important; width: 960px !important; }If you know CSS, then you can use Chrome Developer or add Firebug to Firefox to identify which selector to style/restyle.
June 16, 2012 at 7:16 pm #135923In reply to: [Resolved] Can’t install BuddyPress – White Screen
nickbaer
MemberSo, on the 3rd fresh install of WP – no BP yet,
Before trying BP, went to install BP Columns as the theme.
Broken Themes
The following themes are installed but incomplete. Themes must have a stylesheet and a template.
Name Description
BP Columns The parent theme is missing. Please install the “bp-default” parent theme.How can I do these manual things, if everything is auto install?
June 16, 2012 at 7:12 pm #135921In reply to: [Resolved] How to modify the width of adminbar?
Tammie Lister
ModeratorYou want to adjust the CSS here:
body#bp-default #wp-admin-bar .padder { min-width: 960px; max-width: 1250px; }You may also want to do:
#wp-admin-bar { width: 100%; }Depending on your theme.
Try putting that in your child theme with the changes you want.
June 16, 2012 at 6:58 pm #135917In reply to: [Resolved] Can’t install BuddyPress – White Screen
nickbaer
MemberMe too.
I did a fresh install of WP thru my Host. Updated it to current. Updated the 2011 Theme.
Went to plugins page and picked and installed BP.
Got a couple of different fatal Error warnings about a exhausted memory in one or another .php page… then the same White page at /wp-admin.
Happened on 2 separate fresh installs.
Scared to try 3rd.
June 16, 2012 at 4:55 pm #135913In reply to: I’m not getting a register button or page.
@mercime
ParticipantYou’re welcome
== the defalt doesnt look so great for that. ==
The bp-default theme can be tweaked to look like a gaming theme if you know some CSS/HTML at the very least. Change background color to dark/black, add some silver/gold medals/otherstuff with some cool header font/s and you’re good to go.
Or, you could always download a regular WordPress theme with the look you want. Then you will only have to install/activate BP Template Pack plugin and go through the Appearance > BP Compatibility process. We have a list of template-packed WP theme to date https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#template-packed-wordpress-themes
June 16, 2012 at 4:29 pm #135912In reply to: how can i manage buddypress’s navigation baar
@mercime
ParticipantI just checked your site. There’s only one navigation menu in your installation, the main navigation under the site title. Aside from that, you’re using the Suffusion theme which is a theme framework supported readily by the theme author. I suggest that you post this question at the Suffusion theme forums or at https://wordpress.org/tags/suffusion
June 16, 2012 at 3:50 pm #135911In reply to: I’m not getting a register button or page.
dreamlarp
Memberthank you very much. i was looking in the BP settings. I would like to know a good theme for a game site. the defalt doesnt look so great for that.
June 16, 2012 at 1:35 pm #135905In reply to: sign up error page
Paul Wong-Gibbs
Keymaster> If i change the permalink to other structure, my custom categories are redirects to error page.
You *need* non-default permalinks for BuddyPress. Deactivate BuddyPress, switch to the TwentyEleven theme, pick a permalink choice from the Settings > Permalinks page. Then, check that access posts and pages.
-
AuthorSearch Results