Search Results for 'wordpress'
-
AuthorSearch Results
-
September 8, 2014 at 3:06 pm #190943
In reply to: Activity Favorite Notification
danbp
Participanthi @aghajoon,
don’t jump into old post please !Much more convenient, would be to use the buddypress notification manager plugin !
Works with 4.0 and bp 2.02
September 8, 2014 at 3:03 pm #190942In reply to: [Resolved] bbPress and BuddyPress translation
giggio
ParticipantAll this is correct. The files is bbpress-bg_BG.mo and bbpress-bg_BG.po for bbpress and buddypress-bg_BG.mo and buddypress-bg_BG.po for buddyprerss. In wp-config – (‘WPLANG’, ‘bg_BG’) … site is in bulgarian.
And like I said, all is worked correctly (almost a year till now) before wordpress update.
September 8, 2014 at 2:27 pm #190937danbp
ParticipantIMHO you do it overcomplicated.
Create a new page; call it “extra”
Create eventually a template for it. Basically, you made a copy of your theme “page.php”, you rename it “my-extra_page.php” and in the file header, you remove the original page comment and replace it with the new template comment./* * Template name: my extra page */Save !
Back to the page “extra” > edit and asign it the new template.
Now you can add a this page to each profile by using the abose snippet from the child-theme functions.php
function bpfr_my_setup_nav() { global $bp; $mytab=array( 'name' => 'My Tab', 'link' => 'permalink_to_your_page', // the one under the page title on page editor 'slug' => 'my-tab', 'css_id' => 'my_custom_tab', 'position' => 100, 'user_has_access' => 1, 'screen_function' => 'xprofile_screen_my_tab' ); $bp->bp_options_nav['profile']['my-tab'] = $mytab; } add_action('bp_setup_nav', 'bpfr_my_setup_nav');You can now add into this page template any code you want. To call a plugin, a specific content or what else.
To avoid this page to be shown in the menu bar, you can use this old plugin (it still works with 4.0)
To use a shortcode from within the text widget (this is not possible by default)
you can add this to your child-theme functions.phpadd_filter('widget_text', 'do_shortcode', 11);
Now you can use a shortcode in this widget !September 8, 2014 at 1:36 pm #190934In reply to: BuddyPress overrides members Packages
danbp
Participanthow do you expect some help if you don’t give the theme name or a site url ?
This is not a buddypres issue, but a wordpress setting affair.Make the member package page as start page and set buddypress as private or members only.
More about “private” here:
https://buddypress.org/support/tag/private/September 8, 2014 at 1:28 pm #190933In reply to: Make an extra Site only with the post-form
danbp
Participantinstalling an extra site just for sharing posts is somehow a big task for… nothing and requires a multisite install. Made it simple ! Share your RSS feed…
http://www.wpbeginner.com/wp-tutorials/how-to-add-social-buttons-to-wordpress-rss-feed/Sorry If i misunderstand you. If the goal is to ADD an external link to your posts, you can create a custom post type for that or simply paste the link into a post.
If this is also not what you want, explain what kind of post, from where and how your members should use a sharing button. Even if BuddyPress doesn’t handle posts, he only shows them.
Also you can read some related forum topics here:
https://buddypress.org/support/tag/share/September 8, 2014 at 1:04 pm #190930In reply to: Managing group creation
danbp
Participantchange the tables prefix !
Check also some index.php firstly, for some encrypted datas, like base64_decode on the first line…If this matches, you have also to scan your computer.
You can use the wordfence plugin (and de-install if nothing is found)
This one is really efficient against fake registering.
But in any case, this is like carrying water in a sieve or perforated device !
September 8, 2014 at 11:02 am #190923In reply to: [Resolved] Re-install Buddypress Tables
christicehurst
ParticipantBelow is the errors that gave out after installing Buddypress
WordPress database error: [Table 'christic_database.wp_bp_xprofile_data' doesn't exist] SELECT id, user_id, field_id, value, last_updated FROM wp_bp_xprofile_data WHERE field_id = 1 AND user_id IN (1) WordPress database error: [Table 'christic_database.wp_bp_xprofile_fields' doesn't exist] SELECT * FROM wp_bp_xprofile_fields WHERE id = 1 WordPress database error: [Table 'christic_database.wp_bp_xprofile_fields' doesn't exist] SELECT type FROM wp_bp_xprofile_fields WHERE id = 1 WordPress database error: [Table 'christic_database.wp_bp_xprofile_fields' doesn't exist] SELECT id FROM wp_bp_xprofile_fields WHERE id = 1 Warning: Cannot modify header information - headers already sent by (output started at /home/christic/public_html/wp-content/plugins/ubermenu/core/UberMenuWalkerCore.class.php:227) in /home/christic/public_html/wp-includes/pluggable.php on line 1173 WordPress database error: [Table 'christic_database.wp_bp_user_blogs' doesn't exist] SELECT COUNT(*) FROM wp_bp_user_blogs WordPress database error: [Table 'christic_database.wp_bp_user_blogs' doesn't exist] DELETE FROM wp_bp_user_blogs WHERE 1=1 Notice: Trying to get property of non-object in /home/christic/public_html/wp-content/plugins/buddypress/bp-members/bp-members-admin.php on line 829 Notice: Trying to get property of non-object in /home/christic/public_html/wp-content/plugins/buddypress/bp-members/bp-members-admin.php on line 829 WordPress database error: [Table 'christic_database.wp_bp_user_blogs' doesn't exist] SELECT COUNT(id) FROM wp_bp_user_blogs WHERE user_id = 1 AND blog_id = 1 WordPress database error: [Table 'christic_database.wp_bp_user_blogs' doesn't exist] INSERT INTO wp_bp_user_blogs ( user_id, blog_id ) VALUES ( 1, 1 ) WordPress database error: [Table 'christic_database.wp_bp_user_blogs_blogmeta' doesn't exist] SELECT blog_id, meta_key, meta_value FROM wp_bp_user_blogs_blogmeta WHERE blog_id IN (1) ORDER BY id ASC WordPress database error: [Table 'christic_database.wp_bp_user_blogs_blogmeta' doesn't exist] SELECT id FROM wp_bp_user_blogs_blogmeta WHERE meta_key = 'url' AND blog_id = 1 WordPress database error: [Table 'christic_database.wp_bp_user_blogs_blogmeta' doesn't exist] INSERT INTO <code>wp_bp_user_blogs_blogmeta</code> (<code>blog_id</code>,<code>meta_key</code>,<code>meta_value</code>) VALUES (1,'url','http://www.christicehurst.me') WordPress database error: [Table 'christic_database.wp_bp_user_blogs_blogmeta' doesn't exist] SELECT id FROM wp_bp_user_blogs_blogmeta WHERE meta_key = 'name' AND blog_id = 1 WordPress database error: [Table 'christic_database.wp_bp_user_blogs_blogmeta' doesn't exist] INSERT INTO <code>wp_bp_user_blogs_blogmeta</code> (<code>blog_id</code>,<code>meta_key</code>,<code>meta_value</code>) VALUES (1,'name','Chris Ticehurst') WordPress database error: [Table 'christic_database.wp_bp_user_blogs_blogmeta' doesn't exist] SELECT id FROM wp_bp_user_blogs_blogmeta WHERE meta_key = 'description' AND blog_id = 1 WordPress database error: [Table 'christic_database.wp_bp_user_blogs_blogmeta' doesn't exist] INSERT INTO <code>wp_bp_user_blogs_blogmeta</code> (<code>blog_id</code>,<code>meta_key</code>,<code>meta_value</code>) VALUES (1,'description','Creative Writer cat') WordPress database error: [Table 'christic_database.wp_bp_user_blogs_blogmeta' doesn't exist] SELECT id FROM wp_bp_user_blogs_blogmeta WHERE meta_key = 'last_activity' AND blog_id = 1 WordPress database error: [Table 'christic_database.wp_bp_user_blogs_blogmeta' doesn't exist] INSERT INTO <code>wp_bp_user_blogs_blogmeta</code> (<code>blog_id</code>,<code>meta_key</code>,<code>meta_value</code>) VALUES (1,'last_activity','2014-09-08 10:59:55') WordPress database error: [Table 'christic_database.wp_bp_user_blogs_blogmeta' doesn't exist] SELECT id FROM wp_bp_user_blogs_blogmeta WHERE meta_key = 'close_comments_for_old_posts' AND blog_id = 1 WordPress database error: [Table 'christic_database.wp_bp_user_blogs_blogmeta' doesn't exist] INSERT INTO <code>wp_bp_user_blogs_blogmeta</code> (<code>blog_id</code>,<code>meta_key</code>,<code>meta_value</code>) VALUES (1,'close_comments_for_old_posts','') WordPress database error: [Table 'christic_database.wp_bp_user_blogs_blogmeta' doesn't exist] SELECT id FROM wp_bp_user_blogs_blogmeta WHERE meta_key = 'close_comments_days_old' AND blog_id = 1 WordPress database error: [Table 'christic_database.wp_bp_user_blogs_blogmeta' doesn't exist] INSERT INTO <code>wp_bp_user_blogs_blogmeta</code> (<code>blog_id</code>,<code>meta_key</code>,<code>meta_value</code>) VALUES (1,'close_comments_days_old','14') WordPress database error: [Table 'christic_database.wp_bp_user_blogs_blogmeta' doesn't exist] SELECT id FROM wp_bp_user_blogs_blogmeta WHERE meta_key = 'thread_comments_depth' AND blog_id = 1 WordPress database error: [Table 'christic_database.wp_bp_user_blogs_blogmeta' doesn't exist] INSERT INTO <code>wp_bp_user_blogs_blogmeta</code> (<code>blog_id</code>,<code>meta_key</code>,<code>meta_value</code>) VALUES (1,'thread_comments_depth','5')Below is the errors from two other plugins
Strict Standards: Declaration of UberMenuWalkerCore::start_lvl() should be compatible with Walker_Nav_Menu::start_lvl(&$output, $depth = 0, $args = Array) in /home/christic/public_html/wp-content/plugins/ubermenu/core/UberMenuWalkerCore.class.php on line 227 Strict Standards: Declaration of UberMenuWalkerCore::start_el() should be compatible with Walker_Nav_Menu::start_el(&$output, $item, $depth = 0, $args = Array, $id = 0) in /home/christic/public_html/wp-content/plugins/ubermenu/core/UberMenuWalkerCore.class.php on line 227 Strict Standards: Declaration of UberMenuWalkerCore::end_el() should be compatible with Walker_Nav_Menu::end_el(&$output, $item, $depth = 0, $args = Array) in /home/christic/public_html/wp-content/plugins/ubermenu/core/UberMenuWalkerCore.class.php on line 227 Strict Standards: Declaration of UberMenuWalkerEdit::start_lvl() should be compatible with Walker_Nav_Menu::start_lvl(&$output, $depth = 0, $args = Array) in /home/christic/public_html/wp-content/plugins/ubermenu/core/UberMenuWalkerCore.class.php on line 401 Strict Standards: Declaration of UberMenuWalkerEdit::end_lvl() should be compatible with Walker_Nav_Menu::end_lvl(&$output, $depth = 0, $args = Array) in /home/christic/public_html/wp-content/plugins/ubermenu/core/UberMenuWalkerCore.class.php on line 401 Strict Standards: Declaration of UberMenuWalkerEdit::start_el() should be compatible with Walker_Nav_Menu::start_el(&$output, $item, $depth = 0, $args = Array, $id = 0) in /home/christic/public_html/wp-content/plugins/ubermenu/core/UberMenuWalkerCore.class.php on line 401 Notice: Undefined index: ctype in /home/christic/public_html/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-interest.php on line 575 Notice: Undefined index: user_id in /home/christic/public_html/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-interest.php on line 576September 8, 2014 at 9:42 am #190919In reply to: [Resolved] bbPress and BuddyPress translation
giggio
ParticipantYes, the files are in correct directory but the translation not work. Before the 4.0 update of wordpress there was not problem … Here is the site – http://pokerspirit.net/forum/new-topic/
September 8, 2014 at 12:29 am #190895In reply to: [Resolved] Problems after update WP
@mercime
Participant@riccardo-rossini WP 4.0 introduced the new Media Library Grid, among others. Any plugin that adds features to the media library may need serious work per https://make.wordpress.org/support/2014/08/omg-wtf-bbq-post/ So at this point, I suggest that you follow up with the rtmedia plugin authors about your issue.
September 7, 2014 at 9:02 pm #190893shanebp
Moderator>I can also report that the same bug is manifesting in the “My Favorites” and “Mentions” streams in the same way that it does in “My Groups” – only the word “replied” appears.
I cannot replicate those issues.
Re ‘My Groups’: Fixed. Thanks to @r-a-y
See: https://buddypress.trac.wordpress.org/attachment/ticket/5862/5862.01.patchHopefully it will make it into 2.1
September 7, 2014 at 10:34 am #190697In reply to: [Resolved] Re-install Buddypress Tables
christicehurst
ParticipantShare Paid Hosting
Plugins: Advanced Categories Widget, bbpress, Imsanity, Jetpack, Registration Honeypot, Team Showcase, UberMenu 2
No automated install for WordPress and I use phpmyadmin
If things continue to stay weird in terms of solving this, I am happy to PM log in details to you guys to see what’s going on under the hood.
September 7, 2014 at 9:04 am #190695In 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/wpautop -
AuthorSearch Results