aaroneight
Forum Replies Created
-
Forum: Plugins
In reply to: [wpMandrill] Schedule Emails – How to?haven’t tested this, but i’d do something like this:
$url = 'https://mandrillapp.com/api/1.0/messages/cancel-scheduled.json'; $key = 'YOUR API KEY'; $message_id; // this would be your message id from the previous call in my example above. $args = array( 'body' => array( 'key' => $key, 'id' => $message_id, ) ); $results = wp_remote_post( $url, $args ); $results = json_decode($results['body']); var_dump($results); // use this to debug or get resultsForum: Plugins
In reply to: [wpMandrill] Schedule Emails – How to?Also, if you need to cancel.. the return value for $sendmessage in my example above will give you a message ID for which you could use to cancel/reschedule via the Mandrill API
Forum: Plugins
In reply to: [wpMandrill] Schedule Emails – How to?Heya!
I was able to get it working with the following code:
$message = array( 'subject' => $subject, 'from_name' => $author_name, 'from_email' => $author_email, 'to' => $to, 'html' => $content, 'send_at' => '2015-10-06 23:30:00' ); $sendmessage = wpMandrill::sendEmail( $message );where send_at is the UTC time for when the message should be delivered
Forum: Plugins
In reply to: [Theme My Login] Theme My Login 6.4 Release Candidate 1Thanks! Question. Does this also include the register with email functionality you mentioned in this post
Also having the same issue. I’ve not touched anything.
Forum: Plugins
In reply to: [ACF: Field Selector] Using as a subfield within a repeater?No problem, and thanks both for investigating, and for writing this plugin! Let me know what you find out. For the time being, i’m using array_unique() to remove duplicates
Forum: Plugins
In reply to: [WP Popular Posts] Generic post sorting using post viewsThis is awesome. Thanks for sharing, Miguel.
Used this for custom query for an RSS feed to show feed the latest 10 popular WPP posts.
Thanks for sharing!
I too am getting this exact same error. Spinning ajax loader and:
“Uncaught TypeError: Cannot read property ‘call’ of undefined”
Forum: Plugins
In reply to: [Picturefill.WP] Picturefill with ACF for bannerI”ve had the same error. That error will go away if you specifiy a width/height for the img src defined in $image_output.
Forum: Plugins
In reply to: [Responsify WP] RetinaJust wanted to see if there was any plans for adding retina support in the future.
Forum: Plugins
In reply to: [WordPress Social Login] 500 internal server error when redirectingWpengine was able to fix it per your suggestion.
Just to add a further note, the two whitelisted pages have to be exactly these and not use regex on their whitelist.
wp-login.php
wp-content/plugins/wordpress-social-login/hybridauth/Forum: Plugins
In reply to: [WordPress Social Login] 500 internal server error when redirectingMiled,
I can’t tell you how amazing it is to get help within a day. Thank you!
I’ll reach out to wpengine now. Hopefully it does not resort to using the suggested workaround.
Thanks again.
Forum: Plugins
In reply to: [Co-Authors Plus] get_coauthors() doesn't work properly outside the loopExperiencing this same issue. Did you find a solution?
Forum: Plugins
In reply to: [Blog Copier] [Plugin: Blog Copier] Replicate the "base" network sitealso wondering this. I have now only 1 blog in the network, and want to create sub blogs based on main blog.
you need to go into appearance –> menu and then create a menu in order for the new navigation to display