Title: devone15's Replies | WordPress.org

---

# devone15

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

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

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Moving entire current site under new subdomain](https://wordpress.org/support/topic/moving-entire-current-site-under-new-subdomain/)
 *  Thread Starter [devone15](https://wordpress.org/support/users/devone15/)
 * (@devone15)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/moving-entire-current-site-under-new-subdomain/#post-13366233)
 * I found this guide as well:
 * [https://www.webhostinghub.com/help/community/wordpress/moving-wordpress-site-to-a-subdomain](https://www.webhostinghub.com/help/community/wordpress/moving-wordpress-site-to-a-subdomain)
 * and
 * [https://help.pro.photo/hosting-domain/change-site-address/move-to-subfolder/](https://help.pro.photo/hosting-domain/change-site-address/move-to-subfolder/)
 * Which seems to be the same as my situation. Can someone confirm that this is 
   the right way to go about it? And what specifically are the files that need to
   be copied to the new folder?
    -  This reply was modified 5 years, 9 months ago by [devone15](https://wordpress.org/support/users/devone15/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Job Manager] wp resume manager, remove fields](https://wordpress.org/support/topic/wp-resume-manager-remove-fields/)
 *  Thread Starter [devone15](https://wordpress.org/support/users/devone15/)
 * (@devone15)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/wp-resume-manager-remove-fields/#post-13270933)
 * They are visible on the frontend submission form
 * Seems like the child theme was not activated, but when I try to activate it I
   get the white screen of death “There has been a critical error on your website.”,
   which I’ll try to fix next
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Job Manager] wp resume manager, remove fields](https://wordpress.org/support/topic/wp-resume-manager-remove-fields/)
 *  Thread Starter [devone15](https://wordpress.org/support/users/devone15/)
 * (@devone15)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/wp-resume-manager-remove-fields/#post-13270519)
 * So the child theme functions.php looks like this now:
 *     ```
       <?php
       add_action( 'wp_enqueue_scripts', 'cariera_child_enqueue_scripts', 20 );
       function cariera_child_enqueue_scripts() {
       	wp_enqueue_style( 'cariera-child-style', get_stylesheet_uri() );
       }
   
       add_filter( 'submit_resume_form_fields', 'remove_submit_resume_form_fields' );
   
       function remove_submit_resume_form_fields( $fields ) {
   
       	// Unset any of the fields you'd like to remove - copy and repeat as needed
       	unset( $fields['resume_fields']['candidate_title'] );
       	unset( $fields['resume_fields']['candidate_photo'] );
       	unset( $fields['resume_fields']['candidate_video'] );
       	unset( $fields['resume_fields']['resume_category'] );
       	unset( $fields['resume_fields']['resume_content'] );
       	unset( $fields['resume_fields']['resume_skills'] );
       	unset( $fields['resume_fields']['links'] );
       	unset( $fields['resume_fields']['candidate_education'] );
       	unset( $fields['resume_fields']['candidate_experience'] );
       	unset( $fields['resume_fields']['candidate_title'] );
       	// And return the modified fields
       	return $fields;
   
       }
       ```
   
 * But the fields are still visible. Is there something missing in the functions.
   php file? The .css seems to be correct according to guides.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Job Manager] wp resume manager, remove fields](https://wordpress.org/support/topic/wp-resume-manager-remove-fields/)
 *  Thread Starter [devone15](https://wordpress.org/support/users/devone15/)
 * (@devone15)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/wp-resume-manager-remove-fields/#post-13270354)
 * I found a child theme for the installed theme zipped, inside there is a functions.
   php
 * I will try to add the filters there, thank you so much for the help so far both
   of you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Job Manager] wp resume manager, remove fields](https://wordpress.org/support/topic/wp-resume-manager-remove-fields/)
 *  Thread Starter [devone15](https://wordpress.org/support/users/devone15/)
 * (@devone15)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/wp-resume-manager-remove-fields/#post-13270229)
 * Thank you! In this case, would the childtheme be the installed theme? Or would
   I have to create a childtheme from the installed theme? (new in this area)

Viewing 5 replies - 1 through 5 (of 5 total)