Search Results for 'wordpress'
-
AuthorSearch Results
-
May 31, 2015 at 7:33 pm #239967
danbp
ParticipantThis 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”…
May 31, 2015 at 1:37 pm #239953In reply to: Messages break theme
danbp
ParticipantAre 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 colorsCan you provide a screenshot of what you get ?
May 31, 2015 at 12:59 pm #239947shanebp
ModeratorI’ll bet you’re using
echoin your shortcode functions.So their output appears before the page content is rendered.
Usereturninstead ofecho.
https://codex.wordpress.org/Shortcode_APIMay 31, 2015 at 1:12 am #239939In reply to: [Resolved] BP CSS Classes Locked in Menu Dashboard
Osisis
ParticipantNot 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.
May 30, 2015 at 10:46 pm #239937In reply to: My favorites
jessicana
ParticipantHello,
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
May 30, 2015 at 6:33 pm #239922danbp
ParticipantCould 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.
May 30, 2015 at 5:28 pm #239920torbenlund
ParticipantHi 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
May 30, 2015 at 4:49 pm #239919danbp
ParticipantIf 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/Run phpinfo if you’re unsure.
May 30, 2015 at 4:23 pm #239917In reply to: My favorites
danbp
ParticipantWhat 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/3794May 30, 2015 at 3:35 pm #239915In reply to: My favorites
jessicana
ParticipantHello,
I found something about this, see:
https://buddypress.trac.wordpress.org/ticket/4393By 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
May 30, 2015 at 12:17 pm #239903In reply to: Auto assign new member to group upon registration
danbp
ParticipantIf you feel comfortable with php, here’s a gist from @imath to autojoin users to groups.
Modify it to add the member_typeA little different, BuddyPress Registration Groups
May 29, 2015 at 7:09 pm #239887danbp
ParticipantHave 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.
May 29, 2015 at 3:55 pm #239875In reply to: Theme in Development: Preview & Feedback?
danbp
ParticipantNo matter the theme or the marketplace, first thing to take in mind is how to respect the standart.
May 29, 2015 at 3:49 pm #239871In reply to: Admin bar icons do not display on some devices
danbp
ParticipantOne 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.May 29, 2015 at 3:31 pm #239868danbp
ParticipantHere a complete WP tutorial, in case of. (read also the comments)
May 29, 2015 at 1:42 pm #239840Henry Wright
ModeratorThere 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.
May 29, 2015 at 8:39 am #239826Henry Wright
ModeratorHi @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.
May 29, 2015 at 5:46 am #239821In reply to: Toolbar Empty for Mobile Logged Out Users
noMATTERdesign
ParticipantI 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?
May 29, 2015 at 12:18 am #239813In reply to: Theme in Development: Preview & Feedback?
Henry Wright
ModeratorYou’d just submit it as you would a normal WordPress theme, but specify that it provides support for BuddyPress. See some examples:
May 28, 2015 at 11:55 pm #239809jaykdoe
ParticipantI 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!
May 28, 2015 at 6:21 pm #239784danbp
ParticipantFYI, WordPress Theme Review Team is Cracking Down on Violations of the Presentation vs. Functionality Guideline. Read here.
May 28, 2015 at 8:47 am #239767Henry Wright
ModeratorHi @minglonaire
Features can be requested on Trac. Try searching existing tickets first to make sure the request isn’t already open.
May 27, 2015 at 9:18 am #239738maelga
ParticipantThat’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.
May 26, 2015 at 7:00 pm #239715In reply to: Problem with CKEditor
shanebp
ModeratorProbably a javascript conflict. Check your browser console.
In general, it’s best to use wp_editor instead of ckeditor.
May 26, 2015 at 3:35 pm #239706In reply to: Xenforo Integration?
wonky1
ParticipantI’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;
many thanks
-
AuthorSearch Results