Skip to content

Commit

Permalink
Updates footer credit.
Browse files Browse the repository at this point in the history
Changes footer credit from:
"Built with Storefront & WooCommerce."
To
"Built with WooCommerce."
  • Loading branch information
jeffikus committed Jan 11, 2024
1 parent 86c1165 commit e3c3946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/storefront-template-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ function storefront_credit() {

if ( apply_filters( 'storefront_credit_link', true ) ) {
if ( storefront_is_woocommerce_activated() ) {
$links_output .= '<a href="https://woo.com" target="_blank" title="' . esc_attr__( 'WooCommerce - The Best eCommerce Platform for WordPress', 'storefront' ) . '" rel="noreferrer nofollow">' . esc_html__( 'Built with Storefront &amp; WooCommerce', 'storefront' ) . '</a>.';
$links_output .= '<a href="https://woo.com" target="_blank" title="' . esc_attr__( 'WooCommerce - The Best eCommerce Platform for WordPress', 'storefront' ) . '" rel="noreferrer nofollow">' . esc_html__( 'Built with WooCommerce', 'storefront' ) . '</a>.';
} else {
$links_output .= '<a href="https://woo.com/products/storefront/" target="_blank" title="' . esc_attr__( 'Storefront - The perfect platform for your next WooCommerce project.', 'storefront' ) . '" rel="noreferrer nofollow">' . esc_html__( 'Built with Storefront', 'storefront' ) . '</a>.';
}
Expand Down

0 comments on commit e3c3946

Please sign in to comment.