Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 10,376 through 10,400 (of 22,644 total)
  • Author
    Search Results
  • imnotme82324
    Participant

    In 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 😀

    #150546
    Paul Wong-Gibbs
    Keymaster

    There’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.

    #150527
    Lynn Hill
    Participant

    Hi 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

     

    #150500
    P
    Participant

    I 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.

    #150493
    modemlooper
    Moderator

    Those classes are not moving. It’s a function that attaches to WordPress core css body classes.

    http://buddypress.trac.wordpress.org

    #150488
    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.

    #150470
    intimez
    Participant

    @digitman2

    I believe this plugin will help you with restrictions

    binti94
    Participant

    where has this plugin gone? Can’t find it on wordpress plugins??

    #150457
    Ben Hansen
    Participant

    you 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.

    @mercime
    Participant

    Does 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.

    #150444
    @mercime
    Participant

    i 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.

    #150439
    modemlooper
    Moderator

    BuddyPress 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

    #150434
    Ben Hansen
    Participant

    It’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

    #150416
    m1000
    Participant

    Thanks! 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);`

    #150369
    kpolkson
    Participant

    I 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.

    #150367

    In reply to: View Profile Page?

    Ben Hansen
    Participant

    i 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).

    #150325
    Hugo Ashmore
    Participant

    Great are you going to patch it for us then 🙂

    Patches can be returned on a ticket to: buddypress.trac.wordpress.org/

    #150316
    modemlooper
    Moderator

    You 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.

    #150308
    danbpfr
    Participant
    #150304
    danbpfr
    Participant

    Hi @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 ! 😉

    #150301
    danbpfr
    Participant

    Hi @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/

     

    Mitesh Patel
    Participant

    Thank 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.

    #150264
    @mercime
    Participant

    Weird, 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?

    #150259
    BKVWordPress
    Participant

    Weird, 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!

    #150258
    @mercime
    Participant

    Great. Thanks for posting back here. Marking this as resolved.

Viewing 25 results - 10,376 through 10,400 (of 22,644 total)
Skip to toolbar