Replies
- Brajesh Singh on February 10, 2017 at 5:38 am in reply to: [Resolved] How to get notification for new topic added in subscribed forum (bbpress) #7289
Sorry about that. I was cleaning before update and I had used it for somereason instead of the correct one(bpp_get_topic_permalink).
Please re download it. I have pushed the change.
Thank you
Brajesh Hi Ben,
I am sorry. I am, looking at it now., will get back to you soon there.- Brajesh Singh on February 10, 2017 at 4:44 am in reply to: Displaying title and user on shortcode pages #7286
Hi,
Please use the code from here/** * Display the name of the creator of the gallery below gallery cover * */ function mpp_custom_display_gallery_owner_name() { $gallery = mpp_get_gallery(); if ( ! $gallery ) { return ; } printf( 'by: %s', bp_core_get_userlink( $gallery->user_id ) ); } add_action( 'mpp_gallery_shortcode_item_meta', 'mpp_custom_display_gallery_owner_name' );For other cases, you may take a look at the code here
https://gist.github.com/sbrajesh/b47b84c3fdca9b76f04e696894a80d06We will be pushing the changed code(sorry, we missed the last deadline), hopefully this sunday too.
Thank you. We will keep you informed.Regards
Brajesh Thank you Graham.
I took the opportunity to sort out our grids(We had issues with grids control on different layout and various places).Will release the first major update tomorrow(Saturday).
Also, since the very first time you had mentioned for changes log, I have always kept(and updated) it on our theme release history page.https://buddydev.com/docs/guides/community-builder/miscellaneous/community-builder-releases/
Thank you
Brajesh- Brajesh Singh on February 10, 2017 at 4:23 am in reply to: [Resolved] How to get notification for new topic added in subscribed forum (bbpress) #7284
Hi,
I have created a small plugin for you(It does not handle topic deletion yet)
https://github.com/buddydev/bbp-bp-notify-new-topicPlease use the plugin and it will work as expected.
Hope that helps.
Regards
Brajesh Hi Ben,
Thank you for posting.
Since BuddyBlog utilises WP_Query for listing posts, you can use the orderby=rand for randomizing the posts list.Please see all the orderby options here
https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
Hope that helps.
Regards
BrajeshSure. I will work on it this weekend.
Thank you
Brajesh- Brajesh Singh on February 8, 2017 at 12:55 am in reply to: [Resolved] How to get notification for new topic added in subscribed forum (bbpress) #7269
Thank you. It can be easily done by adding a local notification. Please allow me to the put the code for you in the day tomorrow.
Thank you
Brajesh - Brajesh Singh on February 8, 2017 at 12:52 am in reply to: [Resolved] Profile Name is not Syncing when activating BP-Multi-Network #7268
Hi Ricardo,
I am sorry for the inconvenience. We are a little bit on staff till 10th Feb, that’s why there have been delays.There is no need to buy subscription just for this plugin.
Please put the following code in your bp-custom.php
function buddydev_make_profile_tables_global( $tables ) { global $wpdb; foreach ( $tables as $key => $name ) { $tables[$key] = str_replace( $wpdb->prefix, $wpdb->base_prefix, $name ); } return $tables; } add_filter( 'bp_xprofile_global_tables', 'buddydev_make_profile_tables_global'); add_filter( 'bp_xprofile_meta_tables', 'buddydev_make_profile_tables_global');That will make the Profile fields/meta global and hopefully resolve the issue.
Regards
Brajesh Hi Graham,
We have updated the cog and made is much prominent/better
http://i.imgur.com/cYig1pu.png
http://i.imgur.com/ZBuMX7o.pngThe cog color/background are now changeable within the customize section(styling panel)
I have also fixed the issue with the footer.
I am posting here to request you to allow me one more day with the theme update. We are trying to include all your mentioned updates and a lot more enhancements(gradient editor, directory header images etc, left/right panel customizer). I am not sure how many of these will make into 1.0.8 due to the time constraints. Still, we will like to delay the release by a day and try to include them all.
I hope you will not mind that.
Thank you
Brajesh