Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 7,126 through 7,150 (of 22,685 total)
  • Author
    Search Results
  • #192067
    danbp
    Participant

    @durkk

    you seem to be affraid by the term “legacy”… ?
    Read here some explanation about legacy

    Like BuddyPress, bbPress is only a plugin.
    Generally when you need a theme, you search a theme for wordpress, not for a plugin.

    Of course some a better than other, or better tailored to do something than other, but in anyway, no theme can be perfect for anything.

    And in some case, ready to use is not synonym of adaptable ready.
    If you search forum themes, see first what other forum software have to propose. One of the most popular, phpbb, is desperatly identical from one site to another in 90% of case.

    When you have 1 000 of WP theme and you add a bbpress or a buddypress group forum, you have potentially 1 000 different forum look.

    Basically it’s a grid, so it’s a bit difficult to present a forum in a very original maner. And finally too much work for many users or considered as out of rentability (100 hours to get a nice forum and 3 topics after 2 mounth….search the error ! )

    #192062
    @mercime
    Participant

    @arximughal You only need to activate one WP theme. So if you’re already using the7 theme, you don’t need the Status child theme anymore. As for the BP Default theme, it’s been phased out http://bpdevel.wordpress.com/2013/11/13/the-future-of-the-bp-default-theme/

    #191900
    danbp
    Participant

    FYI here some related topics
    https://buddypress.org/support/topic/how-to-remove-xprofile-names-and-replace-with-username/
    https://buddypress.org/support/topic/sort-user-list-by-last-name/

    About your first post, why don’t you show the site activity by using the topic filter instead of the default “all activities” ?
    https://buddypress.org/support/topic/changing-the-default-activity-filter/

    Or you can try buddypress-wall plugin
    https://wordpress.org/plugins/buddypress-wall/

    #191895
    Henry Wright
    Moderator

    In the last screenshot, if you take a look under the IP address it reads: @ Julia Buckley

    Regarding the roadmap, 2.1 is due any time soon. See https://buddypress.trac.wordpress.org/roadmap

    #191892
    danbp
    Participant

    @julia_b

    be patient ! The upcoming BP 2.1 version brings huge improvement to mentions handling, with auto suggestion.

    BP 2.1 About page excerpt:

    With BuddyPress 2.1, type a @ when leaving a status update or commenting on an activity item or blog post, and the new suggestions panel will open.

    https://buddypress.trac.wordpress.org/ticket/3278

    #191862
    colabsadmin
    Participant
    #191859
    albert101
    Participant

    Hello again cut and pasted the code exactly on the last line of the theme functions php and
    my debug log output is as follows.
    I must be doing something wrong.

    [10-Sep-2014 19:54:06 UTC] PHP Fatal error: Call to undefined function bp_is_activity() in /Applications/MAMP/htdocs/wordpress/wp-content/themes/mytheme/functions.php on line 4618
    [10-Sep-2014 19:54:06 UTC] PHP Stack trace:
    [10-Sep-2014 19:54:06 UTC] PHP 1. {main}() /Applications/MAMP/htdocs/wordpress/wp-admin/index.php:0
    [10-Sep-2014 19:54:06 UTC] PHP 2. require_once() /Applications/MAMP/htdocs/wordpress/wp-admin/index.php:10
    [10-Sep-2014 19:54:06 UTC] PHP 3. require_once() /Applications/MAMP/htdocs/wordpress/wp-admin/admin.php:204
    [10-Sep-2014 19:54:06 UTC] PHP 4. do_action() /Applications/MAMP/htdocs/wordpress/wp-admin/admin-header.php:108
    [10-Sep-2014 19:54:06 UTC] PHP 5. call_user_func_array:{/Applications/MAMP/htdocs/wordpress/wp-includes/plugin.php:505}() /Applications/MAMP/htdocs/wordpress/wp-includes/plugin.php:505
    [10-Sep-2014 19:54:06 UTC] PHP 6. print_head_scripts() /Applications/AMP/htdocs/wordpress/wp-includes/plugin.php:505
    [10-Sep-2014 19:54:06 UTC] PHP 7. do_action() /Applications/MAMP/htdocs/wordpress/wp-includes/script-loader.php:773
    [10-Sep-2014 19:54:06 UTC] PHP 8. call_user_func_array:{/Applications/MAMP/htdocs/wordpress/wp-includes/plugin.php:505}() /Applications/MAMP/htdocs/wordpress/wp-includes/plugin.php:505
    [10-Sep-2014 19:54:06 UTC] PHP 9. my_dequeue_script() /Applications/MAMP/htdocs/wordpress/wp-includes/plugMin.php:505

    #191788
    shanebp
    Moderator

    @albert101

    Did henry’s original function it work for you?
    If so, don’t bother changing it.


    @henrywright

    afaik – The reason the codex page uses the wp_print_scripts hook is to insure that it runs after the wp_enqueue_scripts hook, regardless of priority.

    https://codex.wordpress.org/Plugin_API/Action_Reference

    The deprecation Hugo mentions is re not using print_scripts to enqueue a script, which the OP is not trying to do.
    So I’m not convinced that your change to the codex page is appropriate. If you decide to stick with your change, at least update the comments above the example function to reflect that change.

    danbp
    Participant

    I just want to get the list of buddypress shortcodes.

    Doesn’t exist. You can create a shortcode or use this plugin:

    https://wordpress.org/plugins/bowe-codes/

    #191185

    In reply to: WordPress 4

    danbp
    Participant

    add following line in your wp-config.php file:

    define('SCRIPT_DEBUG', true);
    and activate the already existing define('WP_DEBUG', false); to define('WP_DEBUG', true);
    and feedback here.

    BuddyPress 2.1 milestone estimation

    #191183
    Henry Wright
    Moderator

    Hello @albert101

    You can use wp_dequeue_script() to remove an enqueued script. For example:

    function my_dequeue_script() {
        if ( bp_is_activity() )
            wp_dequeue_script( 'xyz-custom-script' );
    }
    add_action( 'wp_print_scripts', 'my_dequeue_script', 100 );

    Ref: https://codex.wordpress.org/Function_Reference/wp_dequeue_script

    Henry Wright
    Moderator

    Hi @julia_b

    To my knowledge there isn’t anything like that available. Try searching the WP Plugin Directory. Else, if you’re good with code, something like this can be accomplished using regular expressions

    All of that said, forums questions are better asked over at bbPress. You may have more luck there.

    #191055

    In reply to: WordPress 4

    danbp
    Participant

    BuddyPress 2.0.2 is compatible with WordPress 4.0 See this site: it’s working ! 😉

    500 Internal Server Error is a generic error message, given when no more specific message is suitable. There are a number of causes for a 500 Internal Server Error to display in a web browser. (cite)

    Which theme do you use ?
    https://wordpress.org/support/topic/500-server-error-after-upgrade-to-wordpress-40

    #191054
    r-a-y
    Keymaster

    And also WordPress uses a rich-text editor. BuddyPress does not for the activity post form.

    #191034
    durkk
    Participant

    Heheh,

    You see the only coding experience I have is with music related software or game middleware. The creative process of pulling pages per user is very abstract to me 😀

    I do know my French classics…

    “Perhaps the world’s second worst crime is boredom. The first is being a bore.”
    -Jean Baudrillard

    Hoping not being guilty of the first but here goes:

    First I added a filter to bypass the members in the profile URL so I could use dynamic links via this plugin: Buddy Menu Buddy Links. Then I make a page with the username as parent and a child with the same title for all students (lessons). resulting in a workin url looking this mydomain.com/username/lessons.

    I made a CPT to keep the it more organized only and the pages index less cluttered.

    /**
     * Remove the slug from published post permalinks.
     */
    function custom_remove_cpt_slug( $post_link, $post, $leavename ) {
     
        if ( 'student' != $post->post_type || 'publish' != $post->post_status ) {
            return $post_link;
        }
     
        $post_link = str_replace( '/' . $post->post_type . '/', '/', $post_link );
     
        return $post_link;
    }
    add_filter( 'post_type_link', 'custom_remove_cpt_slug', 10, 3 );
    /**
     * Some hackery to have WordPress match postname to any of our public post types
     * All of our public post types can have /post-name/ as the slug, so they better be unique across all posts
     * Typically core only accounts for posts and pages where the slug is /post-name/
     */
    function custom_parse_request_tricksy( $query ) {
     
        // Only noop the main query
        if ( ! $query->is_main_query() )
            return;
     
        // Only noop our very specific rewrite rule match
        if ( 2 != count( $query->query ) || ! isset( $query->query['page'] ) ) {
            return;
        }
     
        // 'name' will be set if post permalinks are just post_name, otherwise the page rule will match
        if ( ! empty( $query->query['name'] ) ) {
            $query->set( 'post_type', array( 'post', 'student', 'page' ) );
        }
    }
    add_action( 'pre_get_posts', 'custom_parse_request_tricksy' );
    
    #191031
    r-a-y
    Keymaster

    @ryanjhale – I’ve posted a fix here:
    https://buddypress.trac.wordpress.org/ticket/5869

    This probably won’t make v2.1 since we’re close to releasing this version. I’ve tentatively put the fix for v2.2.

    Thanks for reporting!

    #191021
    danbp
    Participant

    @ryanjhale,

    wp roles and bp capacities are two diffrent things.
    bp_moderate has a specific usage applied to the site admin only. If you read what is written in bp-core-caps.php, you’ll see this comment at line 200

    
     * Temporary implementation of 'bp_moderate' cap.
     *
     * In BuddyPress 1.6, the 'bp_moderate' cap was introduced. In order to
     * enforce that bp_current_user_can( 'bp_moderate' ) always returns true for
     * Administrators, we must manually add the 'bp_moderate' cap to the list of
     * user caps for Admins.
     *
     * Note that this level of enforcement is only necessary in the case of
     * non-Multisite. This is because WordPress automatically assigns every
     * capability - and thus 'bp_moderate' - to Super Admins on a Multisite
     * installation. See {@link WP_User::has_cap()}.
     *
     * This implementation of 'bp_moderate' is temporary, until BuddyPress properly
     * matches caps to roles and stores them in the database. Plugin authors: Do
     * not use this function.

    BuddyPress groups moderators are not authorized to enter the admin dashboard or the group admin on frontend. Group moderators can only delete, move and spam group activities or topics. If the group has a forum, they wil have the same capacities.

    If you want a user to be able to access the admin dashboard, you can give him an editor role (which is a wp role).

    If you want to allow him access to the group admin on the front-end, you promote him to group admin. This setting doesn’t allow that user to enter the site admin. He’s only a group admin (with a wp role of subscriber, by default) and not a site admin (admin or super-admin (MS) ).

    #191016
    mahdiar
    Participant

    Thanks !
    But there is small difference . When I copy the video url ( e.g. …../video.mp4 not the page url) in normal post in wordpress it shows a video player . Why it is not supported in buddypress?

    #191013
    SeeingBlueS2
    Participant

    Found it. Ticket #5868

    #191008
    danbp
    Participant

    @tomlandon_author,

    who’s online refreshes after 5 mn.
    Read more here:
    https://buddypress.trac.wordpress.org/ticket/3590

    and feel free to open an enhancement ticket on the Trac.
    You can login with the same credentials as on this forum.

    #190991
    danbp
    Participant
    namrons
    Participant

    Thanks @shanebp and thanks @r-a-y Your fix definitely works with latest version of WordPress and Buddypress (tested) but I have a couple of sites with an older WordPress (because some plugins I’m using are not yet compatible with recent WordPress) and this fix does not work there. Any suggestions for a fix with older WordPress?

    #190961
    xprt007
    Participant

    Hi

    The index.php file is clean, …

    I used the plugin “Change DB Prefix” which enables a db prefix table change & in wp-config.php with a click. Good since the db has 175 tables 🙁 … ;), thi sbeing a community site with a number of functions.

    I added BuddyPress-Honeypot, … but does it not matter it seems to have had no changes since 2012?

    I temporarily disabled Wanguard to see if the 2 steps above + existing antispam plugins can handle this. Will then see about the .htaccess issue tomorrow etc.

    Many thanks & kind regards

    #190959
    danbp
    Participant

    A 404 error ? If you copy/paste a wrong url this can happen !

    When you create a new page in wordpress, a permalink is automatically created under the title box.
    You copy that whole permalink, including http, into the snippet
    'link' => 'your permlink', do not remove the coma ! And be carefull when editing code. Use a text editor, not Word !

    The snippet give you the possibility to add a page to a profile, and this page use his own template file, as also described.

    Don’t copy/paste when you don’t know how to use it and how things are working.
    For that you have the codex, where you can learn a bit on how BP is working.
    Here about theming.

    #190948
    danbp
    Participant

    No, passwords are encrypted !

    And for your misfortune, any thing encrypted can be decrypted ! With more or less effort, time and money.

    Are you living in a candy world ? 😉

    To avoid any temptation, the only option is to deactivate the private message component.

Viewing 25 results - 7,126 through 7,150 (of 22,685 total)
Skip to toolbar