{"id":41,"date":"2022-06-02T14:24:16","date_gmt":"2022-06-02T14:24:16","guid":{"rendered":"https:\/\/geekotes.com\/?p=41"},"modified":"2022-06-25T08:19:59","modified_gmt":"2022-06-25T08:19:59","slug":"customize-wordpress-footer","status":"publish","type":"post","link":"https:\/\/geekotes.com\/index.php\/2022\/06\/02\/customize-wordpress-footer\/","title":{"rendered":"Customize WordPress footer and WooCommerce footer"},"content":{"rendered":"\n<p>There are plenty of blogs talking about how to modify WordPress footer. But, I really can&#8217;t find one that shows a practical way to get it done. In the tip, I&#8217;m gonna show you two things:<\/p>\n\n\n\n<ul class=\"has-white-color has-cyan-bluish-gray-background-color has-text-color has-background wp-block-list\"><li>How to customize a footer of Superb WordPress Theme<\/li><li>How to customize a footer of WooCommerce shop<\/li><li>How to find it for any theme by yourself<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"576\" height=\"83\" src=\"https:\/\/geekotes.com\/wp-content\/uploads\/2022\/06\/footer-snap.png\" alt=\"\" class=\"wp-image-42\" srcset=\"https:\/\/geekotes.com\/wp-content\/uploads\/2022\/06\/footer-snap.png 576w, https:\/\/geekotes.com\/wp-content\/uploads\/2022\/06\/footer-snap-300x43.png 300w\" sizes=\"auto, (max-width: 576px) 100vw, 576px\" \/><figcaption>WordPress&#8217; footer<\/figcaption><\/figure>\n\n\n\n<p><strong>1. How to customize a footer of Superb WordPress Theme<\/strong><\/p>\n\n\n\n<p>Many Superb Themes share the same footer logic. You can find it in the following path:<\/p>\n\n\n\n<p class=\"has-vivid-cyan-blue-color has-white-background-color has-text-color has-background\">public_html\\wp-content\\themes\\feather-magazine\\functions.php  <\/p>\n\n\n\n<p>Change the words &#8216; WordPress Theme by&#8217; and &#8216; Superb WordPress Themes&#8217; to the context you want. And change the link &#8216;https:\/\/superbthemes.com\/&#8217; to your own link.<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-cyan-bluish-gray-background-color has-text-color has-background\"><code>    &lt;!--start copyrights--&gt;\n    &lt;div class=\"copyrights\"&gt;\n      &lt;div class=\"container\"&gt;\n        &lt;div class=\"row\" id=\"copyright-note\"&gt;\n          &lt;span&gt;\n            &lt;?php echo '&amp;copy; '. esc_html(date_i18n(__('Y','feather-magazine'))); ?&gt; &lt;?php bloginfo( 'name' ); ?&gt; &lt;span class=\"footer-info-right\"&gt;\n              &lt;?php echo esc_html_e(' | WordPress Theme by', 'feather-magazine') ?&gt; &lt;a href=\"&lt;?php echo esc_url('https:\/\/superbthemes.com\/', 'feather-magazine'); ?&gt;\"&gt;&lt;?php echo esc_html_e(' Superb WordPress Themes', 'feather-magazine') ?&gt;&lt;\/a&gt;          &lt;\/span&gt;\n              &lt;div class=\"top\"&gt;\n                &lt;a href=\"#top\" class=\"toplink\"&gt;&lt;?php esc_html_e('Back to Top','feather-magazine'); ?&gt; &amp;uarr;&lt;\/a&gt;\n              &lt;\/div&gt;\n            &lt;\/div&gt;\n          &lt;\/div&gt;\n        &lt;\/div&gt;\n        &lt;!--end copyrights--&gt;<\/code><\/pre>\n\n\n\n<p><strong>2. How to customize a footer of WooCommerce shop<\/strong><\/p>\n\n\n\n<p>Customization of WooCommerce shop&#8217;s footer is similar to the Superbe WordPress Theme. The only difference is the file path:<\/p>\n\n\n<p class=\"has-vivid-cyan-blue-color has-white-background-color has-text-color has-background\">public_html\\wp-content\\themes\\storefront\\inc\\storefront-template-functions.php<\/p>\n\n\n<p>Change the words &#8216;Built with Storefront &amp; WooCommerce&#8217; to the context you want. And change the link &#8216;https:\/\/woocommerce.com&#8217; to your own link. If you want your own link-tapping tip, please remember to change the words &#8216;WooCommerce &#8211; The Best eCommerce Platform for WordPress&#8217; to your own tip.<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-cyan-bluish-gray-background-color has-text-color has-background\"><code>\t\/**\n\t * Display the theme credit\n\t *\n\t * @since  1.0.0\n\t * @return void\n\t *\/\n\tfunction storefront_credit() {\n\t\t$links_output = '';\n\n\t\tif ( apply_filters( 'storefront_credit_link', true ) ) {\n\t\t\tif ( storefront_is_woocommerce_activated() ) {\n\t\t\t\t$links_output .= '&lt;a href=\"https:\/\/woocommerce.com\" target=\"_blank\" title=\"' . esc_attr__( 'WooCommerce - The Best eCommerce Platform for WordPress', 'storefront' ) . '\" rel=\"noreferrer\"&gt;' . esc_html__( 'Built with Storefront &amp;amp; WooCommerce', 'storefront' ) . '&lt;\/a&gt;.';\n\t\t\t} else {\n\t\t\t\t$links_output .= '&lt;a href=\"https:\/\/woocommerce.com\/storefront\/\" target=\"_blank\" title=\"' . esc_attr__( 'Storefront -  The perfect platform for your next WooCommerce project.', 'storefront' ) . '\" rel=\"noreferrer\"&gt;' . esc_html__( 'Built with Storefront', 'storefront' ) . '&lt;\/a&gt;.';\n\t\t\t}\n\t\t}<\/code><\/pre>\n\n\n\n<p><strong>3. How to find it for any theme by yourself<\/strong><\/p>\n\n\n\n<p>You can compress the whole WordPress site folder into a zip file and transfer it to your local driver. And use a text editor like UltraEdit or Sublime to find where the following keywords are located:<\/p>\n\n\n\n<p class=\"has-vivid-red-color has-cyan-bluish-gray-background-color has-text-color has-background\"><strong>superbthemes.com <\/strong><\/p>\n\n\n\n<p>or <\/p>\n\n\n\n<p class=\"has-vivid-red-color has-cyan-bluish-gray-background-color has-text-color has-background\">Superb WordPress Themes<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There are plenty of blogs talking about how to modify WordPress footer. But, I really can&#8217;t find one that shows a practical way to get it done. In the tip, I&#8217;m gonna show you two things: How to customize a footer of Superb WordPress Theme How to customize a footer of WooCommerce shop How to [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[39,23,24,25,44,22,43],"class_list":["post-41","post","type-post","status-publish","format-standard","hentry","category-cloud-website","tag-cloud-website","tag-customize-footer","tag-footer","tag-superb-wordpress","tag-woocommerce-footer","tag-wordpress","tag-wordpress-footer"],"_links":{"self":[{"href":"https:\/\/geekotes.com\/index.php\/wp-json\/wp\/v2\/posts\/41","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/geekotes.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/geekotes.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/geekotes.com\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/geekotes.com\/index.php\/wp-json\/wp\/v2\/comments?post=41"}],"version-history":[{"count":6,"href":"https:\/\/geekotes.com\/index.php\/wp-json\/wp\/v2\/posts\/41\/revisions"}],"predecessor-version":[{"id":105,"href":"https:\/\/geekotes.com\/index.php\/wp-json\/wp\/v2\/posts\/41\/revisions\/105"}],"wp:attachment":[{"href":"https:\/\/geekotes.com\/index.php\/wp-json\/wp\/v2\/media?parent=41"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/geekotes.com\/index.php\/wp-json\/wp\/v2\/categories?post=41"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/geekotes.com\/index.php\/wp-json\/wp\/v2\/tags?post=41"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}