driveroll
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: HTTP Error when uploading certain imagesAny news about this? I have the same problem
Great!
I do own the plugin and have used it for a while, it’s very robust and I’ve seen already some great add-on plugins like the one for custom post types.
They have great documentation and some examples, so I’ve actually been able to do some customizations using their actions and filters, feel free to contact me for any help.
Here are the docs: https://www.gravityhelp.com/documentation/page/Gravity_Forms_Documentation
Hi Gabriel and everyone
About the idea of sorting BP members by points balance, I would love this as well!
Also have question about your plans for supporting Gravity Forms plugin or not, I have a project where I’m using this combination (also working with buddypress) and I’d need members to be able to award or charge other members using gravity forms, I think we could integrate myCRED with it in a very nice way and I’d be happy to help with anything I can.
For this project actually I’ll need to store the points entered in the gravity form as a custom field first, and only award them after something else happens, since they’d be points awarded to the “friend” only after fulfilling successfully a reward.
Best,
DavidForum: Plugins
In reply to: [Social Sharing Toolkit] Google Bringing in Random imageI also have a problem with Google+ sharing. When I select only to show the default image, it gives option only for Pinterest and Facebook. For Google+ I see that it defaults to that same one, but it still gives you option to choose amongst the ones on the page. Does anyone know if there’s any way to prevent this?
Actually that isn’t the best way yet, because that outputs your message on Login form and Register form indiscriminately. The corrected code would be something like this
function custom_register_msg($msg) { $pattern = '/Register For This Site/'; $custom_msg = 'Your custom message.'; return preg_replace($pattern, $custom_msg, $msg); } add_filter('login_message','custom_register_msg');
That way it specifically replaces only that message for yours. You could do the same to replace any of the other messages. I also removed the <p class=”message_register></p> because using this method it conserves that part of the default message
Enjoy!
To change this text you only have to add this to your functions.php file:
function custom_register_msg()
{
echo ‘<p class=”message register”>Your custom message</p>’;
}
add_filter(‘login_message’,’custom_register_msg’);Hope this is useful to everyone.
By the way, this works whether or not you’re using Register Plus ReduxForum: Plugins
In reply to: [NextGEN-ImageFlow] [Plugin: NextGEN-ImageFlow] Slight work aroundGreat! This worked for me. Thanks @scalemotorcars