josh_fester
Forum Replies Created
-
Thank you for looking into it. I messed around with the server and it looks like the problem is with Varnish. Do you guys have any tips for working with Varnish? Or why it might work with Facebook but not Twitter?
Ah I see. It is now public
Hey guys any updates on this?
That notice has nothing to do with the problem. The page that you see is trying to load the current user, but the user is not logged in, so there’s nothing to show. You can also try going to /wp-login.php and /wp-admin. The Twitter login is not actually logging the user in.
Forum: Plugins
In reply to: [CMB2] Frontend form with custom HTML layoutThanks for pointing me in the right direction Justin. It’s probably beyond the scope of CMB2, but I feel like this use case is incredibly common. I’ve never built a site where an overly simplified, unstyled form would be acceptable. Maybe I’ll put my abstractions into a plugin that extends CMB2.
Forum: Plugins
In reply to: [Revisr] Managing updates in multiple environmentsAwesome thanks! I will be working pretty extensively with this plugin so hopefuly I can write a helpful blog post soon that covers this area
Forum: Fixing WordPress
In reply to: body_class doesn't work on chrome windowsWas this ever resolved? I have this problem on a couple sites. Makes absolutely no sense. I solved it by adding the body_class() to a wrapper div, because any attributes on the body tag just disappear in Windows browsers.
Chris, you literally just saved my life. I was about to jump.
Forum: Plugins
In reply to: [View Own Posts Media Only] Conflict with Advanced Custom FieldsIt would be really sweet to have options asking which user roles we want to see others’ posts 🙂
Forum: Plugins
In reply to: [View Own Posts Media Only] Conflict with Advanced Custom FieldsIt turns out it wasn’t an issue with ACF. It was just an issue with my user capabilities. I only want administrators to see other people’s content, and other user groups have customized permissions.
To solve it I changed line 209 of includes/class-view-own-posts-media-only.php from this:
if (!$suppressing_filters && is_admin() && current_user_can('edit_posts') && !current_user_can('edit_others_posts'))to this:
if (!$suppressing_filters && is_admin() && !current_user_can('administrator'))Forum: Plugins
In reply to: [View Own Posts Media Only] Conflict with Advanced Custom Fields@vladimir Garagulya
I apologize for not getting back sooner. I had an issue with my WordPress account and did not realize it.
Version 1.2 resolves this problem. It’s awesome to have the new options! However, I’ve noticed a new issue with ACF. Whenever a field in ACF is a post object, it shows up in the form as a list of every single post. Any thoughts on how to limit this dropdown box to just the posts created by the user? Thanks
Forum: Plugins
In reply to: [W3 Total Cache] Error when activated with Ozh' Menu pluginI found a fix for this here.
Go to the ozh plugin folder/inc/core.php and change line 85 to this:
if ( 'none' === $item[6]|'div' === $item[6] )Forum: Plugins
In reply to: [Ozh' Admin Drop Down Menu] 404 using Ozh' Admin with W3 Total CacheI found a fix for this here.
Go to the ozh plugin folder/inc/core.php and change line 85 to this:
if ( 'none' === $item[6]|'div' === $item[6] )Forum: Plugins
In reply to: [Ozh' Admin Drop Down Menu] 404 using Ozh' Admin with W3 Total CacheSame problem here. It ends up breaking the entire admin in IE8 if you also use Modernizr in the admin. Very frustrating. Gotta give up one of the plugins
Forum: Themes and Templates
In reply to: How to hide page from navigationThank heavens! I made it ID < 140. The page I want hidden is 160. It works! Thank you so much