Replies
Hi Christian,
Thank you for the details.
You are using the updated MediaPress. It is very strange that the lightbox is still limiting to 6( You have quite higher limits for even the fallback numbers).Can you please tell me if it is happening on activity page or gallery pages too? Is it happening for all galleries or just for a few specific ones?
Thank you
BrajeshHi Joshua,
I am sorry but I don’t think that you can use visual composer with this plugin.It is a nice plugin, but seems it may not fit your requirements.
- Brajesh Singh on April 4, 2016 at 3:44 am in reply to: [Resolved] Add a User to a perticular group when User account is activated #3320
Hi Dandy,
Ravi will be back a little late today, so I am posting here.All you need to do is use an array of friend ids(which you want to add) and loop to do it.
Here is updated code example.
function buddydev_add_as_friend_to_user( $user_id ) { $friend_userids = array( 2,3,4,5 ); //use the ids of user who should be automatically added as friend foreach( $friend_userids as $friend_userid ) { friends_add_friend( $user_id, $friend_userid, true ); } } add_action( 'user_register', 'buddydev_add_as_friend_to_user', 0 );Please do let me know if that works or not?
Thank you
Brajesh Hi Christian,
Are you using MediaPress 1.0.4? In earlier version, Lightbox used to show the number of media as limited for pagination settings(in the MediaPress->Settings->Theme tab). In 1.0.4, I fixed it and made it load all images.Please do let me know if you are using 1.0.4 and still having issues?
Thank you
BrajeshThank you for the kind Words Diana.
I am happy that it worked for you. Please do feel free to let me know if you need any assistance in future.
All the best with your project 🙂Hi Diana,
I have just pushed an update.Can you please upgrade to 1.2.4(Please make sure to save the settings twice in the Settings->BCG Settings)
After the update, Please do let me know the changes you need.
Thank you
Brajesh- Brajesh Singh on April 1, 2016 at 11:26 pm in reply to: [Resolved] is "Enable group galleries by default" working? #3305
Hi Jaume,
I am sorry for the delayed reply. I will update MediaPress to make it honors the default choice.I am glad you found the solution for change avatar 🙂
Thank you
Brajesh Hi Joshua,
That will be difficult. Since this plugin is mostly aimed at providing data, I do’t believe A user can design the page with this plugin.- Brajesh Singh on April 1, 2016 at 11:23 pm in reply to: [Resolved] Add a User to a perticular group when User account is activated #3303
Hi Dandy,
Thank you for the details.
Yes, That is the problem. The above hook is not getting called since you are using WordPress registration not BuddyPress.Please try this hook instead of the activate one
user_registerThat should make it work.
Hi Joshua,
Thank you.
Can you please post what arguements are you using in your bp_has_activities() function in the custom loop? That will give some idea.