evan3168
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] EDD cart broke after enabling plug inBump to this. It is also happening to me and many others. You can see a similar thread over at that plugin’s support site here: https://easydigitaldownloads.com/support/topic/using-wordpress-https-messes-up-cart/
The plugin author’s recommended solution, for now, is to redirect to HTTPS at the server level which pretty much defeats the purpose of this plugin.
Would love if the WordPress HTTPS plugin author could take a look at this!
Forum: Plugins
In reply to: [wpMandrill] Trouble adding tags on mandrill payload functionAh nevermind, found a quick way to do it.
function dpg_mandrill_tag($message){ $newtags = array( "frankdougdog","arri-alexa" ); foreach( $newtags as $tag ) { $message['tags']['user'][] = $tag; } return $message; }P.S. Sorry for the barrage of messages 🙂
Forum: Plugins
In reply to: [wpMandrill] Trouble adding tags on mandrill payload functionHey Will gonna ask for your help just one more time… what would be the best way to pass an array of tags into the payload?
Forum: Plugins
In reply to: [wpMandrill] Trouble adding tags on mandrill payload functionAh beautiful! I saw that the user, general, and automatic tags were merged in the core plugin so I thought by the time they reached mandrill_payload it was all one array.
Your adjustment to my function works perfectly, thank you so much for the help!