Search Results for 'wordpress'
-
AuthorSearch Results
-
September 7, 2014 at 9:04 am #190695
In reply to: [Resolved] Re-install Buddypress Tables
danbp
ParticipantPlease give more details about the install.
Host type and plugins list.
Do you use a cache system ? Do you used an automated wordpress install from your host ?
Which software do you use to access your db ?September 6, 2014 at 5:08 pm #190318In reply to: Adding video into activity without plugin
danbp
Participanthi @mahdiar,
i short words: you can not embed any videos.
You can only embed videos from approved providers. See the list on the WP codex.About the why, read here
And for the how, here:
https://codex.wordpress.org/EmbedsThat said, if you paste the url of a youtube(since wp 2.9) or funnyordie video (since wp 4.0) into an activity update, it will show up.
If not, try with 2014 theme first.Test urls:
http://www.funnyordie.com/videos/10619dd2fd/kitten-massage-is-the-best http://www.youtube.com/watch?v=dQw4w9WgXcQSeptember 6, 2014 at 4:18 pm #190252September 6, 2014 at 3:38 pm #189976mahdiar
ParticipantI created the plugin myself! 🙂
https://wordpress.org/plugins/bp-show-activity-liked-avatars/
September 6, 2014 at 3:05 pm #189814In reply to: [Resolved] Re-install Buddypress Tables
danbp
Participantin other words, you didn’t use buddypress for a while and when you reactivate the plugin, all goes wrong.
The easiest way to go is to deactivate buddypress from your plugins list and delete it.
Check it is really the case in the wp-content/plugins/ directory on the FTP server.
Then you check your database and delete any table (16 tables on a single install) you may encounter related to BP.
Those tables are are all prefixed like this: _bp_table_name. By default, wp_bp_table_name.Once done, go back to your wordpress install and check if the site is working flawless.
If ok, you install a new copy of buddypress via the plugin installer on the dashboard.Activate, adjust BP settings without forgetting the permalink setting, and enjoy.
Some codex references:
https://codex.buddypress.org/getting-started/before-installing/before-installing/September 6, 2014 at 2:49 pm #189812In reply to: Help Login
danbp
Participantthis support is in english only. Please don’t post in your native language. FYI, i’m french.
If you prefer dutch, see here:
https://nl.forums.wordpress.org/forum/buddypress
http://www.wplounge.nl/I close this topic. Feel free to create a new one in english.
Dank u voor uw begrip.
September 6, 2014 at 9:10 am #189806In reply to: Buddypress Masonry or Isotope Activity Feed
danbp
ParticipantCertainly if you are comfortable with css, js and php!
http://www.pinterest.com/evohosting/16-of-the-best-free-masonry-style-wordpress-themes/September 6, 2014 at 6:16 am #189795namrons
ParticipantTurns out it’s long standing issue: “Stop using hide_sitewide for privacy purposes” https://buddypress.trac.wordpress.org/ticket/3857
Any suggested work around in the mean time?
September 5, 2014 at 11:11 pm #189719In reply to: Xprofile field description under field label
danbp
ParticipantI understand, but i’m not here to help supporting premium themes. You paid the theme and for support.
https://buddypress.org/support/topic/when-asking-for-support-2/If you don’t know how to do this, you may want to consider hiring a developer.
September 5, 2014 at 11:08 pm #189718In reply to: [Resolved] Add tinymce to Activity Post Form
Henry Wright
ModeratorSeptember 5, 2014 at 8:09 pm #189699shanebp
ModeratorI wouldn’t rely on messing with visibility settings.
To make a profile field only editable by admins, do this in bp-custom.php or a plugin:// only admins can edit the Skills field function chief_hide_profile_fields( $retval ) { if( is_super_admin () ) return $retval; if( bp_is_profile_edit() || bp_is_register_page() ) $retval['exclude_fields'] = '3'; //profile field ID's separated by comma return $retval; } add_filter( 'bp_after_has_profile_parse_args', 'chief_hide_profile_fields' );Note that you need to add the correct id(s) for exclude_fields.
And that ‘ || bp_is_register_page() ‘ keeps the field(s) off the register page – which you may not need to do.Re how to create profile fields in code, there a couple of ways to do it depending on the kind of field and how it will be used.
Take a look at these plugins for more info:
https://wordpress.org/plugins/buddypress-xprofile-custom-fields-type/
https://wordpress.org/plugins/buddypress-xprofile-image-field/September 5, 2014 at 5:11 pm #189696In reply to: [Resolved] a few questions
Henry Wright
ModeratorHi @speedys
Searching the Plugin Directory for “custom admin bar” I came across a few plugins that may be of interest:
These may or may not do what you need but feel free to search yourself. There seems to be lots available.
September 5, 2014 at 6:50 am #189668ernstl
Participant@shanebp the mentioned ref array hook works like a charm. Thank you so much driving me crazy 🙂
To the folks out there: add this to the BBpress bbpress\includes\admin\converter.php
add_action('messages_message_sent', 'my_prevent_msg_send', 5 ); function my_prevent_msg_send( $args ) { unset( $args->recipients ); }to prevent that PMS are send on import.
More about do_action_ref_array hooks here: https://codex.wordpress.org/Function_Reference/do_action_ref_array
rgds,
ernstlSeptember 4, 2014 at 10:15 pm #189661Henry Wright
ModeratorHi Ian
wpautop()is a function you could use for this. Check out:
https://codex.wordpress.org/Function_Reference/wpautopSeptember 4, 2014 at 9:18 pm #189654In reply to: [Resolved] Installing BP from git/svn
jreeve
ParticipantThanks @danbp. I got it to work by doing this:
cd /path/to/wp-content/plugins svn co https://buddypress.svn.wordpress.org/trunk/src buddypressAnd then installed the
bp-defaulttheme manually with this:mkdir buddypress/bp-themes cd !$ git clone https://github.com/buddypress/BP-Default.gitSeptember 4, 2014 at 8:43 pm #189652In reply to: [Resolved] Installing BP from git/svn
danbp
ParticipantHi @jreeve,
Perhaps try directly from buddypress svn, https://buddypress.trac.wordpress.org/browser/trunk
This let you also provide patches, which is not possible on github.An install guide is here:
https://make.wordpress.org/core/handbook/installing-wordpress-locally/installing-via-svn/September 4, 2014 at 8:29 pm #189646In reply to: Admin Customization Based on Roles
danbp
ParticipantOn a single install, users have never access to the dashboard. This only happens if they have a blog on a multi site. And the admin they see is the admin of their blog, not the main blog where BP is installed.
But first, read here please, provide the information and your theme name. be warned that if you use a premium, that you can’t expect much help on this forum, as we have no access to such themes.
FYI: the admin toolbar or any of the BP menus are working like any other menus and toolbar labels on wordpress. Is explained on the WP codex.
For more advanced details, see here.For specific BP customization, read the BP Codex.
September 4, 2014 at 7:53 pm #189642In reply to: [Resolved] Remove Dashboard Access
JsonB123
ParticipantI wanted an Ajaxified login along with removal of dashboard access and I’m using 2 plugins:
Remove Dashboard Access
Login With AjaxLogin With Ajax also has a settings panel that allows you to redirect the users (globally or role based) upon login and logout, so it replaces the BP Redirect to Profile, as well, if you’re looking for that type of login functionality to go along with the redirect.
BP Redirect to Profile doesn’t block wp-admin access in and of itself, it just redirects the user to their profile upon login, but doesn’t block the admin if they put the URL in directly.
September 4, 2014 at 6:44 pm #189635In reply to: 3 Step registration Process in buddypress
Henry Wright
ModeratorThere is some related discussion in this Trac ticket but nothing has been implemented yet:
https://buddypress.trac.wordpress.org/ticket/4132September 4, 2014 at 5:01 pm #189629In reply to: BuddyPress Group Friend Invite Email Link Loop Error
Adson5th
ParticipantI am running the latest version of wordpress
Wordpress as a directory and is root.
I am using Multinews Theme which has Buddypress integrated into it’s theme
Nginx Server
Running latest version of Buddypress
September 4, 2014 at 4:01 pm #189617In reply to: Simple Way to Enable Image posting in Forums
danbp
Participantbbpress use tinymce, and you can add some tools to the editor. Search on the tinymce support forum. Also some topics on the bbpress forum around this.
As admin you can use this snippet, to get the same media button as n the backend editor.
Be aware that allowing access to anybody to your medias is risky.
That’s why the default bbP editor is only shipped with an image linker.
So i guess shane’s tip to use the plugin is best to do for now.It exist also this plugin, with image upload allowed for authors and above roles.
https://wordpress.org/plugins/bbpress-enable-tinymce-visual-tab/function bpfr_bbp_editor_upload_media( $args ) { $args['media_buttons'] = true; return $args; } add_filter( 'bbp_before_get_the_content_parse_args', 'bpfr_bbp_editor_upload_media' );September 4, 2014 at 3:49 pm #189613In reply to: Extended Profiles / Can't edit the fields
danbp
ParticipantIf you have suggestion or enhancement request, feel free to leave them on
https://buddypress.trac.wordpress.org/newticket
You might use the same login as on this forum.September 4, 2014 at 3:45 pm #189610In reply to: Simple Way to Enable Image posting in Forums
shanebp
Moderator>most people using forums expect to be able to insert images into their posts nowadays.
Agreed.
Because BuddyPress and bbPress are two separate plugins, don’t expect BuddyPress to address this issue.
I’ve never used it, but try the free version of
https://wordpress.org/plugins/gd-bbpress-attachments/September 4, 2014 at 10:33 am #189598In reply to: Allow any users to message each other?
Henry Wright
ModeratorHi @godavid33,
Unless things have changed, users should be able to message anybody. Are you sure you’re not using a plugin such as BuddyPress Private Messages for Friends Only?
September 4, 2014 at 10:21 am #189597In reply to: Searching Members Results Screen – Issue with links
Cartographer
ParticipantYes @danbp
You have absolutely right.
Wordpress: 3.9.2
BuddyPress: 2.0.2
Theme: Twenty FourteenThe issue I am talking about can be replicated (in my installation) using every theme.
I wish I could be more specific.
-
AuthorSearch Results