devone15
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Moving entire current site under new subdomainI found this guide as well:
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/
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 4 years, 5 months ago by devone15.
Forum: Plugins
In reply to: [WP Job Manager] wp resume manager, remove fieldsThey 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
In reply to: [WP Job Manager] wp resume manager, remove fieldsSo 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
In reply to: [WP Job Manager] wp resume manager, remove fieldsI 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
In reply to: [WP Job Manager] wp resume manager, remove fieldsThank 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)