Title: John Parris's Replies - page 45 | WordPress.org

---

# John Parris

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 661 through 675 (of 942 total)

[←](https://wordpress.org/support/users/mindctrl/replies/page/44/?output_format=md)
[1](https://wordpress.org/support/users/mindctrl/replies/?output_format=md) [2](https://wordpress.org/support/users/mindctrl/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/mindctrl/replies/page/3/?output_format=md)…
[44](https://wordpress.org/support/users/mindctrl/replies/page/44/?output_format=md)
45 [46](https://wordpress.org/support/users/mindctrl/replies/page/46/?output_format=md)…
[61](https://wordpress.org/support/users/mindctrl/replies/page/61/?output_format=md)
[62](https://wordpress.org/support/users/mindctrl/replies/page/62/?output_format=md)
[63](https://wordpress.org/support/users/mindctrl/replies/page/63/?output_format=md)
[→](https://wordpress.org/support/users/mindctrl/replies/page/46/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [questions on next_posts_link](https://wordpress.org/support/topic/questions-on-next_posts_link/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/questions-on-next_posts_link/#post-5942573)
 * Try the infinite scroll module in Jetpack. [https://wordpress.org/plugins/jetpack/](https://wordpress.org/plugins/jetpack/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Paid membership subscription](https://wordpress.org/support/topic/paid-membership-subscription/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/paid-membership-subscription/#post-5943090)
 * Have you tried Restrict Content and/or Restrict Content Pro?
    [https://wordpress.org/plugins/restrict-content/](https://wordpress.org/plugins/restrict-content/)
 * [https://pippinsplugins.com/products/restrict-content-pro/](https://pippinsplugins.com/products/restrict-content-pro/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to fix the WordPress White Screen](https://wordpress.org/support/topic/how-to-fix-the-wordpress-white-screen/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/how-to-fix-the-wordpress-white-screen/#post-5945322)
 * Hi,
 * The easiest way to figure out what’s happening is going to be to enable debugging
   in WordPress. [http://codex.wordpress.org/Debugging_in_WordPress](http://codex.wordpress.org/Debugging_in_WordPress)
 * See the heading under “Example wp-config.php for Debugging”.
 * This will tell WP to write a log file called debug.log in the wp-content folder.
   There you should see what’s causing it. Let me know what you find.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Site is loading as mobile on desktop](https://wordpress.org/support/topic/site-is-loading-as-mobile-on-desktop/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/site-is-loading-as-mobile-on-desktop/#post-5945883)
 * Hi,
 * Do you have any caching plugins installed?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Getting cat-category_nicename as class only if has_category](https://wordpress.org/support/topic/getting-cat-category_nicename-as-class-only-if-has_category/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/getting-cat-category_nicename-as-class-only-if-has_category/#post-5944714)
 * Hi,
 * You could do it a little differently like this:
 *     ```
       function jp_custom_post_classes( $classes ) {
           global $post;
           if( 'post' != get_post_type( $post->ID ) ) {
               return $classes;
           }
   
           foreach ( ( get_the_category( $post->ID ) ) as $category ) {
               $classes[] = 'cat-' . $category->category_nicename;
           }
           return $classes;
       }
       add_filter( 'post_class', 'jp_custom_post_classes' );
       ```
   
 * You’d want that in a custom plugin or the theme’s functions.php file.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Translation of dates, days, and other front end stuff](https://wordpress.org/support/topic/translation-of-dates-days-and-other-front-end-stuff/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/translation-of-dates-days-and-other-front-end-stuff/#post-5944713)
 * Hi,
 * Have you tried the [Say What](https://wordpress.org/plugins/say-what/) plugin?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Homepage content will not show in back-end while front end is working perfectly](https://wordpress.org/support/topic/homepage-content-will-not-show-in-back-end-while-front-end-is-working-perfectly/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/homepage-content-will-not-show-in-back-end-while-front-end-is-working-perfectly/#post-5945305)
 * Hi,
 * Can you tell me a little more about your setup? When you say you set it as your
   homeapge, are you talking about under Settings > Reading? Which theme and plugins
   do you have installed?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [issue with ie about htaccess](https://wordpress.org/support/topic/issue-with-ie-about-htaccess/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/issue-with-ie-about-htaccess/#post-5917917)
 * Does IE work if you remove this line? `ErrorDocument 401 "Error 403: Forbidden
   Access"`
 * Also it might be helpful to clear all the cache in IE. It has a history of doing
   weird things with htpasswd things.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [issue with ie about htaccess](https://wordpress.org/support/topic/issue-with-ie-about-htaccess/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/issue-with-ie-about-htaccess/#post-5917871)
 * Which version of IE is it?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Contributor post without approval](https://wordpress.org/support/topic/contributor-post-without-approval/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/contributor-post-without-approval/#post-5918343)
 * Hi,
 * If a user has a Contributor role, they should not be able to publish posts by
   default. If the user has that role and they are able, someone has changed the
   default roles or there is some other plugin conflicting.
 * Can you verify that the user has the Contributor role in the Roles dropdown menu
   on their account?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [how to add address under tele](https://wordpress.org/support/topic/how-to-add-address-under-tele/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/how-to-add-address-under-tele/#post-5917833)
 * Hi, you need 2 things.
 * First, you need `white-space: pre;`.
 * Second, you can add to lines using `\A`, like this:
    `content: "Tel: 508-588-
   3390 \A 250 Cape Hwy \A Taunton, Ma";`
 * Produces this: [http://cl.ly/image/0b1L3q1o3k2I](http://cl.ly/image/0b1L3q1o3k2I)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [issue with ie about htaccess](https://wordpress.org/support/topic/issue-with-ie-about-htaccess/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/issue-with-ie-about-htaccess/#post-5917829)
 * I got an email that it works, but your message here says it doesn’t. Did you 
   update it or is the thread still caching an old reply?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [“Your comment is awaiting moderation.” message not working as expected with reve](https://wordpress.org/support/topic/your-comment-is-awaiting-moderation-message-not-working-as-expected-with-reve/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/your-comment-is-awaiting-moderation-message-not-working-as-expected-with-reve/#post-5917313)
 * Curious, does it work right if you remove the custom walker?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Some users see plain text pages](https://wordpress.org/support/topic/some-users-see-plain-text-pages/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/some-users-see-plain-text-pages/#post-5917826)
 * Hi Jon,
 * Your site looks good to me on mobile. The Twenty Fifteen theme is very plain 
   looking, so maybe you’re mistaking it for just plain text? Can you get a screenshot
   from your phone of what it looks like?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cannot update pages – sent to homepage after attempt](https://wordpress.org/support/topic/cannot-update-pages-sent-to-homepage-after-attempt/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/cannot-update-pages-sent-to-homepage-after-attempt/#post-5917820)
 * Hi,
 * What method did you use to change from http to https? Did you try clearing all
   your cookies and cache in your browser and try it again?

Viewing 15 replies - 661 through 675 (of 942 total)

[←](https://wordpress.org/support/users/mindctrl/replies/page/44/?output_format=md)
[1](https://wordpress.org/support/users/mindctrl/replies/?output_format=md) [2](https://wordpress.org/support/users/mindctrl/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/mindctrl/replies/page/3/?output_format=md)…
[44](https://wordpress.org/support/users/mindctrl/replies/page/44/?output_format=md)
45 [46](https://wordpress.org/support/users/mindctrl/replies/page/46/?output_format=md)…
[61](https://wordpress.org/support/users/mindctrl/replies/page/61/?output_format=md)
[62](https://wordpress.org/support/users/mindctrl/replies/page/62/?output_format=md)
[63](https://wordpress.org/support/users/mindctrl/replies/page/63/?output_format=md)
[→](https://wordpress.org/support/users/mindctrl/replies/page/46/?output_format=md)