Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,001 through 5,025 (of 22,658 total)
  • Author
    Search Results
  • #249274

    In reply to: Cannot create groups

    LordDunvegan
    Participant

    @slaffik Apologies – I did not see the .htaccess file when I did a ls -l, however it is there:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    Do I need to makes changes? Sorry I am not a programmer.

    Richard

    #249266
    Paul Wong-Gibbs
    Keymaster

    It looks like you’ve tried all the normal investigative things, so thanks.

    Not sure without debugging the code — but why does registration on your site take me to http://192.241.173.232/wordpress/register/ ? Totally different URL etc.

    I wonder if that has something to do with it.

    EDIT: is this your testing still? Do you have two different WordPress sites?

    #249265
    Paul Wong-Gibbs
    Keymaster

    I don’t know how well it works, but I found https://wordpress.org/plugins/buddypress-message-attachment/ from a quick search.

    #249261
    redblacked
    Participant

    can I group’s list re-order?

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

    #249251

    In reply to: Cannot create groups

    Slava Abakumov
    Moderator

    Look in the WordPress codex.

    #249249

    In reply to: activation

    Turker YILDIRIM
    Participant

    I never used a plugin to accomplish this but there are many out there, just google “wordpress email login”

    https://wordpress.org/plugins/wp-email-login/

    #249243

    In reply to: Cannot create groups

    Slava Abakumov
    Moderator

    Because of no .htaccess file (and no WordPress permalinks) BuddyPress will not be working properly. It requires permalinks enabled. On BuddyPress activation you should see this text:
    You must update your permalink structure to something other than the default for it to work.

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

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