Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,826 through 5,850 (of 22,683 total)
  • Author
    Search Results
  • danbp
    Participant

    This doesn’t need enhancement, as it is a unique string. You can modify it to your need very easily by using the language file (read here)

    The exact phrase used in BP 2.2.3.1 is:
    There was an error sending that message. Please try again.

    If you see “cant send a message”, you use an old BP version or a third party plugin. Check for this first if it is the case.

    FYI, there is also a ticket about error message, so consider your question as “work in progress”…

    #239953

    In reply to: Messages break theme

    danbp
    Participant

    Are you using this theme ? https://wordpress.org/themes/weaver-xtreme/

    Just tested it and seems to work correctly. As this theme comes with 30 (!) sub-themes, i haven’t tested all skins, just default and Black&White, but haven’t seen the issue you describe.
    Have you tested accordingly to Henry’s suggestion, and have you tried with other (sub-)theme colors

    Can you provide a screenshot of what you get ?

    shanebp
    Moderator

    I’ll bet you’re using echo in your shortcode functions.

    So their output appears before the page content is rendered.
    Use return instead of echo.
    https://codex.wordpress.org/Shortcode_API

    #239939
    Osisis
    Participant

    Not sure how to mark this topic resolved, but I’ve decided to go about this in another manner. I followed the BP model and have my admin bar acting in the capacity of a menu and deleted my primary menu. Is working out pretty well thus far. For anyone else that’s interested I

    Removed “howdy, $name” just because to me it screams WP

    function custom_adminbar_welcome() {
    	global $wp_admin_bar;
    
    		$name = wp_get_current_user()->display_name;
    		$avatar = get_avatar( wp_get_current_user()->ID, 28 );
    		$class = $class = empty( $avatar ) ? '' : 'with-avatar';
    
    		$wp_admin_bar->add_menu( array(
                    'id'    => 'my-account',
                    'title' => __('') . $avatar,
    				'class' => $class
    			) 
    		);
    }
    add_action( 'wp_before_admin_bar_render', 'custom_adminbar_welcome' );

    Removed WP links and change logo

    add_action( 'wp_before_admin_bar_render', 'custom_adminbar_welcome' );
    
    function rebranding_wordpress_logo(){
            global $wp_admin_bar;
            //the following codes is to remove sub menu
        $wp_admin_bar->remove_menu('about');            // Remove the about WordPress link
        $wp_admin_bar->remove_menu('wporg');            // Remove the WordPress.org link
        $wp_admin_bar->remove_menu('documentation');    // Remove the WordPress documentation link
        $wp_admin_bar->remove_menu('support-forums');   // Remove the support forums link
        $wp_admin_bar->remove_menu('feedback');         // Remove the feedback link
        $wp_admin_bar->remove_menu('site-name');        // Remove the site name menu
        $wp_admin_bar->remove_menu('view-site');        // Remove the view site link
        $wp_admin_bar->remove_menu('updates');          // Remove the updates link
        $wp_admin_bar->remove_menu('comments');         // Remove the comments link
        $wp_admin_bar->remove_menu('new-content');      // Remove the content link
        $wp_admin_bar->remove_menu('w3tc');             // If you use w3 total cache remove the performance link
     
            //and this is to change wordpress logo
            $wp_admin_bar->add_menu( array(
                'id'    => 'wp-logo',
                'title' => '<img src="http://test.theblackxperience.com/darklogo45.png" />',
                'href'  => __(home_url()),
                'meta'  => array(
                    'title' => __('eQubator'),
                ),
            ) );
            
    }
    add_action('wp_before_admin_bar_render', 'rebranding_wordpress_logo' );

    Moved BP child menus up to make them primary menus

    function make_parent_node( $wp_admin_bar ) {
    
    if ( ! is_user_logged_in() ) {
    		return false;
    	}
    
    	 $wp_admin_bar->add_node( array(
    		'id'     => 'my-account-activity',     // id of the existing child node (New > Post)
    		'title'  => '<span class="ab-icon"></span><span class="ab-item">'._x( '', '' ).'</span>', // alter the title of existing node
    		'parent' => false,          // set parent to false to make it a top level (parent) node
    	)); 
        $wp_admin_bar->add_node( array(
            'id'     => 'my-account-friends',     // id of the existing child node (New > Post)
    		'title'  => '<span class="ab-icon"></span><span class="ab-item">'._x( '', '' ).'</span>', // alter the title of existing node
    		'parent' => false,          // set parent to false to make it a top level (parent) node
    	));    
        $wp_admin_bar->add_node( array(
            'id'     => 'my-account-messages',     // id of the existing child node (New > Post)
    		'title'  => '<span class="ab-icon"></span><span class="ab-item">'._x( '', '' ).'</span>', // alter the title of existing node
    		'parent' => false,          // set parent to false to make it a top level (parent) node
    	));
       
    	$wp_admin_bar->add_node( $args );
    }
    add_action( 'admin_bar_menu', 'make_parent_node', 999 );

    Added CSS to turn the menu items into dashicons

    #wp-admin-bar-my-account-friends .ab-icon:before{
    	font-family: "dashicons" !important;
    	content: "\f307" !important;
    }
    #wp-admin-bar-my-account-messages .ab-icon:before{
    	font-family: "dashicons" !important;
    	content: "\f466" !important;
    }
    #wp-admin-bar-my-account-activity .ab-icon:before{
    	font-family: "dashicons" !important;
    	content: "\f130" !important;
    }
    
    #wpadminbar .quicklinks li#wp-admin-bar-bp-notifications>a:before{
    	font-family: "dashicons" !important;
    	content: "\f319" !important;
    }

    Only problem I’m having now is that for some reason the logo has decided to move itself to the right, but that’s another question for another topic. But hope this helps someone else. admin bar as menu

    #239937

    In reply to: My favorites

    jessicana
    Participant

    Hello,

    Do you believe that I deleted all the users (including me admin) using this reference and I do still see that the members are 2!!

    Weird… So weird.

    Thanks

    danbp
    Participant

    Could this cause any problems.

    Don’t know, but looks so, no ?

    It’s even better to install WP (and plugins) manually via FTP on your server, as not all automated installer are using updated version or correctly setup preconfigured install. If you’re sure you can do this, do it. 😉

    And if you’re sure you can do this, run phpinfo first, so you’ll also be sure you can (or not) use latest WP on that host. Remember that if you want to use WP + BP, you need php 5.4 and at least 64 mo of php memory_limit (128 recommended).

    I would also recommend you to read some general information about WP installation previously to any other action.

    torbenlund
    Participant

    Hi again,

    Thanks for the answer 🙂

    I still have an issue with the login in the sidebar. It still sents me to the /wp-login.php where I see a “Blocked” text.

    I have installed WordPress with the “One Click Installer” on One.com. Could this cause any problems.

    I haven´t been running the phpinfo because I´m not sure how to run it.

    I can try to install WordPress manually if you think it would help?

    Thanks for helping!

    Regards

    Torben

    danbp
    Participant

    If your site is slow is not related to the fact of adding/removing a link, even programmatically ! 😉
    Unadapted host plan, wrong settings, network issue, poor wifi connection and many, many other things can slow down a site.

    Have you at least the minimum requirements to use WP and BP ?
    https://wordpress.org/about/requirements/

    Requirements

    Run phpinfo if you’re unsure.

    #239917

    In reply to: My favorites

    danbp
    Participant

    What do you think?

    Hum… 🚧 🎢 🙏 !

    Have you checked the right table ? It’s not in _bp_activity_meta, but in _usermeta, at least concerning the case of site admin.

    I mentionned this topic for information on this ticket:
    https://buddypress.trac.wordpress.org/ticket/3794

    #239915

    In reply to: My favorites

    jessicana
    Participant

    Hello,

    I found something about this, see:
    https://buddypress.trac.wordpress.org/ticket/4393

    By the way, I followed the steps above and I have it in my database a:0{…some content ….}. I have not changed anything. What do you think?

    Thanks

    #239903
    danbp
    Participant

    If you feel comfortable with php, here’s a gist from @imath to autojoin users to groups.
    Modify it to add the member_type

    A little different, BuddyPress Registration Groups

    danbp
    Participant

    Have you removed BP Remove Profile Links plugin, as it was tested up to: WordPress 3.6 beta2 BuddyPress 1.8 beta1. Could be outdated after 2 years and without need if you use the snippet now.

    You have also to test your site with one of Twenty theme first.

    #239875
    danbp
    Participant

    No matter the theme or the marketplace, first thing to take in mind is how to respect the standart.

    Getting started

    #239871
    danbp
    Participant

    One crucial question to all: which theme do you use ?
    Have you similar issue by using one of WP’s twenty theme ?
    Have you searched in your theme documentation ? Remeber that we do not support commercial products here as we have no access to the code.

    Also:
    The Toolbar is related to WordPress, BuddyPress use it only to add a sub-nav block under Howdy on the top right corner.

    danbp
    Participant

    Here a complete WP tutorial, in case of. (read also the comments)

    Henry Wright
    Moderator

    There may well be a solution for this in the WordPress or BuddyPress community, but what I’m saying is it’s far more likely that you’ll find the solution in a phpMyAdmin or MySQL community. So don’t give up here, but be aware you have options if you don’t get a response.

    Henry Wright
    Moderator

    Hi @marvc

    Whilst I can’t offer any help myself in this instance, the actual table you’re importing is irrelevant so both the WordPress and BuddyPress support forums might not be the best place to look to get help. Instead, perhaps try a phpMyAdmin or MySQL support forum. Hopefully they’ll be more help.

    #239821
    noMATTERdesign
    Participant

    I have also noticed, even on this website if I shrink my browser to below the width of maybe 400-500px the menu doesn’t show the WordPress logo. Shouldn’t this happen at a much smaller width as to allow it to show on most smartphones?

    #239813
    Henry Wright
    Moderator

    You’d just submit it as you would a normal WordPress theme, but specify that it provides support for BuddyPress. See some examples:

    https://wordpress.org/themes/tags/buddypress

    jaykdoe
    Participant

    I would like all member profiles to be completely private. Members should only be able to access their own profile and nobody elses. Admin accounts should have access as well, but all profiles should be completely private to all other members.

    I have done some research and have found a few people looking for similar solutions, but none exactly like this. Additionally, it appears there may have been some plugins in the past that would have helped but I can no longer find them in the wordpress plugin repository.

    Does anyone know of any plugins or custom code I could add to bp-custom.php to accomplish this?

    Thanks in advance!

    danbp
    Participant

    FYI, WordPress Theme Review Team is Cracking Down on Violations of the Presentation vs. Functionality Guideline. Read here.

    Henry Wright
    Moderator

    Hi @minglonaire

    Features can be requested on Trac. Try searching existing tickets first to make sure the request isn’t already open.

    maelga
    Participant

    That’s indeed what comes to mind with the newly introduced member types.

    I just came across that old plugin that used to provide a solution for having different profile types: https://wordpress.org/plugins/buddypress-xprofiles-acl/

    One may need to look into it to see how it could possibly give a headstart.

    #239715

    In reply to: Problem with CKEditor

    shanebp
    Moderator

    Probably a javascript conflict. Check your browser console.

    In general, it’s best to use wp_editor instead of ckeditor.

    #239706

    In reply to: Xenforo Integration?

    wonky1
    Participant

    I’ve got this running with a wordpress bridge, happy days..
    All I need now is for BuddyPress to pull from our user tables.
    I would be very grateful for some pointers.

    For instance, can I instruct BP to pull from the Xenforo (XF) database, using these methods;

    Member Types

    many thanks

Viewing 25 results - 5,826 through 5,850 (of 22,683 total)
Skip to toolbar