Thank you, I saw that it was empty and after your suggestion, I wrote the text and it appeared correctly. However, there was a comment below the text field saying:
“Place here text you want to see in the copyrights area. You can use shortcodes. Ex.: [social_buttons]“
My question is: where can I see the full list of available shortcodes?
I tried using [current_year] for example, but it didn’t work.
Then, I made a small modification in the /wp-content/themes/woodmart-child/functions.php file by adding the following code:
// Shortcode for current year
function ivolt_current_year_shortcode() {
return date('Y');
}
add_shortcode('current_year', 'ivolt_current_year_shortcode');
And it worked.
Now, the message I’ve written in the text field you pointed me to is:
“© [current_year] iVolt Ltd. All rights reserved. Developed and maintained by iVolt Ltd.”
This way, the year will automatically update every year.
Did I implement this correctly?