Replies
- Brajesh Singh on June 26, 2017 at 5:03 am in reply to: Photo size dimension issue with MediaPress #9587
Hi,
Thank you for becoming a premium member. I and my team sincerely appreciates it.I see the issue is coming as the container is smaller than the larger image size. It is a css conflict with the theme.
If you can provide me a link to the page(Please use private option in the form) , I can quickly assist you with the css.
Thank you
Brajesh - Brajesh Singh on June 26, 2017 at 4:59 am in reply to: [Resolved] is gallery reordering supposed to work on IOS? #9586
Hi Andy,
The reorder should have worked. We don’t do anything fancy(Its simple jquery UI sortable/droppable).
I don’t own iphone, so I am unable to check the issue. If you or anyone can see the console and point me to the issue, I can easily fix it.For now, you can remove the reorder nav on the mobile devices
/** * Remove the reorder nav on mobile devices */ add_action( 'mpp_setup_globals', function () { if( wp_is_mobile() ) { mpp_remove_gallery_nav_item('reorder'); } }, 11 );Hope that helps.
Thank you
Brajesh - Brajesh Singh on June 26, 2017 at 4:53 am in reply to: How to make dynamic form/list extend to user profile? #9585
Hi Yoza,
Welcome to BuddyDev.
I will suggest looking at this pluginhttps://buddydev.com/plugins/conditional-profile-fields-for-buddypress/
You can create the title as a selectbox or radio and then conditionally allow other fields.
Hope that helps.
Brajesh
- Brajesh Singh on June 24, 2017 at 1:59 pm in reply to: BuddyPress Activity Shortcode : Bug/Issue #9571
Hi Jerome,
It is working fine for me.Is there any chance that you have hidden the Activity Dropdown bx that says “My Profile and the groups list”
Even after using the form, a user needs to select the private group. If you have hidden it, It will be posted on user profile instead of group.
- Brajesh Singh on June 24, 2017 at 11:55 am in reply to: BuddyPress Activity Shortcode : Bug/Issue #9569
Hi Jerome,
I am sorry I Missed this topic. I will update you today.
Thank you
Brajesh Hi Gurpreet,
Welcome to BuddyDev.
I am sorry but BuddyBlog does not support the moderation workflow yet.You may want to implement it using a custom post meta and using some custom codes but It will be significant. I will be happy to guide if are interested in developing it.
Thank you
Brajesh- Brajesh Singh on June 24, 2017 at 11:51 am in reply to: Non-static method ::get_limit() should not be called statically #9567
Sorry, I could not test them earlier and the other developers are on leave for the week. Please allow me to check and update you today.
Thank you
brajesh - Brajesh Singh on June 24, 2017 at 11:50 am in reply to: [Resolved] Automatically join groups on registration #9566
Hi Jay,
Please upgrade to 1.0.1The new release allows you to setup groups that the user will join automatically on member type change.
It also contains support for Paid Membership Pro levels in case that helps.
Please do let me know if it works for you or not?
Thank you
Brajesh - Brajesh Singh on June 24, 2017 at 11:47 am in reply to: [Resolved] X-Profile Fields in BuddyPress Multi Network #9565
Hi Jason,
Welcome to BuddyDev.Please put this code in your bp-custom.php
/** * Filter profile tables to use main site's tables. * * @param $tables * * @return array */ function buddydev_global_profile_tables( $tables ) { global $wpdb; $prefix = $wpdb->base_prefix; // overwrite names $tables = array( 'table_name_data' => $prefix . 'bp_xprofile_data', 'table_name_groups' => $prefix . 'bp_xprofile_groups', 'table_name_fields' => $prefix . 'bp_xprofile_fields', 'table_name_meta' => $prefix . 'bp_xprofile_meta', ); return $tables; } add_filter( 'bp_xprofile_global_tables', 'buddydev_global_profile_tables'); /** * Filter meta table to use the main site's tables * * @param array $tables * * @return array */ function buddydev_gloabl_profile_meta_tables( $tables ) { global $wpdb; $prefix = $wpdb->base_prefix; $tables = array( 'xprofile_group' => $prefix . 'bp_xprofile_meta', 'xprofile_field' => $prefix . 'bp_xprofile_meta', 'xprofile_data' => $prefix . 'bp_xprofile_meta', ); return $tables; } add_filter( 'bp_xprofile_meta_tables', 'buddydev_gloabl_profile_meta_tables' );We are overriding the table names to use it from the main sites.
Hope that helps.
- This reply was modified 8 years, 9 months ago by
Brajesh Singh. Reason: fixing the name used in filter
- This reply was modified 8 years, 9 months ago by
Most probably the selector is not working. Safari 10.1 and above should work.
https://caniuse.com/#search=%3Alast-childI have used :last-child selector as there were no other way to select the link on Boss theme.
Which version of safari are you using? Also, Please make sure to clear the cache.