Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 19,401 through 19,425 (of 68,969 total)
  • Author
    Search Results
  • #169685
    cupid4
    Participant

    @mercime Thanks so much, I will check if this fix is applied to my install as it should or not then post in the ticket if it is the same.

    – I meant when buddypress developers moved it, not me. it used to be in themes folder in earlier versions and child themes worked well back then.
    what I did now is taking a copy of bp-default, renaming it, and put in themes folder, now it’s working, I was in a hurry because I want to start my website before certain date.

    #169673
    Ben Hansen
    Participant

    not sure might require a plugin but for what it’s worth i already have a trac ticket for adding dynamic links for login/logout/register and i have added those to the ticket:

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

    himlims
    Participant

    updated wordpress to latest release (v3.6)

    buddypress is also current

    disabled every plugin installed – restarted server (just to be sure)

    enabled buddypress; seems all good at first, however; …/activation/ isn’t working.

    The user receives activation mail with key (and link), you may click link or enter key manualy – result is the same; reload of page, no message, no record updated in sql db.

    This gets real annoying now – enjoy the functionality of buddypress, but this is killign me

    #169667
    operapreneur
    Participant

    I was successful at doing this. You can read about the results here on the forum.

    I would suggest starting this kind of thread on the “How to/troubleshooting” topic, not this thread since it’s all about showing off the finished product.

    #169662
    @mercime
    Participant

    there are choices already selected even none of them is set as default, should I report this in buddypress trac


    @cupid4
    there was a trac ticket posted about same issue but was resolved last year https://buddypress.trac.wordpress.org/ticket/4362

    all the problems started since moving bp-default off the themes folder and putting it in buddyporess folder.

    The bp-default theme folder should be left as is in the wp-content/plugins/buddypress/bp-themes/ folder and not moved to wp-content/themes/ folder

    #169661
    @mercime
    Participant

    @producist try reuploading BuddyPress manually i.e., via FTP.

    BP 1.8.1 issue “widgets are no longer displayed on BuddyPress pages”

    Specifically, which widgets are not showing up? BuddyPress widgets or WordPress default widgets or another plugin’s widgets?
    What theme are you using?

    #169647
    Rahatlin
    Participant

    Two people confirmed that problem.
    I have non-admin account on the site for daily use so i can see the problem for myself on that account.

    And i already said that i turned off all plugins and switched to twenty twelve theme to check if it wasn’t compatibility issue. But the problem was still there :/
    I didn’t bother turning them back on one by one when i saw groups in same state when, nothing except buddypress was turned on.

    I always check that first.

    #169643
    meg@info
    Participant

    Hi @Skeary,

    There is no filter for bp_directory_groups_search_form(), You can change create a new custom function and replace the old call of bp_directory_groups_search_form by the new function.

    
    function bp_custom_directory_groups_search_form() {
    
    	$default_search_value = bp_get_search_default_text( 'groups' );
    	$search_value         = !empty( $_REQUEST['s'] ) ? stripslashes( $_REQUEST['s'] ) : $default_search_value; ?>
    
    	<form action="" method="get" id="search-groups-form">
    		<label><input type="text" name="s" id="groups_search" placeholder="<?php echo esc_attr( $search_value ) ?>" /></label>
    		<input type="submit" id="groups_search_submit" name="groups_search_submit" value="<?php _e( 'Go', 'buddypress' ) ?>" />
    	</form>
    
    <?php
    }
    

    The other solution is by javascript, you can change the text of the button by this code :

    
    jQuery('#groups_search_submit).attr('value','Go');
    
    
    #169639
    aces
    Participant
    Hugo Ashmore
    Participant

    Please don’t advise people not to upgrade, this is bad advise, BP releases often have bug fixes and security updates people should endeavour to keep on the most current release. BP releases are tested as extensively as possible and not released until stable under most conditions. Quite what has happened with your install is hard to quantify without examining things in detail.

    One thing that I would advice is not jumping from 1.6 to 1.8 missing out 1.7 due to the changes in 1.7, whether that was the issue in your case is unknown though. What BP can’t do however is patch an issue until it can be replicated and proven as a bug, but if more occurrences like this are reported then it may be looked at in more depth.

    Kookidooki
    Participant

    Is there really nobody who can help me? πŸ™

    I just made a fresh install with the latest version of WP and Buddypress and the above mentioned problems didn’t occur anymore. So it might be that upgrading Buddypress triggered these problems.

    My advice to others: if you’re running a stable Buddypress version do not upgrade!!!
    Unless BP find some kind of “patch” to prevent the issues.

    Brice Capobianco
    Participant

    Hi,
    I’m not sure if it can help you but the following may resolve your problem :

    function my_bp_nav_adder()
    {
        bp_core_new_nav_item(
            array(
                'name' => __('New Tab Button', 'buddypress'),
                'slug' => 'all-conversations',
                'position' => 75,
                'show_for_displayed_user' => true,
                'screen_function' => 'all_conversations_link',
                'item_css_id' => 'all-conversations'
            ));
            print_r($wp_filter);
    }
    function all_conversations_link () {
        //add title and content here - last is to call the members plugin.php template
        add_action( 'bp_template_title', 'my_groups_page_function_to_show_screen_title' );
        add_action( 'bp_template_content', 'my_groups_page_function_to_show_screen_content' );
        bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
    }
    
    function my_groups_page_function_to_show_screen_title() {
        echo 'My new Page Title';
    }
    function my_groups_page_function_to_show_screen_content() {
        echo 'My Tab content here';
    
    }
    add_action( 'bp_setup_nav', 'my_bp_nav_adder' );

    source: http://codex.themedelta.com/how-to-create-a-new-tab-in-buddypress-member-page/

    You have to change “members/single/plugins” by the path to your new template file without the .php extention.

    If you need to check if the action already existe for different purpose (I already need to do something similar) you can use something like this:

    if(has_action('name_of_action_to_check_for')) {
    	// action exists so execute it
    	do_action('name_of_action_to_check_for');
    } else {
    	// action has not been registered
    }

    Hope this help πŸ˜‰

    Kookidooki
    Participant

    Additional info: my server is running Linux and Apache.

    #169620
    cupid4
    Participant

    @mercime thanks, the new code cleared the mess, but still no changes made to child theme are applied, I’m sure my edits are not wrong because it have been working before, all the problems started since moving bp-default off the themes folder and putting it in buddyporess folder. anyway I just copied the whole bp-default folder and changed theme name and started ding edits to it, will be harder than child themes to update, but it’s the only way I can get my website live for now, hope soon the problems with child themes are fixed.

    btw, @mercime do you have any idea why registration page is saving all “select-down-list ” choices of last user who register and showing it always in register page? if you visited my website you will see that there are choices already selected even none of them is set as default, should I report this in buddypress trac?

    #169619
    psound
    Participant

    Both Twenty Twelve and Buddypress Default theme had “Sorry, no members were found.” error.

    #169613
    bmk0220
    Participant

    @aces Thanks, I’ll check that out. Appreciate it.

    #169611
    Ben Hansen
    Participant

    oh hum the default theme maybe you should a open trac ticket on that one? i believe its still being supported even though theme compatibility is the preferred method. anyone know off hand if the BP default theme still comes packaged? haven’t really done a fresh buddypress install since 1.7.

    #169610
    notpoppy
    Participant

    @ubernaut Yes I am using oEmbed. In the default Buddypress theme oEmbeds don’t seem to be responsive so I’m trying to find the best way of doing that. Am having a look at FitVids at the moment as suggested here:

    https://buddypress.org/support/topic/fitvids-js-and-bp-ajax/

    #169586
    Jboisset
    Participant

    Hi, i also get the following error message : org.xmlrpc.android.XMLRPCExption: xmlpull.v1? XmlpullParserExeption unexpected type (position END_DOCUMENT null@1:1 in java.io. InputStreamReader@…
    I tested direct access to the xmlrpc page. It works. The website is tiing.fr.
    Thanks for your help.

    #169573
    Hugo Ashmore
    Participant

    Check the codex docs for guides, this one is probably what you need to be working with, same loop as in groups/single/members.php:
    https://codex.buddypress.org/developer/developer-docs/loops-reference/the-group-members-loop-bp_group_has_members/

    bp-help
    Participant

    @jschodde
    This plugin is not tagged BuddyPress so I think it would be more appropriate to post it on the authors support forum here:
    https://wordpress.org/support/plugin/better-wp-security
    Maybe ask the author to update it for use with BP and tag it appropriately afterwards.

    #169554
    @mercime
    Participant

    @speedysnail6 deactivate BuddyPress and change to Twenty Twelve theme, then check if registration works. Where are you hosted?

    @mercime
    Participant

    @barronlau “Blog Details: I’d like to add new site” shows up for multisite installations if you did not remove that option for a user to create a blog in your site.

    Go to My Sites > Network Admin > Dashboard. Then go to Settings > Network Settings –> Registration Settings, then only choose User accounts may be registered.

    To customize what’s going to show up on your registration https://codex.buddypress.org/user/buddypress-components-and-features/extended-profiles/

    #169551
    @mercime
    Participant

    @wyldesites I just set up a new installation WP 3.6 and BP 1.8.1 and registration with activation email is working.

    – Check server email configuration – if you deactivate BuddyPress, does the registration process work for you? Where are you hosted?

    – Deactivate all plugins except BuddyPress and change to Twenty Twelve theme. If all’s well, then activate theme. If user can register, then could be one of the plugins. Activate plugins batch by batch while testing to check which is interfering with registration/activation.

    Marisa
    Participant

    I have just solved this problem by replacing parts of the default bp-core-functions.php archive where it says “function bp_core_time_since”
    I used parts of this file: https://svn.buddypress.org/tags/1.6-RC1/bp-core/bp-core-functions.php

Viewing 25 results - 19,401 through 19,425 (of 68,969 total)
Skip to toolbar