Remove copyright
-
Hi, I’m using free version of Onepress theme. How do I remove the copyright text? I know you can change the text only in premium version, but I just want to remove the whole line.
Thank you
Viewing 3 replies - 1 through 3 (of 3 total)
-
Hey, @lucienoh
First of all, you have to create a child theme of your currently active theme and after that open your footer.php file from your child theme and then replace this section
<div class="site-info"> <div class="container"> <?php if ($onepress_btt_disable != '1') : ?> <div class="btt"> <a class="back-to-top" href="#page" title="<?php echo esc_html__('Back To Top', 'onepress') ?>"><i class="fa fa-angle-double-up wow flash" data-wow-duration="2s"></i></a> </div> <?php endif; ?> <?php /** * hooked onepress_footer_site_info * @see onepress_footer_site_info */ do_action('onepress_footer_site_info'); ?> </div> </div>to
<div class="site-info"> <div class="container"> <div class="btt"> <a class="back-to-top" href="#page" title="<?php echo esc_html__('Back To Top', 'onepress') ?>"><i class="fa fa-angle-double-up wow flash" data-wow-duration="2s"></i></a> </div> </div> </div>above code.
Let me know if that does it.
Thank you.-
This reply was modified 7 years, 3 months ago by
Anonymous User 16453565.
Hi, thanks a lot! That works perfectly.
CSS with Customizer
.site-info { display: none } -
This reply was modified 7 years, 3 months ago by
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Remove copyright’ is closed to new replies.
