Search Results for 'wordpress'
-
AuthorSearch Results
-
February 27, 2015 at 9:41 am #235224
In reply to: Ideas plugin : Images tab for bp-activity plus
danbp
ParticipantYou’ll have more chance by asking for this on the plugin support ! π
February 27, 2015 at 9:40 am #235223AfromanJ
ParticipantBasically Ive been asked to fix this field problem on someone elses website, Ive just been given access to FTP so can now make changes to the server files.
They are using a theme called Huddle and have BuddyPress install on the latest version:
http://themeforest.net/item/huddle-wordpress-buddypress-community-theme/835549The theme folder has a members folder in for BuddyPress, which i assumed was the standard for BuddyPress. I have overridden the templates you suggested in /themes/huddle/members/single and the issue is still present.
I switched to a default WordPress theme to test compatibility and the fields are working like normal. So the issues is with the Huddle theme, now that its using the correct profile-loop and edit templates im not sure what the problem can be?
February 27, 2015 at 9:38 am #235222In reply to: How to get top-bar and profile menu like bp org
danbp
ParticipantHi @rosyteddy,
since BP 1.7 theme compatibility was introduced, which allowed the use of almost every theme on a BP powered site. Previously, you could practicaly only use bp-default theme. Since bp-default was removed (7569) from the install package, that theme lives his own life. A few time later, it was decided to publish the source code of the bp-default custom theme used on bp.org…
I wonder then why BP is not releasing this as a default theme for BP!
Don’t wonder ! Because devs wanted to concentrate on their plugin, not on a specifical theme. It tooks hard working to isolate bp-default. And certainly not to introduce a new one today. π
You have access to the source code. You’re free to use it and to skin it to your needs.
If you don’t see colors or any other elements, you have to check your work and redo it if you comes if you have errors or omissions.
Difficult to tell you what you did wrong. IMO nothing, but if you’re mixing your theme and bp-default Γ la bp.org, you missed probably somethings.
If you don’t know how to do this, you can hire somebody on BP Job Board forum.
February 27, 2015 at 9:16 am #235221In reply to: Blog comment reply notifications
giuseppecuttone
ParticipantHi @alexterchum and @sbrajesh
I think Alex is right.
The other BuddyPress Notifications disappears when user visit the page.
Also the others notifications generated with the others plugins that sbrajesh has developped (BP Group Activities Notifier and BuddyPress Activity Comment Notifier) run well.
For example if the USER A send a message to USER B, USER B receive one notification.
When USER B visit the page whin the message (http://URLWEBSITE/members/USER-NAME/messages/view/xx/) – clicking in the notification or by other way… – the notification will be dissapear.
Also in the page http://URLWEBSITE/members/USER-NAME/notifications/, when user visit the page with the message, the message automatically will go to the section UNREAD and it is not necessary that the user must to mark as READ the message in order to dissapear the notification.I have the same problem with FORUM notification (using https://wordpress.org/support/plugin/bp-forum-notifier).
sbrajesh, can you solve the problem in the plugin “BuddyPress Notify Post Author on Blog Comment”?
Thank’s very much
February 26, 2015 at 5:35 pm #235182Hugo Ashmore
ParticipantThis is likely an issue with necessary changes BP had to make setting is_page() to zero for BP pages, sadly causing a WP bug to manifest, WP has been patched to handle this issue.
You can apply this patch to WP core in advance of it being released to correct the problem – if that is this is the issue.
https://core.trac.wordpress.org/attachment/ticket/24674/24674.2.diff
February 26, 2015 at 3:07 pm #235177AfromanJ
ParticipantHey, I could be using the wrong view and edit templates as they do not look the same as the profile pages on buddypress.org.
I do not have full access to replace files on the server manually, I have updated WordPress and BuddyPress to the latest versions.
Do I need to manually replace the legacy files on the server with these files?
https://github.com/buddypress/BuddyPress/tree/master/src/bp-templates/bp-legacy/buddypressI thought this would correct itself when the plugin is updated.
February 25, 2015 at 8:45 am #235133Hugo Ashmore
ParticipantI ran across this the other day, and it’s been ticketed and will be looked into:
https://buddypress.trac.wordpress.org/ticket/6167February 25, 2015 at 5:00 am #235131In reply to: new BuddyPress plugin: BP Local Avatars
shanebp
ModeratorNow in the WP plugin repo:
https://wordpress.org/plugins/bp-local-avatars/And still available here: PhiloPress
February 24, 2015 at 9:40 pm #235114In reply to: How remove header/footer from Register page?
SimpleOne
Participant@hnla thank you for the guidance. FWIW, I did try doing as much research as possible (and trying out a few things) before posting my question here.
I reviewed the information contained in the link you provided. Thanks for that. But after reading through that information, what I’m still unclear about is how/what template I should modify in order to affect ONLY the BP Registration page. (FYI, I’m not a php developer, so I do need a bit of hand holding for some of this kinda stuff.)
I read through the info on how to “Customize the layouts of BuddyPress pages within the WordPress Default Themes”. However, the instructions provided there seem to apply to scenarios where a site admin is wanting to make page template changes that apply to all BP pages on a site (i.e., by placing a customized buddypress.php file in the child theme folder).
In my case, I’m only wanting to change a single page (the Registration page) to remove the headers and footers. So I’m still unsure how I would go about doing that (even after reading through the info). Thank you very much for any specific guidance you can provide me with to accomplish this.
February 24, 2015 at 12:34 pm #235083In reply to: Best way to add custom posts to activity stream
leanneoleary
ParticipantThanks for your help with this but I am still not sure what I need to do. The function I posted was just an example that I had found from an earlier forum, I do not need to add videos and pictures to the activity stream.
I need to add details of a custom post type every time a custom form is submitted from the frontend by a user. The custom post type is “Files”. Below is a class for the form and it is within the CMB (custom meta boxes) plugin folder. Can you advise on how to implement the code to record these forms posts in the activity stream?
class uploadForm { // Set prefix public $prefix = '_cmb_'; /** * Construct the class. */ public function __construct() { add_filter( 'cmb_meta_boxes', array( $this, 'cmb_metaboxes' ) ); add_shortcode( 'cmb-form', array( $this, 'do_frontend_form' ) ); add_action( 'init', array( $this, 'initialize_cmb_meta_boxes' ), 9 ); /* add_action( 'cmb_save_post_fields', array( $this, 'save_fields' ), 10, 4 );*/ add_action( 'save_post', array( $this, 'save_fields' ), 10, 4 ); /*add_filter( 'bp_blogs_record_comment_post_types', 'add_activity' ); IS THIS CORRECT? */ } /** * Define the metabox and field configurations. */ public function cmb_metaboxes( array $meta_boxes ) { /** * Metabox for the "Memorials" front-end submission form */ $meta_boxes['upload_files_metabox'] = array( 'id' => 'files', 'title' => __( 'Upload files', 'cmb' ), 'pages' => array( 'Files' ), // Post type 'context' => 'normal', 'priority' => 'high', 'show_names' => true, // Show field names on the left 'fields' => array( array( 'name' => __( 'File description', 'cmb' ), 'desc' => __( 'File title or description', 'cmb' ), 'id' => $this->prefix . 'title', 'type' => 'text', ), array( 'name' => __( 'Project stage', 'cmb' ), 'desc' => __( 'select stage (optional)', 'cmb' ), 'id' => $this->prefix . 'category', 'type' => 'taxonomy_select', 'taxonomy' => 'stages', // Taxonomy Slug ), array( 'name' => __( 'Link to website', 'cmb' ), 'desc' => __( 'Add url to website (optional)', 'cmb' ), 'id' => $this->prefix . 'url', 'type' => 'text_url', 'protocols' => array('http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet'), // Array of allowed protocols // 'repeatable' => true, ), array( 'name' => __( 'Upload image', 'cmb' ), 'desc' => __( 'Upload an image or enter a URL.', 'cmb' ), 'id' => $this->prefix . 'image', 'type' => 'file', ), array( 'name' => __( 'Upload files', 'cmb' ), 'desc' => __( 'Upload or add multiple images/attachments.', 'cmb' ), 'id' => $this->prefix . 'file_list', 'type' => 'file_list', ), array( 'name' => __( 'oEmbed', 'cmb' ), 'desc' => __( 'Enter a youtube, twitter, or instagram URL. Supports services listed at <a href="https://codex.wordpress.org/Embeds">https://codex.wordpress.org/Embeds</a>.', 'cmb' ), 'id' => $this->prefix . 'embed', 'type' => 'oembed', ), ), ); return $meta_boxes; } /** * Shortcode to display a CMB form for a post ID. */ public function do_frontend_form() { // Default metabox ID $metabox_id = 'upload_files_metabox'; // Get all metaboxes $meta_boxes = apply_filters( 'cmb_meta_boxes', array() ); // If the metabox specified doesn't exist, yell about it. if ( ! isset( $meta_boxes[ $metabox_id ] ) ) { return __( "A metabox with the specified 'metabox_id' doesn't exist.", 'cmb' ); } // This is the WordPress post ID where the data should be stored/displayed. $post_id = 0; if ( $new_id = $this->intercept_post_id() ) { $post_id = $new_id; echo 'Thank You for your submission.'; } // Shortcodes need to return their data, not echo it. $echo = false; // Get our form $form = cmb_metabox_form( $meta_boxes[ $metabox_id ], $post_id, $echo ); return $form; } /** * Get data before saving to CMB. */ public function intercept_post_id() { // Check for $_POST data if ( empty( $_POST ) ) { return false; } // Check nonce if ( ! ( isset( $_POST['submit-cmb'], $_POST['wp_meta_box_nonce'] ) && wp_verify_nonce( $_POST['wp_meta_box_nonce'], cmb_Meta_Box::nonce() ) ) ) { return; } // Setup and sanitize data if ( isset( $_POST[ $this->prefix . 'title' ] ) ) { //add post data to database $this->new_submission = wp_insert_post( array( 'post_title' => sanitize_text_field( $_POST[ $this->prefix . 'title' ] ), 'post_author' => get_current_user_id(), 'post_status' => 'publish', // Set to draft so we can review first 'post_type' => 'file', ), true ); // If no errors, save the data into a new post draft if ( ! is_wp_error( $this->new_submission ) ) { return $this->new_submission; } } return false; } /** * Grant temporary permissions to subscribers. */ public function grant_publish_caps( $caps, $cap, $args ) { if ( 'edit_post' == $args[0] ) { $caps[$cap[0]] = true; } return $caps; } /** * Save custom fields and uploaded files */ public function save_fields( $post_id, $post ) { if($_POST['_cmb_category'] != ''){ add_post_meta( $post_id, '_cmb_category', $_POST['_cmb_category'], true ); } if($_POST['_cmb_url'] != ''){ add_post_meta( $post_id, '_cmb_url', $_POST['_cmb_url]'], true ); } if($_POST['_cmb_image'] != ''){ add_post_meta( $post_id, '_cmb_image', $_POST['_cmb_image'], true ); } if($_POST['_cmb_image_id'] != ''){ add_post_meta( $post_id, '_cmb_image_id', $_POST['_cmb_image_id'], true ); } if($_POST['_cmb_file_list'] != ''){ add_post_meta( $post_id, '_cmb_file_list', $_POST['_cmb__file_list'], true ); } if($_POST['_cmb_embed'] != ''){ add_post_meta( $post_id, '_cmb_embed', $_POST['_cmb_embed'], true ); } } /** * Initialize CMB. */ public function initialize_cmb_meta_boxes() { if ( ! class_exists( 'cmb_Meta_Box' ) ) { require_once 'init.php'; } } /** * Add to buddypress activity timeline. - HOW??? */ public function add_activity($post_types) { /* $activity_id = bp_activity_add( $args ); return $activity_id;*/ /* $post_types[] = 'file'; return $post_types;*/ } } // end class $uploadForm = new uploadForm();February 24, 2015 at 12:16 pm #235081In reply to: cant create topics for standart users
wolfied
ParticipantI’m not an expert on wordpress and I am afraid, I’m not sure as to how I can create the forum outside of groups. But my question is, if a group is set to public, it should be reffering that it’s visible to anyone and it must NOT be compulsory to join the group for the public groups. Why can’t this be done?
Any guide for carrying the whole forum outside the groups ? how would it effect me?
February 24, 2015 at 11:42 am #235077In reply to: Search Member
Henry Wright
ModeratorHi @aymanomar85
Have you tried BP Profile Search?
February 24, 2015 at 10:33 am #235069In reply to: Keep users from /wp-admin
mvaneijgen
ParticipantThis works
// hook failed login add_action('wp_login_failed', 'my_front_end_login_fail'); function my_front_end_login_fail($username){ // Get the reffering page, where did the post submission come from? $referrer = $_SERVER['HTTP_REFERER']; // if there's a valid referrer, and it's not the default log-in screen if(!empty($referrer) && !strstr($referrer,'wp-login') && !strstr($referrer,'wp-admin')){ // let's append some information (login=failed) to the URL for the theme to use wp_redirect($referrer . '?login=failed'); exit; } }http://www.wpinsite.com/code-snippets/how-to-redirect-wordpress-failed-logins
February 24, 2015 at 10:24 am #235067In reply to: Login button sends to standard WP login page
hutchison
Participant@rosyteddy, I found that the quickest, easiest, and most efficient solution was to substitute a different login widget. This one I found really works perfectly for me:
https://wordpress.org/plugins/sidebar-login/
Many thanks, nonetheless, for your ongoing support and advice.
February 24, 2015 at 3:40 am #235052In reply to: NO ONE WILL HELP ME WITH BUDDYPRESS
bp-help
Participant@rapforthemoment
Have you tried this plugin:
https://wordpress.org/plugins/dynamic-widgets/February 23, 2015 at 6:10 am #235013vitamincee
Participant@mcpeanut Thanks, and like I said I’m aware of the issue of too many admins. I’ve been working with WordPress for over 10 years, I know about roles and capabilities. This is a site that I help out with – not my personal site, and there are a lot of moving parts.
I am curious if you can replicate this odd behavior, thanks for investigating.
February 22, 2015 at 6:44 pm #234987In reply to: Activity bar accessibility for visually impared
Henry Wright
ModeratorHi @hipp
Sounds like some accessibility enhancements might be needed to the menu’s markup. I suggest you open a Trac ticket giving the core developers as much info about the problem as you can.
You can use your same login details on Trac.
February 22, 2015 at 6:40 pm #234985In reply to: Missing Meta Title
@mercime
ParticipantWP SEO doesn’t provide support for BuddyPress https://buddypress.trac.wordpress.org/ticket/5800
February 22, 2015 at 5:10 pm #234972In reply to: Sitemap Breaks when I install Buddy Press
Michael
ParticipantAnd just when you think things are about to get worse…they get better. On a lark I went in and re-saved the Permalinks configuration on my site, and the Sitemaps appeared again. It looks like it is working.
So a word to the wise, if you ever update BuddyPress and use WordPress SEO, be sure to check whether your sitemap is still working, whether the BuddyPress page titles are working, etc. If not, try and save your Permalink configuration (under Dashboard->Settings->Permalinks).
Michael
February 22, 2015 at 4:51 pm #234971In reply to: Sitemap Breaks when I install Buddy Press
Michael
ParticipantI just noticed this same problem with missing sitemaps on my site when upgrading to BuddyPress 2.2.1.
It seems related to the problem with botched BuddyPress page titles I discussed in this post: https://buddypress.org/support/topic/buddypress-2-2-1-incompatible-with-yoast-seo-botched-page-titles/
There must be a major new incompatibility between BuddyPress 2.2.x and Yoast WordPress SEO (plugin version 1.7.3.1) that REALLY needs to get fixed.
Disabling WordPress SEO is not the solution to this problem. I will have to roll back my BuddyPress installation, which is a big pain the *ss. Not happy.
Michael
February 22, 2015 at 4:46 pm #234970bp-help
Participant@michaelhpdx
Not sure if these fixes still work but its worth a try:Making WordPress SEO plugin compatible with BuddyPress Part 2
Good luck!February 22, 2015 at 2:57 pm #234963In reply to: Login button sends to standard WP login page
hutchison
ParticipantSorry … I guess I should have mentioned that I’m using WordPress v.4.1.1 and BuddyPress v.2.2.1
The site URL is: http://mylifeismymuseum.eu/mlimm/activity/ and that I have tested with several different themes.So asking again … Iβve found that, if a site member clicks the βLog Inβ button without first entering their username and password, the page redirects to the default WordPress login page (/wp-login.php)
How (and where) might I modify the code so that, instead, it simply fails or, better, displays a an error message to remind the user to fill in their login credentials?
February 22, 2015 at 1:23 pm #234957In reply to: New plugin: BuddyPress Identicons
Henry Wright
ModeratorReally cool to see the plugin in action and thanks for the review on wordpress.org! π
February 22, 2015 at 1:40 am #234935In reply to: New plugin: BuddyPress Identicons
rosyteddy
Participant@henrywright @danbp I think I already voted for this π
@henrywright if you are accepting plugin *ideas* I will suggest a small thing. But first my apologies for using this thread. Feel free to delete.
Here goes:
Please see https://wordpress.org/plugins/ls-buddypress-activity-plus-tabs-extension/
This does it for the Groups only, can you please use the code to do it for the member profile page, that is, an Images tab on the member profile. Thanks.February 21, 2015 at 7:24 pm #234918danbp
ParticipantForgot my question ! It’s not a theme issue, but a missing in the core. I was curious about that issue and tested it. And finally opened a ticket (#6246) with more details. Don’t hesitate to follow it and/or to give your opinion, patch or what ever can be considered as usefull to solve this bug. π
-
AuthorSearch Results