admin管理员组

文章数量:1023221

My website has footer credit which is really hard for me to hide or remove or replace please help me , I'm using painting theme from themeforest.

I even tried this also:

.site-info{
  display:none;
}

My website has footer credit which is really hard for me to hide or remove or replace please help me , I'm using painting theme from themeforest.

I even tried this also:

.site-info{
  display:none;
}
Share Improve this question edited Apr 17, 2019 at 10:50 norman.lol 3,2413 gold badges30 silver badges35 bronze badges asked Apr 17, 2019 at 9:17 Utsav UpadhyayUtsav Upadhyay 1012 bronze badges 1
  • 1 Check your theme options settings for footer, I am sure there is a option for hide or remove copyright. You don't need to hide it using css if there is any default options for hide it. – Pratik Patel Commented Apr 17, 2019 at 9:23
Add a comment  | 

3 Answers 3

Reset to default 0

It's going to be hard to answer this without being able to see the theme admin. Check to see if there are any theme customisation options in your admin. Some themes may come with their own control panel which lets you toggle settings or alter footer content, like the copyright.

The theme may also have a hook to let you filter and alter the content, again without access to the code I am only guessing here.

A good solution here would be to create a child theme from this, and create a new footer.php template to override the content. Make a copy of the current footer.php and place it in your child theme, and then simply remove the copyright.

Lastly, check the terms and conditions on this theme you have purchased as you may not be allowed to remove the copyright notice.

Please use the below code to remove the footer copyright information.

.copyright p {
display: none;
}

This will work fine.

Css is not a proper. you are using premium theme then use theme setting. check the theme setting or footer widgth for remove or change this text.

My website has footer credit which is really hard for me to hide or remove or replace please help me , I'm using painting theme from themeforest.

I even tried this also:

.site-info{
  display:none;
}

My website has footer credit which is really hard for me to hide or remove or replace please help me , I'm using painting theme from themeforest.

I even tried this also:

.site-info{
  display:none;
}
Share Improve this question edited Apr 17, 2019 at 10:50 norman.lol 3,2413 gold badges30 silver badges35 bronze badges asked Apr 17, 2019 at 9:17 Utsav UpadhyayUtsav Upadhyay 1012 bronze badges 1
  • 1 Check your theme options settings for footer, I am sure there is a option for hide or remove copyright. You don't need to hide it using css if there is any default options for hide it. – Pratik Patel Commented Apr 17, 2019 at 9:23
Add a comment  | 

3 Answers 3

Reset to default 0

It's going to be hard to answer this without being able to see the theme admin. Check to see if there are any theme customisation options in your admin. Some themes may come with their own control panel which lets you toggle settings or alter footer content, like the copyright.

The theme may also have a hook to let you filter and alter the content, again without access to the code I am only guessing here.

A good solution here would be to create a child theme from this, and create a new footer.php template to override the content. Make a copy of the current footer.php and place it in your child theme, and then simply remove the copyright.

Lastly, check the terms and conditions on this theme you have purchased as you may not be allowed to remove the copyright notice.

Please use the below code to remove the footer copyright information.

.copyright p {
display: none;
}

This will work fine.

Css is not a proper. you are using premium theme then use theme setting. check the theme setting or footer widgth for remove or change this text.

本文标签: themesHow can i remove footer credit text