Title: aaroneight's Replies | WordPress.org

---

# aaroneight

  [  ](https://wordpress.org/support/users/aaroneight/)

 *   [Profile](https://wordpress.org/support/users/aaroneight/)
 *   [Topics Started](https://wordpress.org/support/users/aaroneight/topics/)
 *   [Replies Created](https://wordpress.org/support/users/aaroneight/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/aaroneight/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/aaroneight/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/aaroneight/engagements/)
 *   [Favorites](https://wordpress.org/support/users/aaroneight/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 15 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[wpMandrill] Schedule Emails – How to?](https://wordpress.org/support/topic/schedule-emails-how-to/)
 *  [aaroneight](https://wordpress.org/support/users/aaroneight/)
 * (@aaroneight)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/schedule-emails-how-to/#post-6616058)
 * 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 results
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[wpMandrill] Schedule Emails – How to?](https://wordpress.org/support/topic/schedule-emails-how-to/)
 *  [aaroneight](https://wordpress.org/support/users/aaroneight/)
 * (@aaroneight)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/schedule-emails-how-to/#post-6616007)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[wpMandrill] Schedule Emails – How to?](https://wordpress.org/support/topic/schedule-emails-how-to/)
 *  [aaroneight](https://wordpress.org/support/users/aaroneight/)
 * (@aaroneight)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/schedule-emails-how-to/#post-6616006)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Theme My Login] Theme My Login 6.4 Release Candidate 1](https://wordpress.org/support/topic/theme-my-login-64-release-candidate-1/)
 *  [aaroneight](https://wordpress.org/support/users/aaroneight/)
 * (@aaroneight)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/theme-my-login-64-release-candidate-1/#post-6541976)
 * Thanks! Question. Does this also include the register with email functionality
   you mentioned in [this post](https://wordpress.org/support/topic/registration-email-address-instead-of-username)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Googlebot accesses files CSS and JS.](https://wordpress.org/support/topic/googlebot-accesses-files-css-and-js/)
 *  [aaroneight](https://wordpress.org/support/users/aaroneight/)
 * (@aaroneight)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/googlebot-accesses-files-css-and-js/#post-6374451)
 * Also having the same issue. I’ve not touched anything.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ACF: Field Selector] Using as a subfield within a repeater?](https://wordpress.org/support/topic/using-as-a-subfield-within-a-repeater/)
 *  Thread Starter [aaroneight](https://wordpress.org/support/users/aaroneight/)
 * (@aaroneight)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/using-as-a-subfield-within-a-repeater/#post-6146764)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Popular Posts] Generic post sorting using post views](https://wordpress.org/support/topic/generic-post-sorting-using-post-views/)
 *  [aaroneight](https://wordpress.org/support/users/aaroneight/)
 * (@aaroneight)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/generic-post-sorting-using-post-views/#post-5831870)
 * This 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!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Envira Gallery - Image Photo Gallery, Albums, Video Gallery, Slideshows & More] Images don't load (spinning wheel) and JS Error](https://wordpress.org/support/topic/images-dont-load-spinning-wheel-and-js-error/)
 *  [aaroneight](https://wordpress.org/support/users/aaroneight/)
 * (@aaroneight)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/images-dont-load-spinning-wheel-and-js-error/#post-5787600)
 * I too am getting this exact same error. Spinning ajax loader and:
 * “Uncaught TypeError: Cannot read property ‘call’ of undefined”
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Picturefill.WP] Picturefill with ACF for banner](https://wordpress.org/support/topic/picturefill-with-acf-for-banner/)
 *  [aaroneight](https://wordpress.org/support/users/aaroneight/)
 * (@aaroneight)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/picturefill-with-acf-for-banner/#post-5220992)
 * I”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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Responsify WP] Retina](https://wordpress.org/support/topic/retina-2/)
 *  [aaroneight](https://wordpress.org/support/users/aaroneight/)
 * (@aaroneight)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/retina-2/#post-5317368)
 * Just wanted to see if there was any plans for adding retina support in the future.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Social Login] 500 internal server error when redirecting](https://wordpress.org/support/topic/500-internal-server-error-when-redirecting/)
 *  Thread Starter [aaroneight](https://wordpress.org/support/users/aaroneight/)
 * (@aaroneight)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/500-internal-server-error-when-redirecting/#post-5430369)
 * Wpengine 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Social Login] 500 internal server error when redirecting](https://wordpress.org/support/topic/500-internal-server-error-when-redirecting/)
 *  Thread Starter [aaroneight](https://wordpress.org/support/users/aaroneight/)
 * (@aaroneight)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/500-internal-server-error-when-redirecting/#post-5430363)
 * Miled,
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Co-Authors Plus] get_coauthors() doesn't work properly outside the loop](https://wordpress.org/support/topic/get_coauthors-doesnt-work-properly-outside-the-loop/)
 *  [aaroneight](https://wordpress.org/support/users/aaroneight/)
 * (@aaroneight)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/get_coauthors-doesnt-work-properly-outside-the-loop/#post-3963101)
 * Experiencing this same issue. Did you find a solution?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Blog Copier] [Plugin: Blog Copier] Replicate the "base" network site](https://wordpress.org/support/topic/plugin-blog-copier-replicate-the-base-network-site/)
 *  [aaroneight](https://wordpress.org/support/users/aaroneight/)
 * (@aaroneight)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-blog-copier-replicate-the-base-network-site/#post-2677975)
 * also wondering this. I have now only 1 blog in the network, and want to create
   sub blogs based on main blog.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Pages buttons not displayed in front menu after LightWord theme v2.0.0.6 update](https://wordpress.org/support/topic/pages-buttons-not-displayed-in-front-menu-after-2006-update/)
 *  [aaroneight](https://wordpress.org/support/users/aaroneight/)
 * (@aaroneight)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/pages-buttons-not-displayed-in-front-menu-after-2006-update/#post-1846683)
 * you need to go into appearance –> menu and then create a menu in order for the
   new navigation to display

Viewing 15 replies - 1 through 15 (of 15 total)