Search Results for 'wordpress'
-
AuthorSearch Results
-
January 13, 2013 at 9:26 pm #150573
imnotme82324
ParticipantIn your dashboard, go to settings and select “BuddyPress”. You’ll be brought to the BuddyPress options page. Select the tab titled “Pages”. From there it will help you create the needed pages and associate those pages with the BuddyPress components 😀
January 13, 2013 at 7:35 pm #150546In reply to: Bypass Login for Profiles to go Live
Paul Wong-Gibbs
KeymasterThere’s a record in the user meta table that would need to be set (‘bp_last_activity’). Try https://wordpress.org/extend/plugins/activate-users-in-buddypress/ and see if it’s working.
January 13, 2013 at 7:07 pm #150527Lynn Hill
ParticipantHi Dyer,
I’ve just deactivated the User Role plugin and the problem is still there, no toolbar for new users. This is the link to the plugin that I’m using. http://shinephp.com/user-role-editor-wordpress-plugin/
Default setting is for all new users to be set as a subscriber.
Many thanks
Lynn
January 13, 2013 at 10:04 am #150500In reply to: No Flood Control – Buddypress 1.6.2
P
ParticipantI reopened this ticket https://buddypress.trac.wordpress.org/ticket/3732 and DJPaul set the milestone to 1.7, and now I have no idea how to submit my patch (I am still not familiar with the process on buddypress.trax.org).
Anyway, I fixed up a patch and tested it on Buddypress 1.6.3. Maybe you can check out the changes and submit a patch on my behalf if you can. You can download files I modified at http://we.tl/HpU6emIJs4 and check things out.
January 13, 2013 at 6:06 am #150493In reply to: New filter request for bp_is_single_activity()
modemlooper
ModeratorThose classes are not moving. It’s a function that attaches to WordPress core css body classes.
January 13, 2013 at 5:44 am #150488In reply to: New filter request for bp_is_single_activity()
digitman2
Participant> That function can not have filter because it is true or mot based on one thing.
Yes, and with a filter, that one thing can be expanded. If someone wants to create their own page for displaying a single activity, they should have a filter here so they can perform their own checks if needed. There are many other boolean functions in wordpress as well as buddypress which have filters.
January 13, 2013 at 1:05 am #150470intimez
ParticipantI believe this plugin will help you with restrictions
January 12, 2013 at 10:53 pm #150458binti94
Participantwhere has this plugin gone? Can’t find it on wordpress plugins??
January 12, 2013 at 9:22 pm #150457In reply to: Disabling BuddyPress Registration Component
Ben Hansen
Participantyou may want to look into s2 member i think it can handle everything you are trying to achieve also i don’t think you should be so concerned about the buddypress activation process as opposed to the wordpress activation for security reasons i believe if anything the buddypress slightly more secure but for the most part i think they’re the exact same thing (other then the additional default email verification step for buddypress) in fact if someone registers for your site but fails to activate they will be a regular wordpress user and not listed with your other buddypress members.
January 12, 2013 at 9:09 pm #150455@mercime
ParticipantDoes it mean that the user profiles (wp profiles and bp extended profiles) are also unified/sync’d?
Other than usernames No. BP Extended Profiles has a more complex set up than the WP profiles
make twenty twelve compatible with buddypress
@mitesh-patel I’ve posted the walkthrough for BP Template Pack with the Twenty Twelve Theme at http://wp.me/p1I84P-4d let me know how it works out for you.
January 12, 2013 at 6:50 pm #150444@mercime
Participanti will try to adapt it to new bbPress soon. But i was hesitating as i thought it already exists
@imath checking https://wordpress.org/extend/plugins/tags/bbpress
– I see bbPress update status but that’s automatic, not quite what some would want
– There’s also the getshopped one, but it’s not been updated since WP 3.2.1 and looking through documentation it’s not quite what your plugin does quite so nicely.Thanks again for a cool plugin.
January 12, 2013 at 5:26 pm #150439In reply to: Totally private Buddypress site
modemlooper
ModeratorBuddyPress overides urls and such. Regular WordPress plugins do not always take BP into consideration. BP 1.7 should work better with WordPress plugins as it uses page.php to display content instead of hijacking urls
January 12, 2013 at 4:39 pm #150434In reply to: Member profiles private vs. public
Ben Hansen
ParticipantIt’s called an author archive page and it is automatically generated by your theme more info on that can be found here:
https://codex.wordpress.org/Author_Templates#Custom_Author_Information
January 12, 2013 at 1:11 pm #150416In reply to: Shortcodes – Disable WordPress automatic formatting
m1000
ParticipantThanks! It works. The whole code will be:
`function my_formatter($content) {
$new_content = ”;
$pattern_full = ‘{(\[raw\].*?\[/raw\])}is’;
$pattern_contents = ‘{\[raw\](.*?)\[/raw\]}is’;
$pieces = preg_split($pattern_full, $content, -1, PREG_SPLIT_DELIM_CAPTURE);foreach ($pieces as $piece) {
if (preg_match($pattern_contents, $piece, $matches)) {
$new_content .= $matches[1];
} else {
$new_content .= wptexturize(wpautop($piece));
}
}return $new_content;
}remove_filter(‘the_content’, ‘wpautop’);
remove_filter(‘the_content’, ‘wptexturize’);remove_filter( ‘bp_get_the_topic_post_content’, ‘wptexturize’ );
remove_filter( ‘bp_get_the_topic_post_content’, ‘wpautop’ );add_filter(‘the_content’, ‘my_formatter’, 99);
add_filter(‘bp_get_the_topic_post_content’, ‘my_formatter’, 99);`January 11, 2013 at 11:34 pm #150369In reply to: Cannot Edit, Delete, Open or Sticky Forum Topics
kpolkson
ParticipantI am going to have to dredge up this topic again as I have gone through the process of completely reinstalling wordpress 3.5 and the latest version of buddypress 1.6.3 to a fresh new Ubuntu server with only my custom theme, database and alterations to buddypress that were not in the buddypress core file (obviously since the old one has been nuked) and I am still getting a 404 response (from within our wordpress page, not an apache 404) whenever I try to edit, sticky or delete a topic in the forums.
this is still the case even with the default buddypress theme.
This is a buddypress set up to do groupt forums, not sitewide and I do not have bbpress running at all (though interestingly enough, when bbpress was running alongside buddypress, I was not getting our site’s 404 response, but was getting a new topic form and the notification of “Oh bother, there are no topics here” – 0r something like that)
would really like to get this figured out as it is pretty critical and I don’t know how else to debug this (there has to be *some* clues as to why this is happening.)
thanks in advance.
January 11, 2013 at 11:18 pm #150367In reply to: View Profile Page?
Ben Hansen
Participanti believe you are mistaken the buddypress profiles can only be filled out in the front end (even for admins) the wordpress backend profile is separate (other then a few items).
January 11, 2013 at 7:10 pm #150325In reply to: No Flood Control – Buddypress 1.6.2
Hugo Ashmore
ParticipantGreat are you going to patch it for us then 🙂
Patches can be returned on a ticket to: buddypress.trac.wordpress.org/
January 11, 2013 at 5:32 pm #150316In reply to: Manual vs. SimpleScipts install
modemlooper
ModeratorYou will need to backup database, download wp-content folder, delete everything including database, create fresh database, install wordpress and buddypress manually, upload the contents of your downloaded wp-contents folder, import saved database backup.
January 11, 2013 at 4:06 pm #150308In reply to: Activity Stream Date Format
danbpfr
Participantview here, this can perhaps inspire you https://github.com/alex11/wordpress-plugins/blob/master/rs-buddypress-activity-refresh/rs-bp-activity-refresh.php
January 11, 2013 at 3:47 pm #150304In reply to: Shortcodes – Disable WordPress automatic formatting
danbpfr
ParticipantHi @m1000,
all forum filters are listed in bp-forums/bp-forums-filters.php
ie :<code>remove_filter( ‘bp_get_the_topic_post_content’, ‘wptexturize’ );
remove_filter( ‘bp_get_the_topic_post_content’, ‘wpautop’ );
remove_filter( ‘bp_get_the_topic_latest_post_excerpt’, ‘wpautop’ );</code>and many others ! 😉
January 11, 2013 at 3:35 pm #150301In reply to: Activity Stream Date Format
danbpfr
ParticipantHi @amalsh,
all this can be done if you create a child theme.
Date format is explained in the WP codex. https://codex.wordpress.org/Formatting_Date_and_Time
And for the other question: https://buddypress.org/support/topic/how-to-remove-active-xyz-hours-ago/
January 11, 2013 at 10:11 am #150276Mitesh Patel
ParticipantThank you @mercime.
A small follow-up question on user sign-on/registration. As you clarified, there is a unified login for all wp and bp/bb components. Does it mean that the user profiles (wp profiles and bp extended profiles) are also unified/sync’d?
With regards to the twenty twelve – Buddypress compatibility, let me elaborate my set-up a little.
Twenty twelve is not compatible with buddypress out of the box (like bp-default theme is), so one needs to use bp-compatibility-pack plugin (or can be done manually) to copy-paste buddypress specific .php templates and other files to the theme directory. This also includes buddypress style sheet (bp.css) which seems to be a copy-pasted part from bp-default style.css.
Thus, when you make twenty twelve compatible with buddypress (I am doing this on child theme of twenty twelve), the styles of buddypress components resembles to bp-default (rather than twenty twelve). If one deletes all the css from bp.css, one gets plain styles (these are twenty twelve styles but as there is nothing in twenty twelve styles for bp, they are as good as plain). Fixing these plain styles would be like making a completely new theme from scratch (like styling _s theme) for bp component pages/sections. There doesn’t seem to be a simple workaround about this.
January 11, 2013 at 4:10 am #150264In reply to: installation wizard failing
@mercime
ParticipantWeird, my WordPress claims it is the most current version.
@bkvwordpress I recall that happening in a friend’s site which was installed with a webhost script like fantastico or scriptalicious or something similar. Did you use a webhost script for your WP install?
January 11, 2013 at 3:23 am #150259In reply to: installation wizard failing
BKVWordPress
ParticipantWeird, my WordPress claims it is the most current version. Please forgive this oversight. Looks like I have some updating to do.
Thank you for your response!
January 11, 2013 at 3:19 am #150258In reply to: [Resolved] wordpress database error
@mercime
ParticipantGreat. Thanks for posting back here. Marking this as resolved.
-
AuthorSearch Results