Joshua Fredrickson
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Editor keeps adding styling automaticallyCan confirm. This has been happening for a while on multiple sites (all currently running 3.8.2 or higher). Editor randomly wraps certain text with:
<span style="line-height: 1.5em;"></span>I haven’t been able to track down when exactly it adds these tags, but I always paste plain text into the Text Editor and then switch to Visual to edit/format. When I switch back to Text to adjust something, I find the new
<span>tags added.Forum: Plugins
In reply to: [wpMandrill] plaintext emails converted to HTML remove newlinesOften the sites I work with send out a combination of plaintext and HTML emails, depending on the plugins installed or any added functionality.
When I use wpMandrill’s ‘Content’ option, linebreaks are added to both plaintext and HTML emails. This works great for plaintext emails but not for HTML (it adds an extra
<br>after every line break, including closing tags).Here’s a quick function I added to
functions.phpthat seems to have well so far on a variety of sites. Basically, just add a filter tomandrill_payloadthat applieswpautopto the content instead of using the ‘Content’ option in wpMandrill.function op_mandrill_payload($message) { // Add wpautop to message content $message['template']['content'][0]['content'] = wpautop($message['template']['content'][0]['content']); return $message; } add_filter('mandrill_payload', 'op_mandrill_payload');This adds line breaks when needed, but not after closing tags. The result is an nearly all-inclusive solution for both plaintext and HTML emails.
Forum: Plugins
In reply to: [AutoChimp] Version 2.11 error on registerHere’s a quick way to fix the ContentVipersVideoQuicktags fatal error:
Delete the ContentVipersVideoQuicktags.php file from the /wp-content/plugins/autochimp/plugins/ directory.
Viola. No more fatal error.
Forum: Plugins
In reply to: [AutoChimp] Version 2.11 error on registerSame thing:
Fatal error: Class 'ContentVipersVideoQuicktags' not found ...Running similar specs to jcontini’s.
Had to revert to 2.02.
+1
Reordering categories would be a significant improvement. Odd it’s not already available since reordering topics is already included.
Forum: Fixing WordPress
In reply to: WP-Members: no result when updating user custom fieldsSame for me. I can view but not edit additional fields in admin.
They work fine in the frontend user profile page.