Replies
- Brajesh Singh on July 17, 2019 at 5:40 am in reply to: Member Types Pro + Conditional Fields not compatible with BP Search Profile #24131
Hi Chris,
Thank you for reporting.I will check with the new Profile Search template an update you within a week if we can make these compatible.
Thank you
Brajesh - Brajesh Singh on July 17, 2019 at 5:09 am in reply to: Integrate Wise Cha Pro in BuddyPress/bp-notifications #24130
Hi marcin ,
Welcome to BuddyDev.I am sorry, I haven’t used wisepro chat, so I am not familiar with what they offer out of the box. I can still assist but I need to know a few things:-
1. I believe, They should have this option out of the box. Have you asked them about it? If they do not support it, I will assist you(will check the code feasibility).
2. Please clarify what you want to achieve here. I am sorry but I could not understand it. Please help me understand it better.
Thank you
Brajesh - Brajesh Singh on July 17, 2019 at 4:56 am in reply to: Limit gallery output to specific number of images #24129
Hi Adam,
Please copy plugin/mediapress/templates/mediapress/default/gallery/views/grid-photo.php to your theme/mediapress/default/gallery/views/grid-photo.php and modify it.The loop you see there is exactly same as a post loop(extended).
It is not used for lightbox though. Light box, please see “mediapress/core/ajax/class-mpp-ajax-lightbox-helper.php”
Regards
Brajesh - Brajesh Singh on July 17, 2019 at 4:51 am in reply to: Automated Cover Images per Member Type #24128
Thank you for you suggestions Mike.
I believe your suggestion for the global use is nice. Initially, we are going with it. In later releases, we will add support for individual site role(it will need scoping by blog id, not much).
Regards
Brajesh - Brajesh Singh on July 17, 2019 at 4:49 am in reply to: [Resolved] Feature Request: Time-based Member Types #24127
Thank you Mike.
- Brajesh Singh on July 17, 2019 at 4:49 am in reply to: [Resolved] BuddyPress Tabs Creator Pro – Icon Options? #24126
Hi Cap,
Thank you for the patience.It is easily achievable with this theme. All you need to do is assign a css id for each tabbing when adding.
Adding a new icon will be as simple as this in css
div#item-nav ul #your-custom-id a:before { content: "\f24d"; /*replace the code with icon code from front awesome*/ }Regards
Brajesh Thank you Mike.
I sincerely appreciate you being a valuable member here.
Regards
BrajeshHi,
Thank you for the questions.1. Please use a translation plugin or software(like poedit) to translate.
2/3. Even though it is feasible, the time it will take is beyond our free support. I regret not being able to support you on this.
Thank you
BrajeshHi Jennifer ,
Thank you for using MediaPress.
Please share a screenshot and point me the issue or what you are trying to accomplish. I will assist.
Thank you
Brajesh- Brajesh Singh on July 17, 2019 at 4:16 am in reply to: [Resolved] Pagination not working with Shortcodes in Profile Tabs Plugin #24121
Hi,
Thank you for reporting it.It is a bug in bbPress shortcode. Their pagination code doe snot work with current page(if permalink is enabled).
Please add following to your wp-content/plugins/bp-custom.php
or in your theme’s function.phpadd_filter( 'bbp_before_bbp_topic_pagination_parse_args', function ( $args ) { if ( ! function_exists( 'bp_is_user' ) || ! bp_is_user() ) { return $args; } $args['base'] = add_query_arg( 'paged', '%#%' ); return $args; } );That should fix the pagination. Please let me know if it works or not?
Thank you
Brajesh