mgsisk / inkblot

Inkblot is an elegant, fully responsive, highly customizable Webcomic-ready WordPress theme.
http://wordpress.org/themes/inkblot
46 stars 12 forks source link

Remove comic title from homepage and change footer #68

Open herrzeba1 opened 6 years ago

herrzeba1 commented 6 years ago

Hey,

  1. Thanks to your help I managed to hide post details, which is great. I also installed Tittle Remover plugin, which works great on comic pages, but not on the home page. I'm using Inkblot with Webcomic. Homepage shows my latest webcomic.
  1. Currently my footer says @ 2018 [website name], how can I edit this to show my full name? I checked footer.php but couldn't locate it there.

Thank you, Sebastian

herrzeba1 commented 6 years ago

Hi, for anybody looking for solution for this, after doing some research I found it.

  1. You need to add this into custom CSS in appearance: .post-header { display: none; }

  2. Currently stlll no solution for this. I managed to add my name and hyperlink by replacing this: '<a href="#document">' . inkblot_copyright() . '</a>', '<a href="//wordpress.org">WordPress</a>', '<a href="//github.com/mgsisk/inkblot">Inkblot</a>'

with this: '<a href="//danandclue.com">My Name</a>' . inkblot_copyright() . '</a>', '<a href="//wordpress.org">WordPress</a>', '<a href="//github.com/mgsisk/inkblot">Inkblot</a>'

But that only added my name before the copyright sign in the footer. The other content of the footer remained unchanged.