When I try adding the html code for ? or ( c ) or © it shows up as a blank space in the footer text
]]>footer text – can i use html code
]]>My Home Page At The Top Is currently “Tidyup Company | ..” how do I change this?
]]>Hi
I would like to put a link to the hosting company of the website in the footer. Is that possible?
Kind regards,
Line
Hi there,
First of all, thanks for the many plugins you released for StoreFront, a real time saver for providing a user interface in customizer for many options that otherwise would have to be set via code.
For a project, I needed to hook the credits to storefront_after_footer.
So, I slightly modified the plugin adding a select menu in the customizer to allow choice of whether the custom credit should be hooked to storefront_footer (default) or storefront_after_footer.
What would be the best way to send you the modified code for you to consider including it in future releases?
I tried checking if there was a GitHub repo or if you were on Making WordPress slack channel.
Cheers,
Luca
p.s.: you might want to update plugin compatibility as it works on 4.8.x without a problem.
]]>Hi,
I’m using WPML to build a multi-language site, but it seems the footer text can’t be translated? Could you add support for this?
Hi there,
i tried to find you on WP slack or GitHub but I couldn’t.
Great plugin to provide an entry in the Customizer so that my client could modify autonomously the footer text. As he needed current year and a shortcode to run in there, I’ve slightly modified it.
Here is the modified bit of code in case you find useful to integrate it:
public function woa_sfft_custom_storefront_credit() {
$options = array(
'%current_year%',
'%copy%'
);
$replace = array(
date('Y'),
'©'
);
$new_footer_text = get_theme_mod( 'woa_sfft_footer_text' );
$new_footer_text = str_replace( $options, $replace, get_theme_mod( 'woa_sfft_footer_text' ) );
?>
<div class="site-info">
<?php echo do_shortcode( $new_footer_text ); ?>
</div><!-- .site-info -->
<?php
}
]]>