Save file.
Search Results for 'theme'
-
AuthorSearch Results
-
February 8, 2012 at 9:33 pm #129495
@mercime
ParticipantTheme author of Suffusion theme has a created a plugin to make Suffusion compatible with BuddyPress, so you don’t need to install and activate BP Template Pack plugin
https://wordpress.org/extend/plugins/suffusion-buddypress-pack/February 8, 2012 at 4:53 pm #129474ngtszman
MemberI got the answer :
https://wordpress.org/support/topic/my-theme-isnt-showing-up-1Dashboard –> setting –> general setting –> “http://panjury.com/cms” , instead of
“http://localhost/cms”February 8, 2012 at 2:40 pm #129465In reply to: Registration and Activation pages missing
@mercime
Participant@andreao No need to put codes. Change to bp-default theme and deactivate plugins except BuddyPress to troubleshoot. WP/BP versions? Single WP or WP Multisite? Linux or Windows hosting?
February 8, 2012 at 8:13 am #129449In reply to: Alignment Issues Game Speed WordPress Theme
PsionicArchon
MemberThanks for your both late, and speedy reply. I figured I’d check back before I went to sleep, I didn’t think anyone would post so late. I was able to locate the appropriate .css files, for future reference (so no one else is confused), they are located in pluginsbp-template-pack right under my nose. I feel like a bit of an idiot now, however I managed to edit several margins that had been set to negative numbers, such as negative nineteen, which my style does not support it would seem.
As for the Avatar cropping, I have had no luck with this. I scanned the page you linked me, changed my theme, and even disabled it entirely just to rule out that possibility all together to no avail. I did notice however, that this error message is now popping up: There was a problem cropping the avatar, please try uploading it again.
When I attempt to crop any avatar’s for both groups and persons joining, the crop window does not appear over the picture. I can still select crop picture, only nothing happens. It grabs the corner of said image, and chooses that.
February 8, 2012 at 6:30 am #129448In reply to: Alignment Issues Game Speed WordPress Theme
@mercime
ParticipantRe: Cropping Avatars
Change to bp-default theme and check if you can crop there. If you can, well and good. If not, check out some trouble-shooting tips https://codex.buddypress.org/getting-started/before-installing/#wp-configuration
Re: Theme Compatibility
First thing’s first. Before making any WP theme (downloaded outside of WP theme repository) compatible with BuddyPress, make sure that it is secure. Download the Theme Check Plugin and see if there are warnings or required generated when you run the theme check. WP Theme Repo for example only accepts themes which do not contain warnings and required items.
I have just downloaded a copy of gamespeed per your link above and there are obfuscated code within 2 files I checked out so far – at the bottom of the theme’s functions.php file and all of footer.php file. Because of that, I can’t help you since I need all the HTML information in footer.php among other theme files for the BP Compatibility Process.
February 8, 2012 at 2:22 am #129442@mercime
Participant@snowlas You’re welcome and Congratulations. Glad you resolved layout to your satisfaction
February 8, 2012 at 2:02 am #129441In reply to: [Resolved] i have a Fixing Alignment problem…
@mercime
ParticipantB. Copy your theme’s sidebar2.php file and save as sidebar-buddypress.php
Open up sidebar-buddypress.php and add the following at the top of the file, above all other code:
``
And at the very bottom of the same file, below other code add this:
`jQuery(document).ready( function() {
if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
jQuery(‘div#blog-details’).toggle();
jQuery( ‘input#signup_with_blog’ ).click( function() {
jQuery(‘div#blog-details’).fadeOut().toggle();
});
});`
Save file.
Upload both header-buddypress.php and sidebar-buddypress.php to wp-content/themes/folder-of-your-templatemonster-theme/
Twenty Ten Child theme with BP Template Pack styling modifications for reference – https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/
February 8, 2012 at 1:59 am #129440In reply to: [Resolved] i have a Fixing Alignment problem…
@mercime
ParticipantSolution for your theme is different from that of ray of light theme because your theme has a different HTML structure.
A. Copy your theme’s header.php file and save as header-buddypress.php
Open up header-buddypress.php and add the following to the bottom of the file below other code:
`<div class="post" id="post-“>`Save file.
February 8, 2012 at 1:17 am #129437In reply to: Cannot Log Out After uploading bp-custom.php
daveC87
MemberThe custom Functions I added area as follows: (When I delete the bp-custom.php everything works fine again)
// Setups up Type=Full avatar pics for BP-post author
function bp_custompost_author_avatar() {
global $post;if ( function_exists(‘bp_core_fetch_avatar’) ) {
echo apply_filters( ‘bp_post_author_avatar’, bp_core_fetch_avatar( array( ‘item_id’ => $post->post_author, ‘type’ => ‘full’, ‘width’ => ’70’, ‘height’ => ’70’ ) ) );
} else if ( function_exists(‘get_avatar’) ) {
get_avatar();
}
}// Changes order for member profile menu items
function bbg_change_profile_tab_order() {
global $bp;$bp->bp_nav = 20;
$bp->bp_nav = 30;
$bp->bp_nav = 40;
$bp->bp_nav = 50;
$bp->bp_nav = 60;
$bp->bp_nav = 70;
$bp->bp_nav = 80;$bp->bp_nav = false;
$bp->bp_nav = false;}
add_action( ‘bp_setup_nav’, ‘bbg_change_profile_tab_order’, 999 );*/// Setup the navigation
// Props to http://wordpress.stackexchange.com/questions/16223/add-buddypress-profile-menu-item for helping me figure this out
// and http://themekraft.com/customize-profile-and-group-menus-in-buddypress/
function my_setup_nav() {
global $bp;bp_core_new_nav_item( array(
‘name’ => __( ‘my adventure list’, ‘buddypress’ ),
‘slug’ => ‘my-adventure-list’,
‘position’ => 10,
‘screen_function’ => ‘my_adventure_list_link’,
‘show_for_displayed_user’ => true,
‘default_subnav_slug’ => ‘my-adventure-list’,
‘item_css_id’ => ‘my-adventure-list’
) );
}add_action( ‘bp_setup_nav’, ‘my_setup_nav’, 1000 );
function my_adventure_list_title() {
echo ‘My Adventure List’;
}function my_adventure_list_content() {
?>
<?php
}function my_adventure_list_link () {
add_action( ‘bp_template_title’, ‘my_adventure_list_title’ );
add_action( ‘bp_template_content’, ‘my_adventure_list_content’ );
bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/my-adventure-list’ ) );
}?>
February 7, 2012 at 7:39 pm #129431snowlas
ParticipantI figured it all out. I used Firebug to grab the custom background CSS and placed it into my main style sheet.
Then for the getting rid of the side bar, I needed to adapt the code to match what in the full width template file compared to the page file. Then I had to make the same adjustment for the bottom in the sidebar file as well.
Thank you for all the help! I really needed it!
February 7, 2012 at 6:26 pm #129429In reply to: Problems with page titles
@mercime
ParticipantSomething is wrong. Let’s start with:
– WP/BP versions?
– Single WP or WP Multisite?
– Did you go through the installation wizard after you activated BuddyPress? https://codex.buddypress.org/getting-started/setting-up-a-new-installation/buddypress-1-5-installation-wizard/
– Did you install/activate BP Template Pack plugin and go through Appearance > BP Compatibility process to make your theme compatible with BuddyPress? https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
– URI to the page you were referring to where it just showed list of titles.
February 7, 2012 at 5:34 pm #129424@mercime
ParticipantB. Copy the theme’s sidebar.php and save as sidebar-buddypress.php
Open up sidebar-buddypress.php and at the very top of the file, above other code, add this:
`
`At the very bottom of the same file, below other code, add this:
`jQuery(document).ready( function() {
if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
jQuery(‘div#blog-details’).toggle();
jQuery( ‘input#signup_with_blog’ ).click( function() {
jQuery(‘div#blog-details’).fadeOut().toggle();
});
});`
Save file.
Upload header-buddypress.php and sidebar-buddypress.php to your server wp-content/themes/wp-creativix/
February 7, 2012 at 5:30 pm #129423@mercime
Participant@ki450751 I see you’ve installed BP Template Pack and have gone through the BP Compatibility process. Click on the Finish button and let’s proceed to the nitty gritty.
For the WP Creativix theme as seen here https://wordpress.org/extend/themes/wp-creativix
A. Copy the theme’s header.php and save as header-buddypress.php
Open up header-buddypress.php, at the very bottom of the file below other code, add this:
``February 7, 2012 at 3:34 pm #129418In reply to: Here’s What I Want To Do… Can You Explain How?
@ChrisClayton
ParticipantMembership – have you seen S2members? https://buddypress.org/community/groups/s2member/
The name, city ect, you can get that by default in buddypress via your wp-admin – go to buddypress/profile fields.
The profile stuff you can achieve by modifying the members/single/* files in your theme https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
Search – https://buddypress.org/community/groups/bp-better-directories/home/
To answer your last question – Pretty much.
The only plugin i couldn’t find was the one that forces buddypress to do my laundry…
February 7, 2012 at 8:18 am #129406In reply to: CONFLICT – with The Cart Press – Session Error
kailas108
MemberI posted the same issue with TheCartPress and they said the issue has to do with how the plugins initialize. I asked them to connect w/BP developers to look into it. I got the same error again today in my Activity stream when I replied to a post during testing.
Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home/shreemaa/public_html/httpdocs/wordpress/wp-content/themes/shree-maa/activity/comment.php:15) in /home/shreemaa/public_html/httpdocs/wordpress/wp-content/plugins/thecartpress/TheCartPress.class.php on line 781
February 7, 2012 at 7:08 am #129404In reply to: Error editing profile fields
viktor89
Member– Single wordpress install version 3.3.1
– BuddyPress version 1.5.3.1
– The theme is called Torn 1.7.6 by Louis Zuno
– Of plugins I have:
Akismet, bbpress, Bowe codes, BWP Google XML Sitemaps, Cubepoints, CubePoints Buddypress Integration, GD bbpress attachments, Maintainence Mode, Sociable, Social login, User role editor, wp e-commerce
– I tried deactivating all the plugins and changing to the default buddypress theme, but that had no effectFebruary 7, 2012 at 4:02 am #129401In reply to: [Resolved] Ray of Light WordPress Theme issues
The theme developer has been directed to this post. I thank you for your help and we shall see if this will fix the issues.
February 7, 2012 at 3:54 am #129400In reply to: [Resolved] Ray of Light WordPress Theme issues
@mercime
ParticipantSorry, but that is beyond the scope of the assistance I already provided here. Know that most of us who assist here are volunteers. If you are not able to make the basic template changes, you need to find someone or hire someone to do this for you e.g. at http://jobs.wordpress.net and refer them to this post.
February 7, 2012 at 2:40 am #129398In reply to: [Resolved] Ray of Light WordPress Theme issues
I am sorry, but I am having a hard time with finding the items to replace.
What I am willing to do is give you an admin login for my test site and allow you to edit the template files as you see fit to fix this issue.
So everyone does not get the test sites admin login details please send me a private message with the following desired details:
Username (required)
E-mail (required)
First Name
Last Name
Website
Password (twice, required)February 7, 2012 at 2:16 am #129397In reply to: [Resolved] Ray of Light WordPress Theme issues
@mercime
ParticipantSave files. Upload the 6 BP folders with the revised template files to your server wp-content/themes/ray-of-light/
If there are any issues, point your theme developer to this topic. I’m sure they can identify faster any missing or superfluous divs around in the post.
February 7, 2012 at 2:13 am #129396In reply to: Page weight for a theme?
Marcella
ParticipantGreat tip dude, many thanks. Wasn’t sure what I was looking for in reply here, but this will do perfectly.
Better than manually looking into the resources of a page lol.
February 7, 2012 at 2:13 am #129395In reply to: [Resolved] Ray of Light WordPress Theme issues
@mercime
ParticipantAt the bottom of all template files replace:
`
`
with the following for all template files except /registration/register.php:
`
`
with the following for /registration/register.php file:
`
jQuery(document).ready( function() {
if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
jQuery(‘div#blog-details’).toggle();jQuery( ‘input#signup_with_blog’ ).click( function() {
jQuery(‘div#blog-details’).fadeOut().toggle();
});
});`
February 7, 2012 at 2:05 am #129394In reply to: [Resolved] Ray of Light WordPress Theme issues
@mercime
ParticipantBased on the HTML structure of the Ray of Light theme, you need to change 16 template files within the 6 BP Template folders transferred to your ray of light theme folder when you ran Appearance > BP Compatibility https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
Download those 6 BP folders to your computer hard drive.
At the top of all the 16 template files per link I gave above, replace:
``with
``February 7, 2012 at 12:51 am #129392In reply to: Page weight for a theme?
Paul Wong-Gibbs
KeymasterThis is more of a general question rather than a BuddyPress or a WordPress question. I would not worry about 200k. Obviously, the quicker the better. Load some of your favourite sites into http://tools.pingdom.com/fpt/ and see what you find
February 6, 2012 at 10:40 pm #129385In reply to: [Resolved] Ray of Light WordPress Theme issues
Please let me know when you are done. Now to test the code, do I simply just copy your corrections of the code on pastbin to my wordpress theme editor?
-
AuthorSearch Results