sindit
Forum Replies Created
-
Forum: Plugins
In reply to: [Download Monitor] Dashboard graph of “Popular downloads” of the scaleHello Harish,
The graph bars or the dashboard widget still break through the bounds their container and even run off the page. Already when the number of downloads is a few hundred.
(Download Monitor version 4.0.7 on WordPress 4.9.5.).
Hope this helps and thanks for looking into this issue.
Forum: Fixing WordPress
In reply to: Remove hyphens from post titles with twenty sixteen themeThis works for me with twenty sixteen:
.post-navigation .post-title,
.entry-title,
.comments-title {
-moz-hyphens: none;
-ms-hyphens: none;
-webkit-hyphens: none;
hyphens: none;
word-wrap: normal;
}Forum: Plugins
In reply to: [AddFunc Head & Footer Code] blank page site-wide settingsThat works fine. Well done!
Forum: Plugins
In reply to: [AddFunc Head & Footer Code] blank page site-wide settingsThanks! That works indeed.
Re: replacement code snippet
I have no experience writing WP plugins, but this page seems to offer some advice on how to deal with custom directories:
https://tinyurl.com/oued799Forum: Plugins
In reply to: [AddFunc Head & Footer Code] blank page site-wide settingsThanks again for looking into this. With the updated plugin I still get the blank screen (within the frame of the WP dashboard) for the site wide settings. Nevertheless having all the plugin files in UTF-8 is a good thing.
Tried to further narrow the problem down myself. It does seem to occur at sites where I renamed the wp-content directory for security reasons (an option in the iThemes Security plugin). When one does this, a bit of code is added at the top of the wp-config.php to tell WP where the new location of the content is.
//Do not delete these. Doing so WILL break your site. define( 'WP_CONTENT_URL', 'https://www.yourdomain.com/wpinstalldir/renamedwpcontentdir' ); define( 'WP_CONTENT_DIR', '/home/userdir/public_html/wpinstalldir/renamedwpcontentdir' );
Could that have something to do with it?
Forum: Plugins
In reply to: [AddFunc Head & Footer Code] blank page site-wide settingsYes, I disabled all the other plugins and still get the blank page for AddFunc HFC under Settings.
All the other plugins are:
iThemes Security v4.6.13 by iThemes.com
User Roles and Capabilities v1.1 by mahabub
Custom Contact Forms, v6.7.3 by Taylor LovettiThemes Security also writes to .htaccess and I do not know if those changes are undone when one disables the plugin.