William Jackson
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: logging in using typekeyAs far as I can find, there is no way to use TypeKey with WordPress. It is definitely not built in, and I haven’t been able to find a plugin to add that support.
Forum: Installing WordPress
In reply to: Subscribe2 Confirmation E-mail Link ScrewyI’m new to the Subscribe2 plugin, but all the documentation I have read indicates that public subscribers only get text-only excerpt emails.
So to my knowledge, the answer is, “No.”
Forum: Installing WordPress
In reply to: Subscribe2 Confirmation E-mail Link ScrewyI had this problem, and I’m looking for the source of my answer. Meanwhile, this is the answer:
Find out the ID number of the page your subscription form is on. Go to Manage > Pages and the ID will be in the first column of the list.
Open up the plugin file, subscribe2.php, and go to line 43 (I’m using version 2.2.4). The line should look like this:
define('S2PAGE', '0');Replace the
0with the page ID of your subscription page. I’ll save you the trouble of looking; yours is262.Forum: Plugins
In reply to: Subscribe2 and Markdown not playing niceHA! I looked through the code of the Subscribe2 plugin and solved my problem.
Line 1500 of subscribe2.php contains the regular expression the plugin recognizes as the token to expand. That regex is:
|<p>(\n)*<!--subscribe2-->(\n)*</p>|All I had to do was type
<p><!--subscribe2--></p>in my page and it worked, with Markdown active.Apparently, Subscribe2 is expecting some text filter to add those
<p>tags before it gets a chance to do its thing.Forum: Plugins
In reply to: Subscribe2 and Markdown not playing niceMy page content (pre-publish) looks like this:
Some text.<!--subscribe2-->Some *more* text.The source code looks like this:
<p>Some text.</p><!--subscribe2--><p>Some <em>more</em> text.</p>That’s exactly what Markdown should do: leave HTML alone. It’s like the Subscribe2 plugin never gets a chance at this text.
How does one change the priority of plugins?
Forum: Plugins
In reply to: Subscribe2 and Markdown not playing niceThank you for those ideas! I think I found the plugin you were thinking of, Markup-Selecter . You can use it on pages as well as posts, but the Subscribe2 token still wasn’t expanding as it should.
I’m still looking into that text-replace solution.
Forum: Fixing WordPress
In reply to: no line breaks between links and link descriptionThis is definitely a problem. Why have the option of changing these values if they have no effect?