mitchell360
Forum Replies Created
-
Forum: Plugins
In reply to: [wpMandrill] ManDrill and WoocommerceHere is the issue that we have. WordPress standard emails (password reset, etc.) are plain-text-ish with /n/r code. They look better when we check “Replace all line feeds (“\n”) by
in the message body”Woocommerce sends nice HTML. They look worse when we check “Replace all line feeds (“\n”) by
in the message body”What is your recommendation to address this either/or condition?
Forum: Plugins
In reply to: [User Role Editor] PHP Error and FixPerhaps my old user-role-editor.php was stuck in cache? At any rate, I just confirmed that, indeed, you are correct.
Forum: Plugins
In reply to: [Custom Field Suite] Visual Editor Forced?Thanks for the quick response. Made the fix.
Forum: Plugins
In reply to: [WordPress Social Login] Change to address root relative URLsNot a plugin. There are a number if ways to strip the http://www.yourdomain.com from all URLs in wordpress which makes it easier to have development, testing and production environments.
There are some plugins. I wrote my own code.
Regardless, when one does this, all wordpress API calls that normally return http://www.yourdomain.com/rest/of/URL return /rest/of/url
This is great 99 percent of the time. Just not when you are trying to get a url for external systems…such as social auth redirection and endpoints.
Forum: Plugins
In reply to: [Attachments] Class 'Attachments' not foundI think that last fix will do the trick … glad we got this resolved!
Forum: Plugins
In reply to: [Attachments] Class 'Attachments' not foundEdit works … but getting the attachments was still broken. Seems to be a null check in the get_attachments function.
Here is the fix (line 970-ish in class.attachments.php)
function get_attachments( $instance = '', $post_id = null ) { global $post; if (is_null($post_id)) { if( is_null( $post_id ) && is_object( $post ) && isset( $post->ID ) ) { $post_id = $post->ID; } elseif( isset( $_GET['post'] ) ) { $post_id = intval( $_GET['post'] ); } else { // no post ID, nothing to do... return; } }Forum: Plugins
In reply to: [Attachments] Class 'Attachments' not foundIndeed. I am stepping through the code as well. Hopefully we can zero in on it tonight…though my remote xdebug absolutely HATES working with PHP classes.
Forum: Plugins
In reply to: [Attachments] Class 'Attachments' not foundI think that I will stick with legacy mode for now. Once you get rid of the equals sign, and thus enter “modern” mode, there are other issues.
For example, the “attach” section of the post edit form does not seem to actually attach anything to the post.
Forum: Plugins
In reply to: [Attachments] Class 'Attachments' not foundThere may be some other issues. I’m getting some odd results using the Attachments class vs. using the legacy code.
Legacy code works fine.
new Attachments does not.
Forum: Plugins
In reply to: [Attachments] Class 'Attachments' not foundJust stepped through code. The plugin checks for
version_compare( $wp_version, '3.5', '<=' )Get rid of the equal sign…
Forum: Plugins
In reply to: [Attachments] Class 'Attachments' not foundNo. Just found and installed this awesome plugin a few minutes ago (Post 3.5 upgrade and post Attachments 3.0)
Forum: Plugins
In reply to: [Attachments] Class 'Attachments' not foundI upgraded to 3.5m but the new Attachments (‘attachments’) does not work. is there an include that we should do?
Something else that may be important to the solution.
My DNS settings
A Records
- @ points to rackspace IP (98.129.229.64)
CNAMES
- www points to @
- directory points to @
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Theme subdirectories not uploading to CDNBy the way, when I add the directory to “custom files,” it works just fine.
In other word, here is what I added:
wp-content/themes/clean-home/img/*And now everything is great. I was assuming that all subdirectories were uploaded by default.
Thanks for a great plugin.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Theme subdirectories not uploading to CDNJust sent it in. Thanks for your responsiveness.