I am using a child theme and wanted to remove all the social urls from the post options. I believe it needs to be changed in /TheFox/includes/metaboxes/views/metaboxes/staff_options.php
I was hoping to create the same folder structure in my child theme and edit it there so the changes won't be lost when updating the theme. It appears to only work when I edit the file in TheFox theme directly. Is there an other way to do that?
Thank you. Unfortunately simply hiding the fields won't do the trick. I do not want the client to be confused by all the fields that are irrelevant to them.
If you had the custom css the fields will be hidden and you won't have to modify the php files at all.
If they won't see any field I don't think they can get confused?
Removing the field by changing the metaboxes will remove the "value" of this field, so all the staff pages and module that try to catch this field will give an error.
I am using a child theme and wanted to remove all the social urls from the post options. I believe it needs to be changed in /TheFox/includes/metaboxes/views/metaboxes/staff_options.php
I was hoping to create the same folder structure in my child theme and edit it there so the changes won't be lost when updating the theme. It appears to only work when I edit the file in TheFox theme directly. Is there an other way to do that?
Thank you
Hello Stephanie,
Since those file are in sub folder, making the same structure in the child theme won't overwrite the main theme file.
The only way to do this would be to recreate all the metaboxes from your child theme and then unload our default metaboxes.
By removing the option the staff single post or module will get some error when trying to get the field value.
If you just want to hide the field adding custom css should be more easy.
#rd_staff_options .rd_metabox_field:nth-child(22) { display: none; }
change 22 to 23, 24, 25 etc to remove all the field needed.
Do not hesitate to contact us if you have more questions.
Regards.
---------------------
Hosting we recommend ( Free SSL and CDN included in all plan ).
Speed up your site with Autoptimize
Test your site with GTmetrix and fix the issue to make it faster
How to Update your Theme
Thank you. Unfortunately simply hiding the fields won't do the trick. I do not want the client to be confused by all the fields that are irrelevant to them.
Hello Stephanie,
If you had the custom css the fields will be hidden and you won't have to modify the php files at all.
If they won't see any field I don't think they can get confused?
Removing the field by changing the metaboxes will remove the "value" of this field, so all the staff pages and module that try to catch this field will give an error.
Regards
---------------------
Hosting we recommend ( Free SSL and CDN included in all plan ).
Speed up your site with Autoptimize
Test your site with GTmetrix and fix the issue to make it faster
How to Update your Theme
Amazing. I didn't realize that it would be the dashboard styles. It worked perfectly.
Glad to hear that!
Do not hesitate to contact us if you have more questions.
Regards.
---------------------
Hosting we recommend ( Free SSL and CDN included in all plan ).
Speed up your site with Autoptimize
Test your site with GTmetrix and fix the issue to make it faster
How to Update your Theme