Dennis Booker
Forum Replies Created
-
On the home page I get the following when I display page html “
<b>Warning</b>: md5_file(https://youngmemorial.org/wp-content/plugins/email-encoder-bundle/assets/js/custom.js): Failed to open stream: HTTP request failed! HTTP/1.1 406 Not Acceptable in <b>/home/youngm7/public_html/wp-content/plugins/email-encoder-bundle/src/Front/FrontEnqueue.php</b> on line <b>27</b><br /><br /><b>Warning</b>: md5_file(https://youngmemorial.org/wp-content/plugins/email-encoder-bundle/assets/css/style.css): Failed to open stream: HTTP request failed! HTTP/1.1 406 Not Acceptable in <b>/home/youngm7/public_html/wp-content/plugins/email-encoder-bundle/src/Front/FrontEnqueue.php</b> on line <b>40</b><br />Forum: Themes and Templates
In reply to: [Twenty Seventeen] Remove underline from linksIt is not an underline but rather a box-shadow, try
box-shadow:none !importantin custom css.Forum: Fixing WordPress
In reply to: The text of headers will automatically be added to HTML-anchorsFixed in WP 5.9.1. Github #38171
Forum: Fixing WordPress
In reply to: The text of headers will automatically be added to HTML-anchorsI’m seeing the exact same using 2017. I’ve run Health Check Troubleshooting mode and disabled all plugins and the problem remains. If you try to delete the anchor in either html or by the editor under block/advanced the anchor text is restored.
- This reply was modified 4 years, 3 months ago by Dennis Booker.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] How to prevent loading code for svg icons?After a lot of searching here’s what I did to deal with the svg-icons.svg code.
I edited a copy of svg-icons.svg to include only the icons relevant to the menu arrow icons and menu bar and placed file svg-icons-small.svg in \mychildtheme\assets\images folder. Then in the child theme functions.php added the following code..
// START Disable 2017 SVG Icons
function remove_parent_svg_icons()
{
remove_action(‘wp_footer’, ‘twentyseventeen_include_svg_icons’, 9999);
}
add_action(‘after_setup_theme’, ‘remove_parent_svg_icons’);
// END Disable 2017 SVG Icons
// START Enable modified SVG Icons file
function childtheme_include_svg_icons() {
// Define SVG sprite file.
$custom_svg_icons = get_theme_file_path( ‘/assets/images/svg-icons-small.svg’ );// If it exists, include it.
if ( file_exists( $custom_svg_icons ) ) {
require_once( $custom_svg_icons );
}
}
add_action( ‘wp_footer’, ‘childtheme_include_svg_icons’, 99999 );
// END Enable modified SVG Icons fileForum: Fixing WordPress
In reply to: thumbnail size not usedOK I figured it out. Thumbnail is shown in the block dialog but it has to be selected.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Need single column in twenty seventeen themeDid you look at the screen options drop down at the top of the page and then layout?
Forum: Plugins
In reply to: [Gutenberg] Gutenberg gallery image sizesYou can use the classic paragraph block and then add your gallery via the media icon. I’ve found no other way to keep thumbnails the same size.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Menu Items Are Opening in New Windows :(Megan,
Looking with chrome inspect the link for book-reviews menu item shows “data-wpel-link=”internal” target=”_blank”. The data-wpel-link seems to be used by a plugin WP-External-Links. Is it possible that plugin was installed at one time?
DennisForum: Themes and Templates
In reply to: [Twenty Twenty] Header Pictures for 2020 ThemeI have a localhost family site using Twenty Seventeen on WP 5.3.2 and have been using the “Unique Headers” plugin by Ryan Hellyer. It works well.
DennisForum: Plugins
In reply to: [Gutenberg] Gutenberg 7.5.0 breaks mobile viewRan into the same issue and found that “Modal Guten Block” not compatible with WP 5.3.2 and Guetenberg plug in 7.5. I guess I should not have tried since the plug in was last updated 6 months ago but this was on a test site.
Forum: Plugins
In reply to: [Firelight Lightbox] Flexbox gallery and data-fancybox attributePerfect, both methods work. Thank you and thanks again for this excellent plugin.
Regards,
Dennis BookerBryle,
Thanks that answer the question. Looks like I ned to upgrade to pro.
DennisLet me further clarify. The “problem” occurred on a localhost multi-site where I could remove the tables and now that option doesn’t appear. I tested the new version on a single, non-multisite, and the option was available to remove table(s) left by a deleted plugin. So the issue may be multi-site is not supported with the free version with the latest update.
Thanks and WP Optimize is a really nice piece of work.
dennisI should have listed that version is 2.3.3.
Thanks,
Dennis