ziflin
Forum Replies Created
-
This is not resolved. I’m still getting this error message. It refuses to actually save the API key and Secret key on the Mailjet Settings page. I have tested sending through the address I’ve specified previously (not with this plugin) and that has all worked properly using my api/secret key.
Forum: Plugins
In reply to: [Simple Wp Sitemap] No Longer Seems to Include Pages!Yup, that’s the code I’m using now and so far it works great despite it not being the top answer on Stack Exchange. Thanks!
Forum: Plugins
In reply to: [Simple Wp Sitemap] No Longer Seems to Include Pages!Nothing to see here…
The missing pages was caused by a snippet of code that was suggested to use for removing “Pages” from showing in search results. This apparently broke the plugin’s ability to find Pages. Hopefully this helps anyone that runs into a similar issue.
This was the problematic code:
function remove_pages_from_search() { global $wp_post_types; $wp_post_types['page']->exclude_from_search = true; } add_action('init', 'remove_pages_from_search');
Forum: Plugins
In reply to: [Simple Wp Sitemap] No Longer Seems to Include Pages!Actually, I no longer seem to be able to get it to work with v1.1.1. I’m able to add custom pages, but it doesn’t seem to be adding the existing published Pages that I have on my website.
Forum: Fixing WordPress
In reply to: Post editor page scolling when clicking and typingI think I tracked it down to a bad “height:100%;” in the css that was applied to html & body.
Forum: Fixing WordPress
In reply to: Post editor page scolling when clicking and typingDid you have any luck figuring this out? I am having the same problem and it appears to be from using a custom ‘editor-style.css’ to style the editor. I can’t figure out what css is causing this to happen though.