Matt Robinson
Forum Replies Created
-
Forum: Plugins
In reply to: [XPoster - Share to Bluesky and Mastodon] Array to String error in adminThanks @joedolson, it looks like the code is updated already in you GitHub repository, someone else logged the same issue:
https://github.com/joedolson/wp-to-twitter/issues/9Another glitch, in
core/menu.php
there is a functionwptouch_show_menu()
. The closing tag should be</ul>
but thewp_kses()
allowed html defined at this stage doesn’t include theul
tag so it is removed.I’ve also noticed that
foundation_inline_styles()
useswp_kses()
to escape and sanitise the CSS.While this is a sensible security protection, it is resulting in CSS selectors being escaped incorrectly. For example:
.wptouch-menu .menu-tree > li
Becomes
.wptouch-menu .menu-tree > li
Thanks for confirming. I had noticed I no longer needed to make my edits. I hope my code snippet helped.
See the “Contributors” section in the right column on this page:
Subscribe2 is no longer my plugin, hasn’t been since 2014. And I’ve move away from WordPress now. I cannot continue to support code that I have not developed in years and don’t currently use.
I hope you get a reply from the current developer.
Forum: Plugins
In reply to: [Subscribe2 - Form, Email Subscribers & Newsletters] Full HTML EmailsI don’t think this is possible with the free version of Subscribe2 but there is a paid fork of the code that can do this.
Forum: Plugins
In reply to: [Broken Link Checker] Type Attributes@wpmudev-support2 / Kasia
That’s good to know, thanks for the rapid reply.
Forum: Plugins
In reply to: [Gutenberg] Roman numerals for ordered listsProbably the easiest way is to add a custom list name to the list block – perhaps something like
roman-list
and then add the CSS to change the list style for that class to your theme.roman-list { list-style: upper-roman; }
I think you need to go to All In One SEO -> General Settings and then the Advanced tab.
Where it says “Post Type Columns”, uncheck the box and then individually selected the post types you need SEO for.
Forum: Developing with WordPress
In reply to: How can I remove the “Register” link on the login page?In the WordPress admin area, go to Settings > General. In there you’ll find Membership section and a checkbox that says “Anyone can register” – simply uncheck that and save. The option to register should then be removed.
Forum: Fixing WordPress
In reply to: Static page with link to posts?I am no longer involved in the development of this plugin. It has has 3 owners since I developed the code. I, until recently, used to provide support but this is something I have now also stepped back from.
If you cannot edit
functions.php
you may be able to create a plugin with the code quoted above – that would achieve the same outcome.Forum: Everything else WordPress
In reply to: Same name (slug and textdomain) for plugin and themeIn theory it should work okay as the translations will be pulled from:
WP_LANG_DIR . '/themes/'
andWP_LANG_DIR . '/plugins/'
But in practice I’d strongly advise against this as it will likely give you support headaches if your translations don’t work or you mess up the plugin and it’s all easily avoided but choosing a non-conflicting slug and text domain.
Forum: Plugins
In reply to: [Pepipost] Mail Not SentWhat you’ve posted above is just account information to assist in narrowing down the error, but the error is not there.
If you are using Pepipost their site states you get 24/7 support so you will probably be better off raising an issue with them if you are paying for a service and not getting it.