Title: jetshack's Replies - page 3 | WordPress.org

---

# jetshack

  [  ](https://wordpress.org/support/users/jetshack/)

 *   [Profile](https://wordpress.org/support/users/jetshack/)
 *   [Topics Started](https://wordpress.org/support/users/jetshack/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jetshack/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jetshack/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jetshack/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jetshack/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jetshack/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 31 through 45 (of 266 total)

[←](https://wordpress.org/support/users/jetshack/replies/page/2/?output_format=md)
[1](https://wordpress.org/support/users/jetshack/replies/?output_format=md) [2](https://wordpress.org/support/users/jetshack/replies/page/2/?output_format=md)
3 [4](https://wordpress.org/support/users/jetshack/replies/page/4/?output_format=md)…
[16](https://wordpress.org/support/users/jetshack/replies/page/16/?output_format=md)
[17](https://wordpress.org/support/users/jetshack/replies/page/17/?output_format=md)
[18](https://wordpress.org/support/users/jetshack/replies/page/18/?output_format=md)
[→](https://wordpress.org/support/users/jetshack/replies/page/4/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Is there any easy way to delete blank lines in css stylesheet?](https://wordpress.org/support/topic/is-there-any-easy-way-to-delete-blank-lines-in-css-stylesheet/)
 *  [jetshack](https://wordpress.org/support/users/jetshack/)
 * (@jetshack)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/is-there-any-easy-way-to-delete-blank-lines-in-css-stylesheet/#post-542928)
 * maybe…
 * [http://www.cssdrive.com/index.php/main/csscompressoradvanced/](http://www.cssdrive.com/index.php/main/csscompressoradvanced/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Force page reload on every visit](https://wordpress.org/support/topic/force-page-reload-on-every-visit/)
 *  [jetshack](https://wordpress.org/support/users/jetshack/)
 * (@jetshack)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/force-page-reload-on-every-visit/#post-542927)
 * [http://www.htmlgoodies.com/beyond/reference/article.php/3472881](http://www.htmlgoodies.com/beyond/reference/article.php/3472881)
 *   Forum: [Requests and Feedback](https://wordpress.org/support/forum/requests-and-feedback/)
   
   In reply to: [Want an option to forward a blog posting via e-mail](https://wordpress.org/support/topic/want-an-option-to-forward-a-blog-posting-via-e-mail/)
 *  [jetshack](https://wordpress.org/support/users/jetshack/)
 * (@jetshack)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/want-an-option-to-forward-a-blog-posting-via-e-mail/#post-542901)
 * maybe…
 * [http://watershedstudio.com/portfolio/software/wp-email-notification.html](http://watershedstudio.com/portfolio/software/wp-email-notification.html)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Force page reload on every visit](https://wordpress.org/support/topic/force-page-reload-on-every-visit/)
 *  [jetshack](https://wordpress.org/support/users/jetshack/)
 * (@jetshack)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/force-page-reload-on-every-visit/#post-542900)
 * For static sites, if the content of your site has changed then the visitor should
   see the latest content. _I THINK_ their browser will compare the cached doc time
   stamp vs the time stamp on the file on the server, if they’re the same then it
   loads the cached doc otherwise it grabs the newer version off the server.
 * For WordPress sites the index.php is being generated dynamically so it will always
   load from the server…
 * To reload a page at a set in terval add this to the head
 * `<META HTTP-EQUIV="refresh" CONTENT="XX">`
 * change XX to the number of seconds you want to to wait between refreshes… Don’t
   know how that would be of benifit to most sites (maybe stock tracking)…
 * Or you could put a link on the page telling them to refresh it at their leisure
   with something like this
 * `<A HREF="javascript:history.go(0)">Refresh</A>`
 * or you could do it with a button….
 *     ```
       <FORM>
       <INPUT TYPE="button" onClick="history.go(0)" VALUE="Refresh">
       </FORM>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Arranging menu buttons](https://wordpress.org/support/topic/arranging-menu-buttons/)
 *  [jetshack](https://wordpress.org/support/users/jetshack/)
 * (@jetshack)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/arranging-menu-buttons/#post-538518)
 * link to site… along with what order you’re wanting your links in.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Unique design for each page – is this possible?](https://wordpress.org/support/topic/unique-design-for-each-page-is-this-possible/)
 *  [jetshack](https://wordpress.org/support/users/jetshack/)
 * (@jetshack)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/unique-design-for-each-page-is-this-possible/#post-542405)
 * you can do this with page templates.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Remove all possibility to comment](https://wordpress.org/support/topic/remove-all-possibility-to-comment/)
 *  [jetshack](https://wordpress.org/support/users/jetshack/)
 * (@jetshack)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/remove-all-possibility-to-comment/#post-541049)
 * first suggestion would be not to disable comments but to use something like akismet…
 * if that’s not what you want, pull out the calls to comments out of your template
   files
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Few probs](https://wordpress.org/support/topic/few-probs/)
 *  [jetshack](https://wordpress.org/support/users/jetshack/)
 * (@jetshack)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/few-probs/#post-541440)
 * 2. [http://wordpress.org/search/Blank+page+after+publishing+post?forums=1](http://wordpress.org/search/Blank+page+after+publishing+post?forums=1)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Few probs](https://wordpress.org/support/topic/few-probs/)
 *  [jetshack](https://wordpress.org/support/users/jetshack/)
 * (@jetshack)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/few-probs/#post-541438)
 * 1. [http://wordpress.org/support/topic/55702?replies=7#post-316060](http://wordpress.org/support/topic/55702?replies=7#post-316060)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Few probs](https://wordpress.org/support/topic/few-probs/)
 *  [jetshack](https://wordpress.org/support/users/jetshack/)
 * (@jetshack)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/few-probs/#post-541435)
 * 3. delete comments.php alltogeter and see what happens… it should used the index
   template if it doesn’t find a comments template.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Add “Home” and “Forum” button](https://wordpress.org/support/topic/add-home-and-forum-button/)
 *  [jetshack](https://wordpress.org/support/users/jetshack/)
 * (@jetshack)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/add-home-and-forum-button/#post-537201)
 * link?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to create a static page like the them](https://wordpress.org/support/topic/how-to-create-a-static-page-like-the-them/)
 *  [jetshack](https://wordpress.org/support/users/jetshack/)
 * (@jetshack)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/how-to-create-a-static-page-like-the-them/#post-537819)
 * why not just create a static page in wp?
 * if that’s not an option copy the source from the page which you’re wanting to
   mimic and edit accordingly.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Link Back to main site](https://wordpress.org/support/topic/link-back-to-main-site/)
 *  [jetshack](https://wordpress.org/support/users/jetshack/)
 * (@jetshack)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/link-back-to-main-site/#post-537818)
 * reproduce your sites theme on your blog so that it looks seamless… structure 
   links accordingly…
 * where a phsically located doesn’t matter.
 * without specifics that’s as general as I can be.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [job offer : making wordpress theme](https://wordpress.org/support/topic/job-offer-making-wordpress-theme-1/)
 *  [jetshack](https://wordpress.org/support/users/jetshack/)
 * (@jetshack)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/job-offer-making-wordpress-theme-1/#post-538474)
 * ballpark range of what you’re willing to offer?
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Advice in Setting-up site/blog/online-portfolio](https://wordpress.org/support/topic/advice-in-setting-up-siteblogonline-portfolio/)
 *  [jetshack](https://wordpress.org/support/users/jetshack/)
 * (@jetshack)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/advice-in-setting-up-siteblogonline-portfolio/#post-539183)
 * You’ll probably do just fine with one copy of the software running, then set 
   up different categories for academic and non-academic works.

Viewing 15 replies - 31 through 45 (of 266 total)

[←](https://wordpress.org/support/users/jetshack/replies/page/2/?output_format=md)
[1](https://wordpress.org/support/users/jetshack/replies/?output_format=md) [2](https://wordpress.org/support/users/jetshack/replies/page/2/?output_format=md)
3 [4](https://wordpress.org/support/users/jetshack/replies/page/4/?output_format=md)…
[16](https://wordpress.org/support/users/jetshack/replies/page/16/?output_format=md)
[17](https://wordpress.org/support/users/jetshack/replies/page/17/?output_format=md)
[18](https://wordpress.org/support/users/jetshack/replies/page/18/?output_format=md)
[→](https://wordpress.org/support/users/jetshack/replies/page/4/?output_format=md)