Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,001 through 5,025 (of 22,651 total)
  • Author
    Search Results
  • #249224
    redblacked
    Participant

    can I group’s list re-order?

    example
    https://wordpress.org/plugins/post-types-order/

    #249217

    In reply to: activation

    Turker YILDIRIM
    Participant

    It is not possible by default but you can use plugins to add this ability into WordPress (and BP also)

    #249187
    Slava Abakumov
    Moderator

    There is such setting: http://take.ms/iD38m
    It should be checked.

    And there is also such ticket in trac: https://buddypress.trac.wordpress.org/ticket/6482
    It will allow comments syncing between activity stream item and posts (so they will appear in both places – very handy). This feature will be included into upcoming (in March) BuddyPress 2.5.

    #249171
    Slava Abakumov
    Moderator

    This is a bug in BuddyPress.
    Here is a new ticket: https://buddypress.trac.wordpress.org/ticket/6846

    #249170
    Slava Abakumov
    Moderator

    bp_get_activity_content_body – that’s the filter you might need.
    See function bp_get_activity_content_body() for details.
    General idea (you will need a bit of regexp knowledge):
    1) search in activity content for <iframe keyword.
    2) if it exists – wrap it with the div you need
    3) That’s it. This will be done on a fly for each item in activity directory. This is generally a bad idea, but no other options that I see.

    Or you can try a bit different approach, like using Fitvids (see this plugin https://wordpress.org/plugins/fitvids-for-wordpress/ or https://wordpress.org/plugins/dw-fitvids/)

    peter-hamilton
    Participant

    I had same problem during my first go on BuddPree/Wordpress, found problem to be my theme which left no space in members header to show default links for this.

    Did what @danbp mentioned and got it fixed with css.

    Good luck

    danbp
    Participant

    Hi,

    this will be a custom work on your site admin and concerns principaly wordPress.
    Read here how to do add a custom column on user’s list.

    Here the function reference you’ll need to use.

    Something like this you have to add to bp-custom.php or your child-theme functions.php

    function andrea_columns( $output, $column_name, $user_id ) {
    
    /* do something*/
    
    }
    add_action( 'manage_users_custom_column', 'andrea_columns', 10, 3 );
    #249128

    In reply to: where is edit this?

    danbp
    Participant

    Hi,

    it’s a message within WordPress, not BuddyPress.
    if you want to modify this text, you have to use the WordPress language file. (xx_XX.po in wp-content/languages).

    Read here and here how to do that.

    #249114
    Xtremefaith
    Participant

    Still working on this, I discovered something while debugging:

        1) If I set my priority to 1​ like so:

        add_action('bp_core_activated_user', array( $this, 'setup_registration_metadata'), 1 );

        then in my setup_registration_metadata() function I use add_user_meta() to capture the first_name & last_name values at that point in time. Thankfully it makes an entry in the usermeta table with the expected value from get_user_meta($user_id, 'first_name', true)

        2) Unfortunately, something else apparently is hooked afterwards (possibly a method from the “Enable BuddyPress to WordPress profile syncing”, which then overrides any value I had set for those fields so that in the end the WordPress fields are now incorrect or wiped.

    It seems apparent to me that the “Enable BuddyPress to WordPress profile syncing” option is the culprit, but would that be a bug that the setting is grabbing the wrong values because even if I don’t hook into bp_core_activated_user the meta values that were successfully stored at registration are then wiped during activation? For example:

    • first_name becomes the username
    • last_name is cleared completely

    Setting the priority to 20 the results show that by that point the originally stored meta_value(s) have already been wiped.

    #249110
    Slava Abakumov
    Moderator

    You should definitely take a look at this ticket in BP trac – #6592.
    It’s all about the future of emails in BuddyPress. Please test and provide your feedback there in a ticket. Thanks a lot!

    #249065
    shanebp
    Moderator

    ‘WordPress database error: [Unknown column ‘user_id’ in ‘field list’]’

    There is no user_id field in bp_xprofile_fields.
    The correct table is bp_xprofile_data.

    value is a text field, so you need quotes: AND value = '45'";

    Instead of AND value !empty"; try AND value != ''";

    $wpdb->get_var returns a single value. Try $wpdb->get_col.

    Your issues could have been solved by examining the table structure and reading reference docs like https://codex.wordpress.org/Class_Reference/wpdb.

    #249055

    In reply to: Error 404

    mervinpearce
    Participant

    *** Resolved ***
    All I had to do is create a Register and Activate page under WordPress. As simple as that.

    Suggestion, can activation of BuddyPress Plugin not check for Register and Activate pages and if not found create default ones?

    regards & thanks

    #249045

    In reply to: BP pages trigger 404

    mervinpearce
    Participant

    Created two WordPress sites with buddy press. I am using a Bossbuddy theme and it is just annoying that a register will trigger a 404. This problem is scattered all over the postings. Is there a single source for solving this??

    It goes to http://webaddress/register

    #249038
    Hellbounds
    Participant
    <?php
    
    /**
     * BuddyPress - Users Profile
     *
     * @package BuddyPress
     * @subpackage bp-default
     */
    
    ?>
    
    <?php if ( bp_is_my_profile() ) : ?>
    
    	<div class="item-list-tabs no-ajax" id="subnav" role="navigation">
    		<ul>
    
                <?php bp_get_options_nav(); ?>
    
    		</ul>
    	</div><!-- .item-list-tabs -->
    
    <?php endif; ?>
    
    <?php do_action( 'bp_before_profile_content' ); ?>
    
    <div class="profile">
    
    	<?php switch ( bp_current_action() ) :
    
    		// Edit
    		case 'edit'   :
    			bp_get_template_part( 'members/single/profile/edit' );
    			break;
    
    		// Change Avatar
    		case 'change-avatar' :
    			bp_get_template_part( 'members/single/profile/change-avatar' );
    			break;
    
    		// Change Cover Image
    		case 'change-cover-image' :
    			bp_get_template_part( 'members/single/profile/change-cover-image' );
    			break;
    
    		// Compose
    		case 'public' :
    
    			// Display XProfile
    			if ( bp_is_active( 'xprofile' ) )
    				bp_get_template_part( 'members/single/profile/profile-loop' );
    
    			// Display WordPress profile (fallback)
    			else
    				bp_get_template_part( 'members/single/profile/profile-wp' );
    
    			break;
    
    		// Any other
    		default :
    			bp_get_template_part( 'members/single/plugins' );
    			break;
    	endswitch; ?>
    
    </div><!-- .profile -->
    
    <?php do_action( 'bp_after_profile_content' ); ?>
    #249031
    Hellbounds
    Participant

    not working ..

    /*
    Theme Name: Sweetdate (shared on themelot.net)
    Description: More than a WordPress dating theme
    Author: SeventhQueen
    Author URI: http://themeforest.net/user/SeventhQueen
    Version: 2.9.2
    Tags: dating, clean, responsive, creative, minimal, modern, landing page, social
    Text Domain: kleo_framework
    License: GNU General Public License
    License URI: license.txt
    */
    @import url("assets/styles/app.css");
    
    /*
    * DO NOT EDIT THIS FILE
    * 
    * If you want to edit/add styles you need to enable the child theme and add your custom styles there.
    */
    
    #buddypress .profile h4{display:none !important}
    #249007
    Andrew Tibbetts
    Participant

    Thought I had found the silver bullet here:

    https://buddypress.org/support/topic/need-to-disable-the-user-access-to-wordpress-admin-panel/#post-183537

    which includes a check for ! ( defined( 'DOING_AJAX' ) && DOING_AJAX )…still has a redirect loop when performing the ajax actions.

    The search continues…

    #248997
    danbp
    Participant

    Community members and wp users are the same thing and are stored in an unique DB table: xx_users which is the one you can bulk import/export.

    I invite you to read through the Codex about members and what it does when it extend WP users.

    #248981
    danbp
    Participant

    This is a basic WordPress question.
    You can do that via phpmyadmin if you’re confortable with mysql or use a plugin. Search on plugin repo for CSV importer or similar keywords.

    #248972
    Slava Abakumov
    Moderator

    What about default WordPress cropping? Does it work? Maybe the problem is in the access permissions to /uploads directory.

    Other possible issue – do you have PHP image manipulation modules installed and activated?

    #248971

    In reply to: new user emails

    Slava Abakumov
    Moderator

    You can try this plugin: https://wordpress.org/plugins/bp-disable-activation-reloaded/
    But you should not do this – anyone will be able to register with fake emails.

    #248955
    shanebp
    Moderator

    wp_create_user returns the user id if there are no errors.
    https://codex.wordpress.org/Function_Reference/wp_create_user

    So try:

    $user_id =  wp_create_user( // etc );
    
    if( is_wp_error( $user_id) ) 
        echo $user_id->get_error_message();
    else
        bp_update_user_last_activity( $user_id, bp_core_current_time() );
    #248911

    In reply to: Error Posting Comments

    Manoj Chacko
    Participant

    I did check the theme before with twenty fifteen and the error was still there, we currently using a studiopress theme. But I checked it again with twenty fifteen and the issue remains.

    1. Which version of WordPress are you running?
    WordPress 4.3.2

    2. Did you install WordPress as a directory or subdomain install?
    Directory

    3. If a directory install, is it in root or in a subdirectory?
    Root

    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    Yes, don’t remember which version it was 4.2.* I think

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
    Yes

    6. Which version of BP are you running?
    BuddyPress 2.4.3.

    7. Did you upgraded from a previous version of BP? If so, from which version?
    yes, I think it was buddypress 2.2.*

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    Yes,
    Akismet; BuddyPress; BuddyPress Docs; BuddyPress Group Email Subscription; BuddyPress Sitewide Activity Widget; CustomPress; Google Analytics +
    ImageInject; Jetpack by WordPress.com; More Privacy Options; Multisite Plugin Manager; New Blog Templates; Site Categories; TinyMCE Advanced
    Ultimate Branding; User Role Editor; WordPress Importer; WP Author Slug; WPMU DEV Dashboard; WPMU Ldap Authentication;

    9. Are you using the standard WordPress theme or customized theme?
    Studiopress theme (Tested with twenty 15 as well)

    10. Have you modified the core files in any way?
    No
    11. Do you have any custom functions in bp-custom.php?
    No
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    BBpress Version 2.5.8

    13. Please provide a list of any errors in your server’s log files.
    Under the windows event viewer is an error
    “Faulting application name: httpd.exe, version: 2.4.16.0, time stamp: 0x55a22a64
    Faulting module name: php5ts.dll, version: 5.6.12.0, time stamp: 0x55c3b699”
    Happens whenever this error occurs.
    Nothing related within the apache logs That I can see.

    14. Which company provides your hosting?
    University Hosted (Temple University)
    15. Is your server running Windows, or if Linux; Apache, nginx or something else?
    Windows running Xampp

    #248870
    Slava Abakumov
    Moderator

    Separate languages – no, because all the plugins (and BuddyPress is a plugin) use the same language as the system. Because of the amount of hooks/filters in WordPress it’s nearly impossible (or very time and/or resources consuming) to create a reliable solution, that will switch language for plugins, but will not for WordPress.

    The easiest way is to have /wp-admin in one language, and front-end – in another.
    Here is the solution: https://wordpress.org/support/topic/different-languages-for-front-end-and-back-end?replies=5

    #248855

    In reply to: Error Posting Comments

    Manoj Chacko
    Participant

    Hi,

    I am running WordPress 4.3.2 and BuddyPress 2.4.3. BBpress Version 2.5.8 . Issue started happening couple of versions back. Installed in the root (using Xampp) It was working fine before wordpress/buddypress upgrade past summer.

    Issue is whenever user post a comment, it think for a second and gives out an error.
    Error, sometimes on some browser is just a error page, sometimes it s shows duplicate post error.

    But when I go back refresh the page. The comment was published. So something is happening after comment gets published and it has to redirect to the page.

    I have a bunch of plugins installed, but as rule of elimination I tried different combination. by removing and putting in plugin one by one.
    Conclusion issue is with WordPress/Buddypress/Akisment combo. with just wordpress and akismet it worked. just wordpress and buddypress it worked. With all three issue reappears, I have been troubleshooting it with Akismet first, But does not look like they are causing the issue.

    I can give access to my site to one of the moderators or developer if it helps.This issue is kind of becoming critical now.

    Thanks
    Manoj

    #248814
    Hastig
    Participant

    Plugins are the best way to go if you want to save yourself from developing something from scratch.

    Here’s one of many comparison reviews between two possible options.

Viewing 25 results - 5,001 through 5,025 (of 22,651 total)
Skip to toolbar