Search Results for 'theme'
-
AuthorSearch Results
-
November 1, 2010 at 7:38 pm #97155
Hugo Ashmore
ParticipantDarn it I could have added that ages ago is this really the first time it’s been noticed
November 1, 2010 at 7:15 pm #97153In reply to: Where did user interactions go?
cmccarra
Participant@r-a-y thanks for the reply.
I haven’t edited any of the theme files listed in point two. Could it be css changes I’ve made?
Thanks
November 1, 2010 at 7:09 pm #97152Paul Wong-Gibbs
Keymaster@modemlooper https://trac.buddypress.org/changeset/3334/
I’ve just put this into trunk. Thank you for the heads-up.November 1, 2010 at 6:41 pm #97150p3aul
ParticipantSame thing here!
After I installed buddypress and activate the default theme I viewed the webpage and there is nbo where to login as admin. When I logged out, I couldn’t log in again as admin. What gives? Is anyone going to answer this question?
PaulNovember 1, 2010 at 6:29 pm #97147Hugo Ashmore
ParticipantIsn’t the simple answer to copy across page.php fix up and submit? they are testing the child theme after all, it will perform as expected then, it may defeat the purpose of a child theme but fixes the issue from your perspective?
November 1, 2010 at 6:22 pm #97146danbpfr
Participantit is possible that your theme is refering to one of the 3 deprecated activity tables ?
3 in the past, actually 1, with another name.November 1, 2010 at 5:59 pm #97144modemlooper
ModeratorThe page.php file for the default theme is missing
comments_template();
So theme reviewers are rejecting BP child themes because they test a page and the comments are not showing. I’m not sure why now after months they have decided to reject any new themes due to this but it’s happening to themes already in the repo that i’m trying to fix.
November 1, 2010 at 5:49 pm #97143apwinthrop
ParticipantThe theme appears to have been built from thematic 0.9.6.2 – i know there’s an upgrade available, but I can’t imagine what would have been hacked to remove that functionality from the activity stream….
November 1, 2010 at 5:43 pm #97142Paul Wong-Gibbs
KeymasterOld theme? Can you test if you have the option on bp-default? If you do, take a look at https://codex.buddypress.org/extending-buddypress/bp-default-theme-changelog/
November 1, 2010 at 5:41 pm #97140In reply to: child theme global.js not loading
Paul Wong-Gibbs
KeymasterYou’ll need to load this manually, preferably via functions.php (https://codex.wordpress.org/Function_Reference/wp_enqueue_script). Javascript and CSS files aren’t automatically loaded by WordPress child themes.
November 1, 2010 at 5:36 pm #97137In reply to: child theme global.js not loading
johjohjoh
Participanthave the same problem. any solution?
November 1, 2010 at 4:32 pm #97129Paul Wong-Gibbs
KeymasterI don’t know what you mean. Plus I think we are reluctant to change the default theme at all before 1.3.
November 1, 2010 at 2:07 pm #97116In reply to: New theme – now available
roydeanjr
ParticipantSorry to hear about your father. My prayers go out for him and for your peace.
November 1, 2010 at 12:57 am #97085In reply to: BP Columns theme issues
ABStorm
MemberI gotcha, ok thanks! So as long as I add data in the left sidebar that extends down the page that will fix it, gotcha. Thanks Ryan!
October 31, 2010 at 11:49 pm #97084In reply to: BP Columns theme issues
modemlooper
ModeratorIf your columns are not equal height then the separator will never match unless you use images that span the height of the page. The tags issue is the tags plugin issue. I do not test themes for every plugin. If you use plugins and things go wonky you will need to edit to fix them. Those tags are coded to fit a full width page. You’ll have to mess with the css to fix it. Look at the css for the search box and you’ll see it’s saying -37px try changing that to 0px.
October 31, 2010 at 11:03 pm #97082In reply to: Pagination for Users doesn’t work
@mercime
ParticipantWhat theme are you using? bp-default or child theme of bp-default? Is BP installed in main site or secondary blog?
October 31, 2010 at 8:06 pm #97079In reply to: html on profile page? can it be done?
r-a-y
KeymasterYes, it can be done, but do you want to risk exposing your site to vulnerabilities?
If you still want to do this, add the following code snippet in your theme’s functions.php:
`remove_filter( ‘bp_get_the_profile_field_value’, ‘wp_filter_kses’, 1 );`
October 31, 2010 at 6:08 pm #97070In reply to: “Log in” in Admin bar: Page not found
Jeff Lambert
MemberDid you ever figure this out? Just started playing with BuddyPress and have the same issue.
I should add:
WP 3.0.1
BP 1.2.6I’m using child theme of TwentyTen but also tried default BP theme. Issue is definitely with the install directory not being included in the wp-login path.
Thanks
October 31, 2010 at 4:55 am #97041In reply to: Not all themes showing buddypress bar
momsnet
MemberThanks r-a-y – THAT fixed it
October 31, 2010 at 4:35 am #97040In reply to: Users can’t register through BuddyPress home page
Cosmin Z.
Participanthi! do you have a resolution for this issue? It is happening to me too!
I can add a user from my admin WP panel, but cannot register using the /register page: I enter all the data (name, username, etc) click on “Complete Sign Up” – > I’m back to the /register page (all the entered data disappeared)
– I’m using the default theme
– the “allow anyone to register” option IS selected.
– tried it with ALL the plugins disabledthanks
October 30, 2010 at 11:07 pm #97034In reply to: Custom CSS Changes
Boone Gorges
KeymasterAre you sure that your custom-sample.css file is actually being included? With a file name like ‘custom-sample’, I’m guessing that it might not be. Check out the theme’s main style.css, and see if there’s an @import rule for custom-sample.css (or if there is a rule in any other imported stylesheet).
I’m not sure how bp-social works (it appears to be a premium theme so I can’t look at the code) but if it is a child of bp-default, then you won’t be able to create a “grandchild” theme so that your changes won’t be overridden – WP doesn’t support that. However, you could fake it by dropping a snippet in your bp-custom.php file that looks something like this:
`function bbg_custom_style() {
$myStyleUrl = WP_PLUGIN_URL . ‘/custom.css’;
$myStyleFile = WP_PLUGIN_DIR . ‘/custom.css’;
if ( file_exists($myStyleFile) ) {
wp_register_style(‘myStyleSheet’, $myStyleUrl);
wp_enqueue_style( ‘myStyleSheet’);
}
}
add_action(‘wp_print_styles’, ‘bbg_custom_style’);`(See https://codex.wordpress.org/Function_Reference/wp_enqueue_style for more info on how to enqueue styles)
Just make sure that you have your custom styles in a file called custom.css in your plugin directory. That should make sure that your styles get loaded, but that they don’t get overwritten by future upgrades to your main theme.
October 30, 2010 at 10:26 pm #97030In reply to: Not all themes showing buddypress bar
Hugo Ashmore
ParticipantOne would have assumed that was the case, partly due to the lack of information provided to us.
I would still not waste the time fixing a theme that wasn’t following a general WP convention.
October 30, 2010 at 8:52 pm #97024In reply to: Not all themes showing buddypress bar
r-a-y
KeymasterYou have to make sure the “ call is in the theme’s footer.php.
If it messes up your layout, try putting it at the very end before the closing “ tag.
October 30, 2010 at 8:50 pm #97022In reply to: Remove TAB in Buddypress for newly created pages
r-a-y
KeymasterYou’ll need to modify wp_list_pages() in your theme’s header.php to exclude the page ID of the classifieds.
If you don’t like messing around with theme files, you could probably try this plugin:
https://wordpress.org/extend/plugins/exclude-pages/October 30, 2010 at 8:50 pm #97021In reply to: Not all themes showing buddypress bar
momsnet
MemberThanks – I think you are right… we still have many themes to choose from and the themes that don’t work all seem to be from the same company.
Thanks for your time.
-
AuthorSearch Results