Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 20,801 through 20,825 (of 22,693 total)
  • Author
    Search Results
  • #53912
    Timschmi
    Participant

    We have the same problem. I think, it’s a problems with the nice-names in the profil of WordPress MU. If the username (for example:timschmi) and the nice-name are the same, there is no problem. If the nice-name is different (for example:timschmidt) buddypress will link to timschmidt and not to timschmi. You can see it if you roll over the links.

    #53909
    David Lewis
    Participant

    Exactly Andy. That’s my issue. Hacking the parent function.php file is easy. But I don’t want to do that. So I created a function.php file in my child theme but the unregister_sidebar() function doesn’t seem to work :( I suspect this is a WPMU thing… not a BuddyPress thing. Here is the code I added to function.php in my child theme. Should work. Doesn’t. I’m at bit of a loss. I tried adding different priority levels to add_action() and they had no effect.

    <?php
    function remove_sidebar() {
    unregister_sidebar('third-section');
    }
    add_action( 'admin_init', 'remove_sidebar');
    ?>

    p.s. https://codex.wordpress.org/Function_Reference/unregister_sidebar

    #53906

    In reply to: New Theme

    Andy Peatling
    Keymaster
    #53903

    In reply to: Profile Field

    Kailas
    Participant
    #53870
    chewbaker
    Participant

    Hey Guys, I still can’t get this to work? I am on bp ver 1.1

    Maybe things got changed in the update that would effect the way this works? I really need to have custom pages for this to work for my site. Again, to recap, here is what I have done:

    put the below code into : (wordpress mu and buddy press are installed into subfolder)

    mysite/subfolder/wp-content/themes/bp-sn-parent/functions.php and created a page in the same directory called dashboard.php

    CODE:

    // creates custom page
    
    define('BP_DASHBOARD_SLUG', 'dashboard');

    function bp_show_dashboard_page() {
    global $bp, $current_blog;

    if ( $bp->current_component == BP_DASHBOARD_SLUG && $bp->current_action == '' ){

    // The first variable here must match the name of your template file below
    bp_core_load_template( 'dashboard', true );
    } }
    add_action( 'wp', 'bp_show_dashboard_page', 2 );
    //
    end custom page

    URGENT: Need to figure this out!!!!

    #53848
    Paul Wong-Gibbs
    Keymaster

    As much as I can tell, being one of those English-speaking imperialists to which you refer, WordPress has a good range of i18n stuff if developers use the right functions. If you think WordPress and BuddyPress seriously lack in these areas, then please by all means start a specific discussion thread on each product’s forums or file trac tickets/bug reports/patches.

    Back on topic, I think socialpreneur’s on the money with this.

    #53833

    In reply to: BuddyPress v 1.1

    alexduvot
    Participant

    I am going to try a fresh install

    of wordpress mu , the buddypress

    starting over fresh

    #53823
    takuya
    Participant

    WordPress and therefore BuddyPress lack a lot of standard i18n features as core developers are mainly using English than other languages. They still haven’t figured out problems we have when we use our own languages within WordPress/BuddyPress.

    Anyway, for the problem, there’s similar ticket on trac that names containing dots or dash don’t work on 1.1 environment. It may be related to this ticket.

    Peter Kirn
    Participant

    Now I feel bad that I ran out of time in late August / September and was unable to contribute to the test process, but that’s how it goes some of the time.

    The reason I ultimately opted for a fresh install, even with existing groups, was that I discovered the option to *migrate* an existing install a) left bbpress as a separate install, which I didn’t want, and b) because we had opted to put bbpress’s tables in a database separate from the wordpress mu database.

    So, the question is, how do we take these existing 25 groups and give them forums to connect to in the new bbpress-in-buddypress setup? :)

    #53805
    David Lewis
    Participant

    I’m my case… I’ve simply decided in home.php to wrap the “first-section” widgets with logic that will show that widget section only to logged in users… otherwise it is replaced with a positioning statement + calls to action (i.e. Join! Donate! Learn!) and a wordpress loop. Pretty simple stuff:

    <?php if (!is_user_logged_in()) { ?>

    [static content & wordpress loop for the public]

    <?php } else { ?>
    <?php if(!function_exists('dynamic_sidebar')||!dynamic_sidebar('first-section')):?>

    [widgets for members only (i.e. site activity) ]

    <?php endif; } ?>

    #53795
    stripedsquirrel
    Participant

    Looks great, when will it be released for further testing?

    When checking a classified detail, I getthe following error:

    Warning: Division by zero in /home/benoitgr/public_html/dev/wordpress-mu/wp-content/plugins/bp-classifieds/bp-classifieds-templatetags.php on line 191

    Cheers

    #53781
    Simon Wheatley
    Participant

    The plugin is proof of concept code, you need to decide under what circumstances you want to allow group creation. At the moment, as you say, everyone is restricted… perhaps you want to base it on user capabilities? Have a look at the WordPress function current_user_can (support forum tag) and use this in rgc_validate_group_creation something like this (untested):

    // Stop the creation of a group unless the current user can manage options

    function rgc_validate_creation( $allowed, $group_details ) {

    // User is OK to continue if they can manage options

    if ( current_user_can( 'manage_options' ) )

    return true;

    // Otherwise they can't

    bp_core_add_message( 'Sorry, you are not allowed to create groups.', 'error' );

    return false;

    }

    #53780

    In reply to: super-captcha issue

    Michael J Challis
    Participant

    Were you able to resolve the problem?

    I have a similar plugin that is fully WPMU and BuddyPress compatible:

    SI CAPTCHA Anti-Spam

    https://wordpress.org/extend/plugins/si-captcha-for-wordpress/

    #53748
    Graeme
    Participant

    The is a filter that needs to be added to wpmu to resolve this issue. There is already a ticket that discusses this:

    https://trac.buddypress.org/ticket/1103

    That buddypress ticket includes a link to this ticket in for wpmu:

    https://trac.mu.wordpress.org/ticket/1120

    #53743
    baronvonlego
    Participant

    I’ve just faced this same question in this thread: https://buddypress.org/forums/topic/buddypress-says-themes-are-missing-but-they-arent

    The answer seems to be yes, but it feels like quite a convoluted process. I understand the ethos from a design standpoint as to why they want a Buddypress theme used as the primary theme on ones WordPress site, but I really feel that this is an inflexible approach for those who have well-established WordPress sites already active.

    #53740
    Michael J Challis
    Participant

    If you use this on Buddypress be sure to update to the latest version of SI CAPTCHA Anti-Spam

    https://wordpress.org/extend/plugins/si-captcha-for-wordpress/

    == Changelog ==

    = 2.0.4 =

    – (03 Oct 2009) – Fixed session error on the members and groups pages on Buddypress versions.

    #53737
    Michael J Challis
    Participant

    Thanks for testing…

    All fixed in the latest version

    https://wordpress.org/extend/plugins/si-captcha-for-wordpress/

    == Changelog ==

    = 2.0.4 =

    – (03 Oct 2009) – Fixed session error on Buddypress versions.

    https://wordpress.org/extend/plugins/si-captcha-for-wordpress/

    #53736
    Jeff Sayre
    Participant

    There’s a Codex article:

    https://codex.buddypress.org/how-to-guides/upgrading-a-buddypress-1-0-theme-for-buddypress-1-1/

    Scroll down to the section entitled “I’ve used a WordPress theme for my blog with the default BuddyPress member theme”.

    #53730
    baronvonlego
    Participant

    Does this mean that the Default theme must now be used as the primary Theme on a site?

    Previously, I was able to use a standard WordPress theme (vita) and link to my Community (Buddypress, using the 1.0.1 Default theme). From what I can see now though, if I want to use the Buddypress 1.1 Default theme, it needs to be activated as the primary theme. Is there any way around this? If not, this is a frustrating development indeed….

    #53728
    takuya
    Participant

    This hack in the core would probably make buddypress global.

    http://semlabs.co.uk/journal/enabling-chinese-arabic-and-other-high-unicode-in-wordpress-slugs

    #53727
    takuya
    Participant

    I’m bumping this, as this issue is critical for non English bp users around the world.

    Or if anybody know any wordpress hack to make wordpress understand i18n slugs just as good as wikipedia, please let us know.

    #53722

    In reply to: Joinless groups?

    danbpfr
    Participant
    #53718
    Paul Wong-Gibbs
    Keymaster

    @Tore, no, BP 1.1 themes go into /wp-content/themes/ like any other wordpress themes.

    /wp-content/bp-themes/ is from the previous version of BP and is deprecated.

    #53697
    Matt Kern
    Participant

    Thanks Jeff I did see that. I jumped to the end ““I’ve built a completely custom WordPress theme and BuddyPress theme”

    I was thinking mine was custom but maybe its just altered. I think I need to visit

    ““I’ve used the old default themes, but modified the layout/colors””

    a little more in depth now that you point it out. thanks.

    #53653
    modemlooper
    Moderator

    After I finish a site I’m working on I’m going to hack that wordpress iphone plugin to work with BP

Viewing 25 results - 20,801 through 20,825 (of 22,693 total)
Skip to toolbar