Search Results for 'wordpress'
-
AuthorSearch Results
-
November 1, 2010 at 8:06 pm #97159
In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
piccs3o
ParticipantHi guys,
Rather than start another mail on this topic I thought I should add my question to this thread.
I have experienced the same problem with both hotmail and gmail- nothing delivered to test profiles set up under both services.
Just wondered if anyone has cracked this problem yet as it may well effect many potential users of my site.I would appreciate a heads up if it’s been sorted.November 1, 2010 at 7:38 pm #97155Hugo 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: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: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 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: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 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 4:14 pm #97126In reply to: html on profile page? can it be done?
danbpfr
Participantperhaps if you read this you can do what you want:
https://codex.wordpress.org/Function_Reference/wp_filter_kses
https://codex.wordpress.org/Function_Reference/wp_filter_post_ksesNovember 1, 2010 at 8:49 am #97098In reply to: Getting rid of Gravatars …
mistercyril
ParticipantHello Boone,
Thank you for your reply. I really appreciate getting an actual answer as I may be pretty comfortable working with WordPress but BuddyPress code has me a bit lost at the moment. I will Try this and post back.
About my quote, i’m sorry if it seemed “confrontational” but I guess its just my frustration talking. I’ve been asking about this and searching for months but could never find a rational solution.
Thanks again,
I’ll try it out now.November 1, 2010 at 8:40 am #97097Roger Coathup
Participant@leoplaw – if you check the simple:press forums further, you’ll find there are still outstanding issues in integrating with BuddyPress, around login and roles I think. My understanding is that they are talking about providing a solution in a future version of simple:press
@mercime
ParticipantYou have to resolve permalink issue in WordPress before installing BuddyPress.
Apache Module mod_rewrite must be enabled for “pretty permalinks” so check with your webhost. Or, if you have access to the httpd.conf file, find #LoadModule rewrite_module modules/mod_rewrite.so and delete the # to uncomment itCheck out other WP configuration requirements before installing BP
https://codex.buddypress.org/getting-started/before-installing/#wp-configurationNovember 1, 2010 at 7:03 am #97094Leo Plaw
Participant@Paul Gibbs
It seems it is possible to integrate Simple:Press into the activity streams.
Integrate Simple:Press Forum into the BuddyPress Activity Stream! [Update
http://blog.slyspyder.com/2010/08/15/integrate-simplepress-forum-into-the-buddypress-activity-stream/and here
Integrating Simple:Press into BuddyPress Activity Stream
November 1, 2010 at 1:09 am #97087In reply to: html on profile page? can it be done?
Narada Das
ParticipantSorry – an after thought… I am using the awesome Cincopa multimedia plugin which just needs to embed a short code inside [ brackets ] .
Is it possible to remove the filter only for these codes to allow the plugin to work? http://www.cincopa.com/media-platform/wordpress-plugin.aspxOctober 31, 2010 at 6:40 pm #97073In reply to: VaultPress
Paul Wong-Gibbs
KeymasterFrom my enquiries, I believe VaultPress only backs up the regular WordPress tables (i.e. not BuddyPress’).
October 31, 2010 at 2:18 am #97038In reply to: Changing BuddyPress Base URL
Kevin Murray
ParticipantI have the same problem as Dudeski. I also get the wordpress installation address, rather than site address. So the home and other buttons don’t work.
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 8:58 pm #97026r-a-y
KeymasterThe bundled version of jQuery in WordPress is different than the stock jQuery library.
WP adds a jQuery.noConflict() call. Most WordPress plugins rely on the WP version of jQuery. So by getting rid of the WP one, you’re going to be breaking some plugins.
I’m pretty sure WP has jquery-ui in their includes folder.
Check out this nifty codex article on wp_enqueue_script() to call a specific, bundled JS:
https://codex.wordpress.org/Function_Reference/wp_enqueue_scriptOctober 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:47 pm #97020r-a-y
KeymasterYou need to change the_content() to the_excerpt() in your theme’s index.php:
https://codex.wordpress.org/Function_Reference/the_excerptOctober 30, 2010 at 6:50 pm #97014In reply to: Not all themes showing buddypress bar
momsnet
MemberThanks – I had pasted in the code I used but it didn’t show up in here…. What I had found on the forum here from someone was using “ so I put that in and that made the buddypress bar show fine but the rest of the footer was gone.
Sorry if my question is outside the focus of the boards – I’m new to this and I had seen a few other people ask about it and people offering a fix, so I assumed that is was ok to ask. Is this not a place for buddypress working with wordpress multisite questions?
October 30, 2010 at 3:10 pm #97000PJ
ParticipantGreat ideas! Going through each folder and checking the log file helped. Thank you @hnla @crashutah @rogercoathup
October 30, 2010 at 10:33 am #96988In reply to: Getting rid of Gravatars …
thelandman
ParticipantYou can disable Gravatars! Perhaps you should put in some effort to research the subject. I have disabled it on many sites that I’ve built. I won’t lie to you, I’m not a fan of gravatar because the actual gravatars look cheap and tacky.
This plugin is the most effective and easiest way of disabling gravatar. https://wordpress.org/extend/plugins/disable-user-gravatar/ It says its only compatible up to WP 2.8.6 but I’m using it on 3.0.1
October 30, 2010 at 6:03 am #96971In reply to: Private / secure file uploads for groups
Stacy (non coder)
ParticipantThere’s Private files plugin (not sure if it’s for bbpress) https://wordpress.org/extend/plugins/private-files/ or
https://wordpress.org/extend/plugins/private-files-for-social-privacy/October 30, 2010 at 5:47 am #96970In reply to: Private group RSS?
Stacy (non coder)
ParticipantThere is Private rss plugin that uses authentication https://wordpress.org/extend/plugins/private-rss/ (Not sure how it would work for groups)
October 30, 2010 at 2:52 am #96968In reply to: 1.2.6 upgrade date offset!!
John LeBlanc
ParticipantMy workaround was to set the WP time zone to UTC, comment out my ini_`set(‘date.timezone’, ‘Pacific/Honolulu’);` in wp-config.php and empty the WordPress cache. I don’t particularly like this move, however.
-
AuthorSearch Results