SchuminWeb
Forum Replies Created
-
@leogermani On the two sites where I’ve gotten the technical issue email, that file does exist in both instances.
Forum: Plugins
In reply to: [LightPress Lightbox] WordPress 5.6 break pluginsThank you, @nightl, for the advice on a workaround. The Enable jQuery Migrate Helper plugin works beautifully, and restores the functionality of the plugin until a more permanent fix can be implemented.
- This reply was modified 5 years, 5 months ago by SchuminWeb.
- This reply was modified 5 years, 5 months ago by SchuminWeb.
Forum: Plugins
In reply to: [LightPress Lightbox] WordPress 5.6 break pluginsI get the same result on all of my sites that use it. I’ve disabled the plugin for now until the update comes. Looking forward to the fix.
Forum: Fixing WordPress
In reply to: “Insert/edit link” Feature In Editor Not Working properly in ChromeAdding myself to this list. Cannot get links to create using the visual editor. Running WordPress 4.7.4 on Chrome 58.0.3029.81. No recent changes to site setup other than the WordPress version change. Deactivated all of my plugins to see if that made a difference, and it still isn’t working properly. Have to go in and manually add the tags. Not a fun time.
- This reply was modified 9 years ago by SchuminWeb.
Forum: Fixing WordPress
In reply to: Permission denied in class-wp-theme.php for page editor?Found a solution here:
Forum: Plugins
In reply to: [Copygram widget] Stopped UpdatingI’m having the same problem. You are probably best served by moving to a new plugin. What did you end up settling on?
Forum: Fixing WordPress
In reply to: Custom post types not showing on category archive pagesFigured it out.
Forum: Fixing WordPress
In reply to: Custom post types not showing on category archive pagesI also tried this in my functions.php that I found in a support post from three years ago:
add_filter('pre_get_posts', 'query_post_type'); function query_post_type($query) { if(is_category() || is_tag()) { $post_type = get_query_var('post_type'); if($post_type) $post_type = $post_type; else $post_type = array('post','article'); $query->set('post_type',$post_type); return $query; } }This code made the custom post types show in the categories like I wanted, but it caused a lot of PHP errors in the backend – enough to where I pulled it out. Anyone know what’s wrong here? Apparently this worked before, but it doesn’t anymore.
Forum: Fixing WordPress
In reply to: Custom post types not showing on category archive pagesDone. Made no difference, unfortunately.
Never mind – this is minor, and my current solution works well enough. Have another issue that is more pressing that I still need to figure out how best to describe.
So I verified your findings and they checked out. The BR tag was the culprit. I have no idea why it’s there, nor does it exist in my theme. But that doesn’t mean I can’t style it into submission. 🙂
My final solution was similar to what you suggested. What I ended up doing was to disable the BR tag entirely for the “left sidebar” div (where the offending tag lives) using CSS. There should never be a manual linefeed in that div, and so I ought to be safe with that.
Thank you for your help!
Forum: Fixing WordPress
In reply to: Unable to add and remove users or pluginsReplacing the wp-includes folder did it! Thanks.
Forum: Fixing WordPress
In reply to: Unable to add and remove users or plugins@mindctrl: I can see the plugins menu, and in it, I can activate and deactivate plugins, but I am unable to delete plugins, and I can’t add new plugins. Additionally, the notification for the new version of WordPress says, “WordPress 3.6 is available! Please notify the site administrator.” rather than asking me to perform the upgrade.
@ipstenu: I made your modification, and unfortunately, it had no effect. The original string there was a:1:{s:13:”administrator”;s:1:”1″;} and I set it back to that after discovering that the changed setting had no effect.
Forum: Fixing WordPress
In reply to: Unable to add and remove users or pluginsYes. Admin on a single-site installation.
Forum: Fixing WordPress
In reply to: Is there a way to disable the new Media Manager?That’s awesome! Is this plugin available in the official WordPress plugin directory yet?