Title: Rahul Gandhi's Replies | WordPress.org

---

# Rahul Gandhi

  [  ](https://wordpress.org/support/users/wpdev10/)

 *   [Profile](https://wordpress.org/support/users/wpdev10/)
 *   [Topics Started](https://wordpress.org/support/users/wpdev10/topics/)
 *   [Replies Created](https://wordpress.org/support/users/wpdev10/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/wpdev10/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/wpdev10/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/wpdev10/engagements/)
 *   [Favorites](https://wordpress.org/support/users/wpdev10/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 606 total)

1 [2](https://wordpress.org/support/users/wpdev10/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/wpdev10/replies/page/3/?output_format=md)…
[39](https://wordpress.org/support/users/wpdev10/replies/page/39/?output_format=md)
[40](https://wordpress.org/support/users/wpdev10/replies/page/40/?output_format=md)
[41](https://wordpress.org/support/users/wpdev10/replies/page/41/?output_format=md)
[→](https://wordpress.org/support/users/wpdev10/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[UsersWP - Front-end login form, User Registration, User Profile & Members Directory plugin for WP] How can I show the posts of the Custom Post Type UI plugin in the profile tab](https://wordpress.org/support/topic/how-can-i-show-the-posts-of-the-custom-post-type-ui-plugin-in-the-profile-tab/)
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/how-can-i-show-the-posts-of-the-custom-post-type-ui-plugin-in-the-profile-tab/#post-15487120)
 * Hi,
 * You can add this code in the functions.php file of currently active theme or 
   via Code Snippets plugin on your site.
 * Regards,
    Patrik
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Payment forms, Buy now buttons, and Invoicing System | GetPaid] Questions – Disable Automatic Account Created for New User](https://wordpress.org/support/topic/questions-disable-automatic-account-created-for-new-user/)
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/questions-disable-automatic-account-created-for-new-user/#post-15486779)
 * Hi,
 * We need to create a WP user as we require to store some user data to maintain
   the invoices and subscriptions and using WP users is an easier way than our own
   user table so we create WP users always.
 * You can change every email subject and content from GetPaid->Settings->Emails.
 * Regards,
    Patrik
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Payment forms, Buy now buttons, and Invoicing System | GetPaid] Invoice Favicon not inhertied](https://wordpress.org/support/topic/invoice-favicon-not-inhertied/)
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/invoice-favicon-not-inhertied/#post-15486646)
 * Hi,
 * Right currently we don’t load anything else which is not needed on the view invoice
   page even we don’t load the header and footer of the site and that’s why the 
   default favicon is displayed on the site. I will add a task for this if we can
   load the favicon on the view invoice page.
 * Regards,
    Patrik
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[UsersWP - Front-end login form, User Registration, User Profile & Members Directory plugin for WP] How can I show the posts of the Custom Post Type UI plugin in the profile tab](https://wordpress.org/support/topic/how-can-i-show-the-posts-of-the-custom-post-type-ui-plugin-in-the-profile-tab/)
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/how-can-i-show-the-posts-of-the-custom-post-type-ui-plugin-in-the-profile-tab/#post-15486603)
 * Hi,
 * We do have a function to which you can pass the CPT slug and it will return the
   profile tab content with posts of the custom CPT. You can try the following snippet
   which will create a shortcode ‘uwp_profile_my_cpt’ which you can use in the profile
   tab:
 *     ```
       add_shortcode('uwp_profile_my_cpt', 'uwp_profile_my_cpt_cb');
       function uwp_profile_my_cpt_cb(){
       	$user = uwp_get_displayed_user();
       	ob_start();
       	if(isset($user->ID)){
       		uwp_generic_tab_content( $user, '10_soruda_evrenkent', __( 'CPT Label', 'userswp' ) );
           }
   
           return ob_get_clean();
       }
       ```
   
 * Let me know if it helps.
 * Regards,
    Patrik
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[UsersWP - Front-end login form, User Registration, User Profile & Members Directory plugin for WP] Import of users](https://wordpress.org/support/topic/import-of-users-2/)
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/import-of-users-2/#post-15482526)
 * Hi,
 * On import, we auto generate the password and send the reset password link to 
   the existing user so that he can set a new password and if the user is not exist
   then we create a new user with auto generated password. You may use any plugins
   which allow mass password reset once you import the users successfully.
 * Regards,
    Patrik
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[UsersWP - Front-end login form, User Registration, User Profile & Members Directory plugin for WP] Location in Database](https://wordpress.org/support/topic/location-in-database/)
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/location-in-database/#post-15478218)
 * Hi,
 * We store custom field data in our own custom table called ‘uwp_usermeta’. You
   can find the data in this table. Also, we have provided CSV export of user data
   from UsersWP->Import/Export/. Let me know if it helps.
 * Regards,
    Patrik
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[UsersWP - Front-end login form, User Registration, User Profile & Members Directory plugin for WP] wp_new_user_notification_email_admin not returning value](https://wordpress.org/support/topic/wp_new_user_notification_email_admin-not-returning-value/)
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/wp_new_user_notification_email_admin-not-returning-value/#post-15460976)
 * Hi,
 * You are right. We will add $wp_new_user_notification_email_admin to return in
   next plugin release. You can do it manually if needed before plugin release.
 * Regards,
    Patrik
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[UsersWP - Front-end login form, User Registration, User Profile & Members Directory plugin for WP] Sync update message not disappearing](https://wordpress.org/support/topic/sync-update-message-not-disappearing/)
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/sync-update-message-not-disappearing/#post-15459585)
 * Hi,
 * Are you using multisite? We will check with the same to regenerate the issue.
   How many users are registered on your site just need a number?
 * Regards,
    Patrik
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[UsersWP - Front-end login form, User Registration, User Profile & Members Directory plugin for WP] Edit Profiles from userprofil page](https://wordpress.org/support/topic/edit-profiles-from-userprofil-page/)
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/edit-profiles-from-userprofil-page/#post-15459427)
 * Hi,
 * Can you give more details about what you need? Maybe with screenshots? Admin 
   can see the profiles from backend users listing.
 * Regards,
    Patrik
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[UsersWP - Front-end login form, User Registration, User Profile & Members Directory plugin for WP] wp_new_user_notification_email_admin not returning value](https://wordpress.org/support/topic/wp_new_user_notification_email_admin-not-returning-value/)
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/wp_new_user_notification_email_admin-not-returning-value/#post-15459403)
 * Hi,
 * If we return then it will send a default email notification which we have to 
   prevent when disabled from our settings. You can remove our action and add your
   own if you need to modify or prevent our email.
 * Regards,
    Patrik
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GeoDirectory - WP Business Directory Plugin and Classified Listings Directory] Import Setting json file not valid??](https://wordpress.org/support/topic/import-setting-json-file-not-valid/)
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/import-setting-json-file-not-valid/#post-15456817)
 * Hi,
 * I have assigned this ticket to the developer who will take a follow-up here.
 * Regards,
    Patrik
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[UsersWP - Front-end login form, User Registration, User Profile & Members Directory plugin for WP] Current Author Comments](https://wordpress.org/support/topic/current-author-comments/)
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/current-author-comments/#post-15455541)
 * Hi,
 * Do you want to display those comments in the user profile tab or somewhere else
   on the site? If you want to display in profile tabs then you will need to create
   a shortcode using the function uwp_generic_tab_content($user, $post_type, $title);
   You can pass the custom post type slug in the $post_type variable. Use the shortcode
   in the profile tab builder from UsersWP->Form Builder->Profile tabs.
 * Let me know if it works for you.
 * Regards,
    Patrik
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[UsersWP - Front-end login form, User Registration, User Profile & Members Directory plugin for WP] Customizing login form: add suffix to registration-link](https://wordpress.org/support/topic/customizing-login-form-add-suffix-to-registration-link/)
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/customizing-login-form-add-suffix-to-registration-link/#post-15449351)
 * Hi,
 * You can [override](https://docs.userswp.io/article/680-how-to-override-templates-for-userswp)
   the login.php file in your theme and modify the link coming from the uwp_get_register_page_url()
   function as per your requirements.
 * Regards,
    Patrik
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[UsersWP - Front-end login form, User Registration, User Profile & Members Directory plugin for WP] Customizing login form: add suffix to registration-link](https://wordpress.org/support/topic/customizing-login-form-add-suffix-to-registration-link/)
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/customizing-login-form-add-suffix-to-registration-link/#post-15449077)
 * Hi,
 * For login/registration in the popup, we only reload the page on submission to
   allow quick login or register without redirecting. But if the form is used in
   the page then we use the redirect_to parameter to redirect back to the page.
 * Regards,
    Patrik
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Payment forms, Buy now buttons, and Invoicing System | GetPaid] Can I use this plug in as a payment gateway?](https://wordpress.org/support/topic/can-i-use-this-plug-in-as-a-payment-gateway/)
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/can-i-use-this-plug-in-as-a-payment-gateway/#post-15445014)
 * Hi,
 * Our addon will work only with GetPaid core as it is built for that but not with
   WooCommerce as WC required different hooks and filters for the addon development.
   We allow creating items with the price like WooCommerce products and you can 
   show the “Buy Now” button for items on your site using a shortcode like [getpaid
   item=184 button=’Buy Now’] which you can find in the Items page on the backend.
 * Regards,
    Patrik

Viewing 15 replies - 1 through 15 (of 606 total)

1 [2](https://wordpress.org/support/users/wpdev10/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/wpdev10/replies/page/3/?output_format=md)…
[39](https://wordpress.org/support/users/wpdev10/replies/page/39/?output_format=md)
[40](https://wordpress.org/support/users/wpdev10/replies/page/40/?output_format=md)
[41](https://wordpress.org/support/users/wpdev10/replies/page/41/?output_format=md)
[→](https://wordpress.org/support/users/wpdev10/replies/page/2/?output_format=md)