Search Results for 'wordpress'
-
AuthorSearch Results
-
December 2, 2012 at 10:13 pm #146370
In reply to: SEO for Member Pages Hack?
@ChrisClayton
ParticipantDecember 2, 2012 at 10:13 pm #146369In reply to: SEO for Member Pages Hack?
@ChrisClayton
ParticipantI dont use Yoast seo and dont know what he does with his code, but if it helps here’s what BP uses now (in 1.6) – https://buddypress.trac.wordpress.org/browser/branches/1.6/bp-core/bp-core-filters.
December 2, 2012 at 7:43 pm #146359In reply to: Sharing files in a group
@mercime
ParticipantWhat kind of files? Documents https://wordpress.org/extend/plugins/buddypress-docs/
December 2, 2012 at 12:01 pm #146336In reply to: child buddypress
alen9788
ParticipantThanks for your help.I has builded the child theme of bp child with 2 folders as the instruction.
And add the codes to style.css/*
Theme Name: BP Child
Tags: buddypress
Template: bp-default
*/And add the code to functional.php
if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
function bp_dtheme_enqueue_styles() {// You should bump this version when changes are made to bust cache
$version = ‘20111109’;// Register stylesheet of bp-dusk child theme
wp_register_style( ‘bp-dusk’, get_stylesheet_directory_uri() . ‘/style.css’, array(), $version );// Enqueue stylesheet of bp-dusk chid theme
wp_enqueue_style( ‘bp-dusk’ );
}
add_action( ‘wp_enqueue_scripts’, ‘bp_dtheme_enqueue_styles’ );Then i appended the changing css codes to child theme style.css
.content-wrapper-inner {
background-color: black;
}
BUT nothing has changed.And
where should i do to show the post&topic time and date use the code of https://codex.wordpress.org/Function_Reference/the_time
December 2, 2012 at 7:34 am #146327In reply to: [Resolved] Guest Redirect
@ChrisClayton
ParticipantDecember 2, 2012 at 4:17 am #146318@mercime
ParticipantGenerate random gravatar? or random avatars via Settings > Discussions > Avatar and choose from Identicon, Wavatar, MonsterID, or Retro ?
Or check out https://wordpress.org/extend/plugins/bp-avatar-suggestions/
December 2, 2012 at 3:49 am #146317In reply to: Buddypress 1.7
@mercime
ParticipantYou can already check it out in test install. Just download trunk version
svn co https://buddypress.svn.wordpress.org/trunk/
or zip file from link at bottom of the page at https://buddypress.trac.wordpress.org/browser/trunkRe timeline, check the BP roadmap at https://buddypress.trac.wordpress.org/roadmap
BP 17 has 71 tickets to go. Patches welcome.December 1, 2012 at 11:57 pm #146309In reply to: Buddypress users – buy and sell
John Frusciante
ParticipantThat kind of wordpress plugin it is very much wanted! Any ideas if theres is something out there?
December 1, 2012 at 9:41 pm #146297In reply to: Forums not working
Kevin.Bowser
ParticipantI just tried a completely fresh install with the default WordPress theme and then the default BuddyPress theme. It is still not working. In this install, I can’t even get the Forums menu to show up on the menu bar.
This is getting more than a little frustrating. I am really trying to understand this process, but it is thus far not intuitive, nor do the menus and setup options look like they do in the documentation.
December 1, 2012 at 3:50 pm #146288In reply to: Convert Groups into Custom Taxonomies
Paul Wong-Gibbs
Keymaster@OC2PS see http://bpdevel.wordpress.com/2012/03/05/custom-post-types-yesno/
December 1, 2012 at 3:48 pm #146287In reply to: Move support to wordpress.org
Paul Wong-Gibbs
KeymasterYes.
December 1, 2012 at 3:00 pm #146282knaveenchand
ParticipantInterestingly, buddypress default theme does not accept avatar from social networks when used with WordPress Social Login plugin. I wish I could provide a random avatar for such cases where buddypress does not accept the avatar provided by social networks.
There ain’t any active plugins that can produce random avatars. I believe that the plugin that @Lawrence talks will go a long way if it is in public domain. Hence, I request him to offer us some download links to his work. Thanks.
December 1, 2012 at 1:48 pm #146278In reply to: Move support to wordpress.org
SK
ParticipantSupport is merged, yay!
So now, BuddyPress support is at https://buddypress.org/support and support for BuddyPress plugins is at https://wordpress.org/support
December 1, 2012 at 1:26 pm #146273In reply to: Edit button in top bar goes to the wrong page
Toby Cryns (@themightymo)
Participant@ninjaface – I have not encountered this issue before. The way I would troubleshoot is:
Deactivate All Plugins
Switch to Default theme
Does this fix the problem? If so, then the problem is either your custom theme or a plugin issue. If the problem persists taking the above steps, then try re-installing WordPress and BuddyPress.December 1, 2012 at 7:29 am #146263In reply to: Removing ‘Global RSS Feed’
Maruti Mohanty
Participant@aces I have used http://wordpress.stackexchange.com/questions/33072/how-to-remove-feeds-from-wordpress-totally but this works only for the WP pages and not for the BP pages.
then i used
function bp_remove_feeds() {
remove_action( ‘bp_actions’, ‘bp_activity_action_sitewide_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_personal_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_friends_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_my_groups_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_mentions_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_favorites_feed’, 3 );
remove_action( ‘groups_action_group_feed’, ‘groups_action_group_feed’, 3 );
}
add_action(‘init’, ‘bp_remove_feeds’);But still I can see the feeds for the activity page 🙁
Any help will be highy appreciated?
Anyways @aces thanks for responding 🙂
December 1, 2012 at 7:03 am #146261In reply to: What is the best theme to get?
@ChrisClayton
ParticipantDrdick8, in the next major version of BP (1.7) theming will be easier and allow you to use ANY WordPress theme out of the box. There are millions of WP themes. (See: https://wordpress.org/extend/themes)
With the 4. requirements listed all of them (depending on how you prefer to have it setup is provided out of the box)
1. You could use a Wp blog.
2. Post type (Post types are really easy to implement even without coding skills)
3. Post types, again.
4. Plugins. Would this be suitable? https://wordpress.org/extend/plugins/appointy-appointment-scheduler/I think customising P2 (Which Automatic – the company that runs WordPress.com – uses for internal communication) may suit your needs well.
https://wordpress.org/extend/themes/p2December 1, 2012 at 5:26 am #146259mojer
ParticipantUsing “BuddyPress Media” plugin, you can upload media files from iOS 6 now
https://wordpress.org/extend/plugins/buddypress-media/
December 1, 2012 at 3:39 am #146253In reply to: [Resolved] Profile page show "page not found"
hiboy
Participanthi , i still facing this issue and need help.
All i did was a fresh install of my wordpress and theme and only buddypress.
set wordpress permanent setting to /%postname%/, for the buddypress permanent setting i did not touch it.
other than that ,
http://domain.com/buddypress/activity/
http://domain.com/buddypress/members/
all working , except when click on your profile name in the buddypress member page, it show a page not found.
Any solution?November 30, 2012 at 9:46 pm #146246In reply to: BuddyMobile showing in desktop verion
modemlooper
ModeratorYou need to name is the same as what is in your desktop theme folder.
https://codex.wordpress.org/Pages#Page_Templates
November 30, 2012 at 6:14 pm #146233In reply to: custom plugin build
danbpfr
ParticipantNovember 30, 2012 at 5:13 pm #146225In reply to: How can I get the activity like facebooks?
peterjhead
ParticipantLet me rephrase my question then. Is there anywhere within the wordpress or buddypress code that can be edited so it will allow or force it to accept more than one scope? Does anyone have the knowledge to give me some guidance in how this can be accomplished. I appreciate any help. Thank you.
November 30, 2012 at 4:53 pm #146222danbpfr
ParticipantHi,
Test this one https://wordpress.org/extend/plugins/network-privacy/
November 30, 2012 at 4:41 pm #146220In reply to: Make status update accept some HTML formatting
danbpfr
ParticipantSee in activity/post-form.php around line 28 the esc_attr
And learn here what you can do and not
https://codex.wordpress.org/Function_Reference/esc_attr
http://wp.tutsplus.com/tutorials/creative-coding/data-sanitization-and-validation-with-wordpress/
November 30, 2012 at 3:57 pm #146213In reply to: Removing ‘Global RSS Feed’
aces
Participanthmmn… it still works for me but only for the activity feed ( excluding the ` lines which weren’t converted to the new bp forum format ). It used to work for members as well.
To disable all feeds I just tried the following from http://wordpress.stackexchange.com/questions/33072/how-to-remove-feeds-from-wordpress-totally
:
/**
* disable feed
*/
function fb_disable_feed() {
wp_die( __('No feed available,please visit our homepage!') );
}
add_action('do_feed', 'fb_disable_feed', 1);
add_action('do_feed_rdf', 'fb_disable_feed', 1);
add_action('do_feed_rss', 'fb_disable_feed', 1);
add_action('do_feed_rss2', 'fb_disable_feed', 1);
add_action('do_feed_atom', 'fb_disable_feed', 1);
Which worked for me to disable All feeds to everyone. It’s a bit unsubtle but does plug the security hole….
November 30, 2012 at 2:16 pm #146207In reply to: [Resolved] Profile page show "page not found"
hiboy
ParticipantHi, change to default theme and the page still not found.
“What’s installed at domain root http://www.domain.com ?” meaning?
I just did a fresh install of my wordpress and theme and only buddypress.I realise this, do u think this is causing the problem?
when i point to my name in the member page, the link show
http://domain.com/buddypress/members/Sean Lee/
but when i click on my name , it lead to http://domain.com/buddypress/members/SeanLee/ ,without the space, tried typing manually with the space between the name, it still lead to http://domain.com/buddypress/members/SeanLee/, and page not found.
Any solution? -
AuthorSearch Results