Prashant Singh
@prashantvatsh on WordPress.org, @Prashant on Slack
- Member Since: December 12th, 2016
- Website: prashantdev.wordpress.com
Bio
WordPress Origin Story
Contribution History
Prashant Singh’s badges:- Core Contributor
- Plugin Developer
- Translation Contributor
- Translation Editor
-
Translated 11 strings on translate.wordpress.org.
-
Translated 1 string on translate.wordpress.org.
-
Translated 1 string on translate.wordpress.org.
-
Translated 1 string on translate.wordpress.org.
-
Translated 2 strings on translate.wordpress.org.
-
Posted a reply to How to change the page break numbering?, on the site WordPress.org Forums:
HiPlease test the following code: add_filter( 'wp_link_pages_args', 'ps_change_link_style', 10, 1 ); function ps_change_link_style( $parsed_args )… -
Posted a reply to Ecwid plugin breaks my site, on the site WordPress.org Forums:
Hi I would recommend to create a support thread on the plugin's support forum here. -
Posted a reply to Change the dates of the posts, on the site WordPress.org Forums:
Hi If you just want to sort the order, on frontend and backend both, then… -
Posted a reply to Translation not working, on the site WordPress.org Forums:
Hi Could you please let me know the strings that are not getting translated? Kind… -
Posted a reply to Notifications Greetings, on the site WordPress.org Forums:
Hi Thanks for your kind words. Could you please explain this more? Which code you… -
Posted a reply to How can I change the Shipping from Vendor’s store name to Vendor’s Address?, on the site WordPress.org Forums:
Hi I recommend asking at https://wordpress.org/support/plugin/dokan-lite/#new-topic-0 so the plugin's developers and support community can help… -
Posted a reply to Greeting notifications, on the site WordPress.org Forums:
Glad to help you. -
Posted a reply to Greeting notifications, on the site WordPress.org Forums:
We have this filter , you can find it in loader.php. Using this you can… -
Posted a reply to wp-login behind nginx reverse-proxy inaccessible — bad redirect?, on the site WordPress.org Forums:
Hi Please check this https://wordpress.stackexchange.com/questions/250240/setting-serverhttps-on-prevents-access-to-wp-admin/#answer-250254 -
Posted a reply to Greeting notifications, on the site WordPress.org Forums:
. Anything else required here? -
Posted a reply to Greeting notifications, on the site WordPress.org Forums:
<?php /* *Plugin Name: My customizations (mini-plugin) */ add_filter('bp_birthday_empty_message', 'ps_change_birthday_message'); function ps_change_birthday_message(){ _e('We wish you… -
Posted a reply to Greeting notifications, on the site WordPress.org Forums:
Please enable WP_DEBUG so that we get to know what's the actual error. https://wordpress.org/support/article/debugging-in-wordpress/#wp_debug -
Posted a reply to Greeting notifications, on the site WordPress.org Forums:
1. Please check if cron jobs are enabled. It will not work with code block.… -
Posted a reply to My Custom Route isn’t working, on the site WordPress.org Forums:
Hi Have you activated the plugin before testing the route? Also, to learn plugin development,… -
Posted a reply to Greeting notifications, on the site WordPress.org Forums:
Hi Piska 1. Are there members(except you) with the birthday date of today/tomorrow? Need to… -
Posted a reply to Displays all options, on the site WordPress.org Forums:
I recommend asking at https://wordpress.org/support/plugin/wp-job-manager/#new-topic-0 so the plugin's developers and support community can help you… -
Posted a reply to How to get current page id, on the site WordPress.org Forums:
Please check https://wordpress.org/support/topic/how-to-get-wordpress-post-id-inside-plugin/ -
Posted a reply to Looking for : online PDF filling, on the site WordPress.org Forums:
Did you check the plugins listed here https://wordpress.org/plugins/search/form+to+pdf/? -
Posted a reply to Looking for : online PDF filling, on the site WordPress.org Forums:
Hi Please check https://wordpress.org/support/topic/how-can-i-fill-a-pdf-form-and-press-submit-and-get-it-on-email/ -
Posted a reply to CSS, on the site WordPress.org Forums:
Where did you put the CSS? I am not able to see that CSS on… -
Posted a reply to Does it show Birthdays Coming?, on the site WordPress.org Forums:
I planning to release it by the end of this month. -
Posted a reply to Display form entries with filters., on the site WordPress.org Forums:
Please check https://wordpress.org/plugins/ninja-tables/ -
Posted a reply to Can’t change file permissions of 3 files, on the site WordPress.org Forums:
Hi I would suggest connecting with your hosting provider once. I hope they will be… -
Posted a reply to CSS, on the site WordPress.org Forums:
Hi Please try the following CSS: form#wppb-register-user li { list-style: none; } -
Posted a reply to Does it show Birthdays Coming?, on the site WordPress.org Forums:
I am able to replicate the issue with the mentioned timezone. I will fix it… -
Posted a reply to get_users multiple meta keys, on the site WordPress.org Forums:
Please try the following code: $args = array( 'meta_query' => array( array( 'key' => 'offer',… -
Posted a reply to Display the date on widget, on the site WordPress.org Forums:
Marking this resolved. For any other query please start a new thread. -
Posted a reply to Does it show Birthdays Coming?, on the site WordPress.org Forums:
Hi Christian I apologise for the delayed response. I will check this during the weekend… -
Posted a reply to Does it show Birthdays Coming?, on the site WordPress.org Forums:
It is based on the timezone set in your WordPress installation. Let me know the… -
Posted a reply to Does it show Birthdays Coming?, on the site WordPress.org Forums:
Hi Christian The plugin displays current day's birthday. If you are setting today's date as… -
Posted a reply to Profile image link to user profile, on the site WordPress.org Forums:
Hi Patrick Thanks for the kind words. In the current version link to member's profile… -
Posted a reply to not secure connection, on the site WordPress.org Forums:
Are these added by you or were there previously? -
Posted a reply to not secure connection, on the site WordPress.org Forums:
First thing let's try to fix the login issue and for that, we need to… -
Posted a reply to Updated blog posts to top of blog feed, on the site WordPress.org Forums:
Please check https://wordpress.org/support/topic/sort-posts-by-modified-date-in-the-frontend/ -
Posted a reply to not secure connection, on the site WordPress.org Forums:
Where did you change and what did you change? Please check https://wordpress.org/support/topic/admin-still-wouldnt-work-over-ssl/ -
Posted a reply to How do I upload an adobe custom font to wordpress, on the site WordPress.org Forums:
There are few plugins that you can check: https://wordpress.org/plugins/custom-font-uploader/ https://wordpress.org/plugins/use-any-font/ -
Posted a reply to not secure connection, on the site WordPress.org Forums:
Activated the plugin there? Is that site on https? -
Posted a reply to How to sent a link to a website while under construction, on the site WordPress.org Forums:
Is it on the localhost or any staging server? -
Posted a reply to Display the date on widget, on the site WordPress.org Forums:
In the query after WHERE clause(after %d) please add ORDER BY profile.value DESC I hope… -
Posted a reply to Display the date on widget, on the site WordPress.org Forums:
Please test with the following code: $bpbirth_date = bp_get_profile_field_data(array('user_id'=>$members_id,'field'=>'dob')); $bpbirth_date = date_create($bpbirth_date); $bpbirth_date = date_format($bpbirth_date,"d/m");… -
Posted a reply to Display the date on widget, on the site WordPress.org Forums:
Hi Thanks for your kind words. Do you mean the day on which their birthday… -
Posted a reply to my site is opening with ssl & without ssl I.e http&https://geetyug.com, on the site WordPress.org Forums:
Please check this plugin https://wordpress.org/plugins/really-simple-ssl/ Note: As mentioned in the plugin description 'Always backup before… -
Posted a reply to member administration causes a bug, on the site WordPress.org Forums:
I recommend asking at https://wordpress.org/support/plugin/ultimate-member/ so the plugin’s developers and support community can help you… -
Created ticket #50368 on Core Trac:
Background color on post/page visual editor and cursor issue -
Mentioned in [47305] on Core SVN:
Theme Editor: Disable CodeMirror CSS linting.
Developer
-
BP Birthday Greetings
Active Installs: 500+
-
BP Custom Functionalities
Active Installs: 30+
हिन्दी (Hindi) Plugins Translation Editor - #hi_IN
-
Akismet Anti-spam: Spam Protection
Active Installs: 5+ million