eSaner
Forum Replies Created
-
Forum: Plugins
In reply to: [Query Monitor] Can’t open overview in frontendAh, right — panel at the bottom, that was how it worked. Temporarily enabling the admin toolbar is fine for our situation. No idea how much effort it would take, but an option for output in browser devtools would be neat. Thanks for all your work on this!
Forum: Plugins
In reply to: [Query Monitor] Can’t open overview in frontendHad a similar issue, but the theme was returning ‘false’ for the ‘show_admin_bar’ filter for all users. IIRC, in previous versions of Query Monitor the admin bar would still show on the frontend once Query Monitor was activated. We fixed the issue by returning ‘true’ for situations where Query Monitor will be used.
Forum: Plugins
In reply to: [Page Links To] Error introduced in v3.4I encountered the same error. I was filtering ‘page-links-to-post-types’ to exclude some custom post types by unsetting them from the return array. The error went away when I changed the filter to return an array of post types to include.
add_filter(‘page-links-to-post-types’, fn() => [‘page’, ‘post’]);Forum: Plugins
In reply to: [Minify HTML] schema.org data not minifiedThanks for the quick response! It would be a nice feature, if possible.
Forum: Plugins
In reply to: [Splide Carousel Block] Pause/Play buttonSo fast! Works as expected. Many thanks! A helpful future improvement would be some hooks to allow re-ordering of control and carousel elements. Wouldn’t need to be gui controls. Sometimes tabbing first to a pause button is preferred (or some other arrangement). Thanks again.
- This reply was modified 3 years, 3 months ago by eSaner.
Shield is using Twig 1.42.2, Slider by Supsystic is Twig 1.33.2.
Forum: Fixing WordPress
In reply to: Logo not changing sizeThe easiest place to modify CSS will probably be in the Customizer (from WP admin: Appearance > Customize). There is a place there to add CSS to your site. Modifying your theme files is not recommended because a theme update could overwrite your changes. If you prefer to make your CSS changes in a file, you should create a child theme.
Forum: Fixing WordPress
In reply to: vertical scrollbar removalI do not see a vertical scrollbar (chrome and firefox); only a horizontal scrollbar.
Forum: Fixing WordPress
In reply to: Logo not changing sizeYour theme contains the following css, which limits the height of your logo to 32px.
header.main .hbox .logo img { width: auto; height: 32px; }I would first recommend cropping your logo file as close as possible to the visual content. The extra blank space in the image file above and below the visual content is partly why it is currently displaying so small. If it’s still too small after cropping it, then some additional css tweaks may be necessary.
Forum: Plugins
In reply to: [Footnotes Made Easy] Server issuesDeleting and reinstalling with wp-cli did not work for me. I had to do it from WP admin, then it worked.
Yeah I see that it checks for versions older than 4.1, but the site is on 4.9.4.
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] TIME TO LOOK FOR ANOTHER PLUGIN@nuvopoint is correct. This should be noted in plugin documentation.
I had this same problem. I believe the issue is with https-rules-helper.php lines 15. Using ABSPATH will return the wrong directory for the .htaccess file if your install looks like this (/root):
/wp/ (core files)
/wp-content/ (plugins, themes, uploads)
/index.php
/wp-config.php
/.htaccessForum: Plugins
In reply to: [Menu Item Visibility Control] WordPress 4.3So fast! Thanks! Would be great if you could take over this plugin.
Just to clarify, this worked for me when the closing bracket for that IF statement goes after the IF and ELSEIF statements that immediately follow it.
Forum: Plugins
In reply to: [Menu Item Visibility Control] WordPress 4.3Thanks, Ryan. I just installed your updated version of the plugin and it works, but I get the following error when I add a menu item to menu:
Notice: Undefined index: menu-item-visibility in /var/www/wordpress/wp-content/plugins/menu-item-visibility-control/init.php on line 79