Note: To use this footer template, copy the parent row to a new Kadence content element and select ‘replace footer’ in the placement settings and ‘entire site’ in the display settings.
The copyright year uses a shortcode to automatically update. You will need to paste the following PHP function into your child theme functions.php file or a code snippets plugin for the date to display via the shortcode:
function current_year() {
$year = date(‘Y’);
return $year;
}
add_shortcode(‘year’, ‘current_year’);
Don’t forget to change your menu and social links.
To change the colour of the vertical lines between the horizontal menu items, find the section CSS declaration in the Custom CSS box of the parent row:
.bb-footer-8 .wp-block-navigation-item:not(:nth-last-child(1)):after {
content: “”;
width: 1px;
height: 20px;
background: var(–global-palette6);
position: absolute;
right: 0; top: 50%;
transform: translateY(-50%);
}
Change the background value to your preferred colour. All other colours and borders etc. are managed via the block settings.