Hi Alex,
Thank you. I just added the code below you suggested and it works.
When these type of updates occur, is there a way for me to know when it happens?
I was not aware of this kind of updates and it’s a bit worrisome because updates that require for me to manually do something in order to fix a problem can create problems for users when the site is live.
Any way for notifications for these updates to happen?
add_action(‘after_setup_theme’, ‘_my_sd_footer_changes’,15);
function _my_sd_footer_changes(){
remove_action( ‘dt_footer_copyright’, ‘dt_footer_copyright_default’, 10 );
remove_action( ‘dt_footer_copyright’, ‘sd_footer_copyright_default’, 10 );
add_action( ‘dt_footer_copyright’, ‘custom_dt_footer_copyright_text’, 10 );
}
function custom_dt_footer_copyright_text(){
echo ‘© 2018 Supreme Theme LLC. All Rights Reserved.’;