1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How to remove credits from footer?

Discussion in 'HTML & Website Design' started by hammadfaisal007, Jul 2, 2014.

  1. #1
    Can anyone help me removing credits from footer?

    website:
    The credit which I want to remove is:
    When I try to remove that from footer.php, I get this error when I access my website:
    The theme can be downloaded from here:
    Please help!
     
    hammadfaisal007, Jul 2, 2014 IP
  2. satguy

    satguy Well-Known Member

    Messages:
    780
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    130
    #2
    Some footer links are encrypted and it can be a big job to remove them..

    Best to just leave them alone,, and if they really really bug you buy a wordpress theme and do what you want with it.
     
    satguy, Jul 2, 2014 IP
  3. shemseddine

    shemseddine Active Member

    Messages:
    144
    Likes Received:
    4
    Best Answers:
    3
    Trophy Points:
    55
    #3
    just edit the css file so that #footer{ display:none;} or #footer{visibility:hidden;} This will remove or hide the footer.

    you can give them a class for each link and just hide them and display your own.
     
    shemseddine, Jul 2, 2014 IP
  4. wiicker95

    wiicker95 Well-Known Member

    Messages:
    438
    Likes Received:
    37
    Best Answers:
    10
    Trophy Points:
    100
    #4
    Just add this:

    #credits{display:none}
     
    wiicker95, Jul 2, 2014 IP
  5. ivantk

    ivantk Active Member

    Messages:
    183
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    53
    #5
    Avoid modifying the css with display:none simply because you may get in trouble with Google.
    You can however add a JavaScript code which will hide the links just like the dropdown menus are hidden. You can add after the credits div.
    <script>document.getElementById('credits').style.display = 'none'; </script>
    Code (JavaScript):
    Well, they still count for Google, but at least your visitors will not see them.
     
    ivantk, Jul 2, 2014 IP
  6. shemseddine

    shemseddine Active Member

    Messages:
    144
    Likes Received:
    4
    Best Answers:
    3
    Trophy Points:
    55
    #6
    that's exactly what the css code does. I don't think google will mind since most of the dropdown menus are done via css.
     
    shemseddine, Jul 2, 2014 IP
  7. wiicker95

    wiicker95 Well-Known Member

    Messages:
    438
    Likes Received:
    37
    Best Answers:
    10
    Trophy Points:
    100
    #7
    @ivantk did you really post that? I'm surprised by the fact that so many people get brainwashed by divers "SEO" clerks and gurus and all kinds of experts.
    THEY ARE LYING TO YOU, because that brings them profit, and you're dumb enough not to see it yourself.

    You're mentioning google -- well, *news flash*, google doesn't really care about your css in the first place. You're suggesting scripting alternative, for some weird reason-- the effect is just the opposite!
    And why would google care about it anyway? Did you actually take your time to open the link he included? No content of value is wrapped in DIV#credits there. Some words in Hebrew and some advertizing, yeah that's definitely the reason why visitors came on the website, of course!
    As polite as I can be, read what you wrote above, you make no sense.
     
    wiicker95, Jul 2, 2014 IP
    kk5st likes this.
  8. ivantk

    ivantk Active Member

    Messages:
    183
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    53
    #8
    Wow, thanks for the *news flash*.
     
    ivantk, Jul 2, 2014 IP
  9. ivantk

    ivantk Active Member

    Messages:
    183
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    53
    #9
    I apologize for the delay, but I was too busy selling my own products.
    You post inspired me to write a better code.
    The new solution:
    <script>document.getElementById('credits').innerHTML= ""; </script>
    
    Code (JavaScript):
    It is not a problem if the user can do an action to show them and if Google Bot understands this.

    @wiicker95 - Looking at your Avatar and your nick name, I am guessing you are no more than 18 years old. Or are you dumb enough to make you look like such?
    I've created my fist website when you were under the table, looking up and asking your mother if this is the sky. I am not brainwashed by any guru simply because I am a guru with more than 15 years experience in SEO and Web Development. If you look beyond HTML/CSS section of this forum, you will find too many people crying about Google penalized their website for hiding advertising links - your way!

    Are you saying that hiding links and text is OK, if they are of no value to the visitor but they are just for Google?
    Are you joking or are you just trying to be original?

    If Google doesn't care about CSS why do they care to wrote this article - https://support.google.com/webmasters/answer/66353?hl=en
    or this article https://support.google.com/webmasters/answer/2604780?hl=en
    They used to clearly stated that display:none is a bad webmaster practice to hide links/text, but they revised this because their search engine now good at reading JavaScript and AJAX.
    Still it is a bad practice to hide links if there is no way for the user to show them (ex: mouse over or mouse clicked).
     
    ivantk, Jul 3, 2014 IP
    Blinky82 likes this.
  10. Dismatikz

    Dismatikz Well-Known Member

    Messages:
    698
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    110
    #10
    Just pay for the theme, or download a free one.
     
    Dismatikz, Jul 3, 2014 IP
  11. shemseddine

    shemseddine Active Member

    Messages:
    144
    Likes Received:
    4
    Best Answers:
    3
    Trophy Points:
    55
    #11
    Or pay someone to create one for you
     
    shemseddine, Jul 3, 2014 IP
  12. hammadfaisal007

    hammadfaisal007 Member

    Messages:
    140
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    28
    #12
    ok guys. I found a solution to this.

    We can reduce the font-size to 0px. And it won't be visible. Will there be any problem in reducing font-size? I mean, in SEO ?
     
    hammadfaisal007, Jul 3, 2014 IP
  13. shemseddine

    shemseddine Active Member

    Messages:
    144
    Likes Received:
    4
    Best Answers:
    3
    Trophy Points:
    55
    #13
    Aha I honestly don't think it will matter for the SEO. yes you can reduce the font size, not display it or render it invisible. It wouldn't make a difference
     
    shemseddine, Jul 3, 2014 IP