John Parris
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: questions on next_posts_linkTry the infinite scroll module in Jetpack. https://ww.wp.xz.cn/plugins/jetpack/
Forum: Fixing WordPress
In reply to: Paid membership subscriptionHave you tried Restrict Content and/or Restrict Content Pro?
https://ww.wp.xz.cn/plugins/restrict-content/Forum: Fixing WordPress
In reply to: How to fix the WordPress White ScreenHi,
The easiest way to figure out what’s happening is going to be to enable debugging in WordPress. http://codex.ww.wp.xz.cn/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
In reply to: Site is loading as mobile on desktopHi,
Do you have any caching plugins installed?
Forum: Fixing WordPress
In reply to: Getting cat-category_nicename as class only if has_categoryHi,
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
In reply to: Translation of dates, days, and other front end stuffHi,
Have you tried the Say What plugin?
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
In reply to: issue with ie about htaccessDoes 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
In reply to: issue with ie about htaccessWhich version of IE is it?
Forum: Fixing WordPress
In reply to: Contributor post without approvalHi,
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
In reply to: how to add address under teleHi, 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
Forum: Fixing WordPress
In reply to: issue with ie about htaccessI 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?
Curious, does it work right if you remove the custom walker?
Forum: Fixing WordPress
In reply to: Some users see plain text pagesHi 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
In reply to: Cannot update pages – sent to homepage after attemptHi,
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?