Title: sslv's Replies | WordPress.org

---

# sslv

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/sslv/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/sslv/replies/page/3/?output_format=md) [4](https://wordpress.org/support/users/sslv/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/sslv/replies/page/5/?output_format=md) [→](https://wordpress.org/support/users/sslv/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Custom Fields (ACF®)] Add new post in CPT category](https://wordpress.org/support/topic/add-new-post-in-cpt-category/)
 *  Thread Starter [sslv](https://wordpress.org/support/users/sslv/)
 * (@sslv)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/add-new-post-in-cpt-category/#post-17462207)
 * Hi all, this is how I solved the issue in case anyone is seeking solution:
 *     ```wp-block-code
       add_action('frontend_admin/save_post', 'my_frontend_save_post', 10, 2);
       function my_frontend_save_post($form, $post_id) {
   
       	$post = get_post( $post_id ); //Get Post Information
   
       	if ( $post ) {
       		$post_type = $post->post_type; //Get Post Type
       		$selected_category_ids = array(); //Declasre Category ID
       		$taxonomy_key = ''; //Declare Taxonomy Key
   
       		if($post_type == "masterclass"){
       			//Get Masterclass Categories
       			$selected_category_ids = get_field("field_65bca5d0bb5d9", $post_id);
       			$taxonomy_key = 'masterclass-category';
       		}
       		elseif($post_type == "job-offer"){
       			$selected_category_ids = get_field("field_6329e12f709f0", $post_id);
       			$taxonomy_key = 'job-offer-category';
       		}
   
       		// Retrieve category names based on category IDs
       		if (!empty($selected_category_ids)) {
       			wp_set_post_terms($post_id, $selected_category_ids, $taxonomy_key, false);
       		}
   
       		send_email(
       			get_the_author_meta('user_email', get_post_field ('post_author', $post_id)), //Author Email
       			get_the_title($post_id), //Post Title
       			get_permalink($post_id), //Post URL
       			$post_type //Post Type (Masterclass or Job Offer)
       		);
       		exit;
       	}
       }
       ```
   
 * For the above code I’m using “frontend_admin/save_post” action hook. This allows
   me to capture the event once the form has been submitted! After getting some 
   post information I added logic to check according to the user selection in which
   category the post would go. In my case “masterclass” or “job-offer”!
   After that
   I use the “wp_set_post_terms” to force the post to a category and lastly send
   an email to the author. I have some additional logic while constructing the email
   but there are many example online so I skipped adding that part! Hope it helps
   you! 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GeoDirectory - WP Business Directory Plugin and Classified Listings Directory] How to allow user to select a number of UsersWP in Add Listing Form](https://wordpress.org/support/topic/how-to-allow-user-to-select-a-number-of-userswp-in-add-listing-form/)
 *  Thread Starter [sslv](https://wordpress.org/support/users/sslv/)
 * (@sslv)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/how-to-allow-user-to-select-a-number-of-userswp-in-add-listing-form/#post-17456267)
 * Hi Stiofan,
 * I thought to let you know that I found a way to display list of users in the 
   GD Form. I created a shortcode and added that shortcode in the multiselect option
   values. Here is the code I used to create the shortcode:
 *     ```wp-block-code
       add_shortcode('user_multiselect_options', 'generate_user_multiselect_options');
       function generate_user_multiselect_options() {
           $users_by_role = get_users(array(
               'role__in' => array('user_role_1', 'user_role_2'),
           ));
           $options = '';
           foreach ($users_by_role as $user) {
               $options .= '<option value="' . esc_attr($user->ID) . '">' . esc_html($user->display_name) . '</option>';
           }
           return $options;
       }
       ```
   
 * > [View post on imgur.com](https://imgur.com/qzqgcU9)
 * > [View post on imgur.com](https://imgur.com/NJu02Ay)
    -  This reply was modified 2 years, 6 months ago by [sslv](https://wordpress.org/support/users/sslv/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GeoDirectory - WP Business Directory Plugin and Classified Listings Directory] Question related to Limit Posts Per User](https://wordpress.org/support/topic/question-related-to-limit-posts-per-user/)
 *  Thread Starter [sslv](https://wordpress.org/support/users/sslv/)
 * (@sslv)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/question-related-to-limit-posts-per-user/#post-17455704)
 * **Answer 1:** _It doesn’t apply on admin users. It will still work on Custom 
   Roles as well._
 * **Answer 2:** _Yes, The limit will be applied when the user has reached the specified
   number, even if the posts are transferred and not created by that user_
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GeoDirectory - WP Business Directory Plugin and Classified Listings Directory] Geodirectory map not working after customization of add listing form](https://wordpress.org/support/topic/geodirectory-map-not-working-after-customization-of-add-listing-form/)
 *  Thread Starter [sslv](https://wordpress.org/support/users/sslv/)
 * (@sslv)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/geodirectory-map-not-working-after-customization-of-add-listing-form/#post-17393744)
 * Hi Stiofan, thanks for the quick reply.
 * Is it possible that the order of the core scripts are vital to the rendering 
   of the map?
 * Thanks
 *   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] View Profile on menu is not working anymore](https://wordpress.org/support/topic/view-profile-on-menu-is-not-working-anymore/)
 *  Thread Starter [sslv](https://wordpress.org/support/users/sslv/)
 * (@sslv)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/view-profile-on-menu-is-not-working-anymore/#post-17392630)
 * Hi,
 * After some maintenance and clearing some code the issue was resolved and I was
   able to use /profile/username instead of /view-profile/username as a slug.
 * Thanks for the help
 *   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] View Profile on menu is not working anymore](https://wordpress.org/support/topic/view-profile-on-menu-is-not-working-anymore/)
 *  Thread Starter [sslv](https://wordpress.org/support/users/sslv/)
 * (@sslv)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/view-profile-on-menu-is-not-working-anymore/#post-17363394)
 * Hi Alex. Thanks for your reply.
   The settings looks to be okay see below screenshot:
 * > [View post on imgur.com](https://imgur.com/mtjCwGv)
 * When I go through Profile Dashboard > View Profile is also not working:
 * > [View post on imgur.com](https://imgur.com/izAUTWS)
 * However when I go through Edit Profile > View Profile is working fine.
 * > [View post on imgur.com](https://imgur.com/kX7gl01)
 * Also when I click directly on View Profile (or manually edit the URL) then it
   shows a blank page. I’m proceeding with opening a ticket as requested!
    -  This reply was modified 2 years, 7 months ago by [sslv](https://wordpress.org/support/users/sslv/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Frontend Admin by DynamiApps] How to add design in Single Post view](https://wordpress.org/support/topic/how-to-add-design-in-single-post-view/)
 *  Thread Starter [sslv](https://wordpress.org/support/users/sslv/)
 * (@sslv)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/how-to-add-design-in-single-post-view/#post-16349827)
 * any update?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Frontend Admin by DynamiApps] How to add design in Single Post view](https://wordpress.org/support/topic/how-to-add-design-in-single-post-view/)
 *  Thread Starter [sslv](https://wordpress.org/support/users/sslv/)
 * (@sslv)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/how-to-add-design-in-single-post-view/#post-16238309)
 * Hi any update?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Frontend Admin by DynamiApps] Plugin broken after recent update of Custom Fields plugin](https://wordpress.org/support/topic/plugin-broken-after-update-of-custom-fields-update/)
 *  Thread Starter [sslv](https://wordpress.org/support/users/sslv/)
 * (@sslv)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/plugin-broken-after-update-of-custom-fields-update/#post-16033536)
 * I still have the issue. I’m trying to solve with CPT UI but it requires Elementor
   Pro. 🙁
 * Let me know if there is a way around to enable users create CPTs on front end
   for free.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GeoDirectory - WP Business Directory Plugin and Classified Listings Directory] Forms for Places and Events stopped working after web migration](https://wordpress.org/support/topic/forms-for-places-and-events-stopped-working-after-web-migration/)
 *  Thread Starter [sslv](https://wordpress.org/support/users/sslv/)
 * (@sslv)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/forms-for-places-and-events-stopped-working-after-web-migration/#post-15897143)
 * Hi Stiofan,
    Places: [https://thebarbersunited.com/add-listing/?listing_type=gd_place](https://thebarbersunited.com/add-listing/?listing_type=gd_place)
   Events: [https://thebarbersunited.com/add-listing/?listing_type=gd_event](https://thebarbersunited.com/add-listing/?listing_type=gd_event)
 * Thanks, Loizos
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GeoDirectory - WP Business Directory Plugin and Classified Listings Directory] Forms for Places and Events stopped working after web migration](https://wordpress.org/support/topic/forms-for-places-and-events-stopped-working-after-web-migration/)
 *  Thread Starter [sslv](https://wordpress.org/support/users/sslv/)
 * (@sslv)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/forms-for-places-and-events-stopped-working-after-web-migration/#post-15897116)
 * I should note that after activation of SSL certificate it still not working.
    -  This reply was modified 4 years, 1 month ago by [sslv](https://wordpress.org/support/users/sslv/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to create multi-page forms?](https://wordpress.org/support/topic/how-to-create-multi-page-forms/)
 *  Thread Starter [sslv](https://wordpress.org/support/users/sslv/)
 * (@sslv)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/how-to-create-multi-page-forms/#post-15604898)
 * Hi Stefan,
 * thanks for the update. I managed to do it for free using JavaScript. But maybe
   I will use it in the future.
 * Do you know if this plugin is one-time-charge or annual-payment?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multi Step Form] Can I use this plugin for forms created by another plugin?](https://wordpress.org/support/topic/can-i-use-this-plugin-for-forms-created-by-another-plugin/)
 *  Thread Starter [sslv](https://wordpress.org/support/users/sslv/)
 * (@sslv)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/can-i-use-this-plugin-for-forms-created-by-another-plugin/#post-15398302)
 * Okay, thanks for your time!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multi Step Form] Can I use this plugin for forms created by another plugin?](https://wordpress.org/support/topic/can-i-use-this-plugin-for-forms-created-by-another-plugin/)
 *  Thread Starter [sslv](https://wordpress.org/support/users/sslv/)
 * (@sslv)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/can-i-use-this-plugin-for-forms-created-by-another-plugin/#post-15386510)
 * Hi,
 * Thanks for your reply.
 * That’s not possible with my current GeoDirectory form which uses advanced input
   fields such as maps and calendars. Is there another work-around?
 * Thanks
    -  This reply was modified 4 years, 6 months ago by [sslv](https://wordpress.org/support/users/sslv/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to create multi-page forms?](https://wordpress.org/support/topic/how-to-create-multi-page-forms/)
 *  Thread Starter [sslv](https://wordpress.org/support/users/sslv/)
 * (@sslv)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/how-to-create-multi-page-forms/#post-15384747)
 * So I guess the only solution is to handle it with front-end?

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

1 [2](https://wordpress.org/support/users/sslv/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/sslv/replies/page/3/?output_format=md) [4](https://wordpress.org/support/users/sslv/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/sslv/replies/page/5/?output_format=md) [→](https://wordpress.org/support/users/sslv/replies/page/2/?output_format=md)