Title: alpha1beta's Replies | WordPress.org

---

# alpha1beta

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/alpha1beta/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/alpha1beta/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Groups 404 Redirect] Trackking page requestrs](https://wordpress.org/support/topic/trackking-page-requestrs/)
 *  [alpha1beta](https://wordpress.org/support/users/alpha1beta/)
 * (@alpha1beta)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/trackking-page-requestrs/#post-6147978)
 * Look around lines 280 to 300 in groups-404-redirect.php
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SendGrid] Send to contact lists](https://wordpress.org/support/topic/send-to-contact-lists/)
 *  [alpha1beta](https://wordpress.org/support/users/alpha1beta/)
 * (@alpha1beta)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/send-to-contact-lists/#post-6859253)
 * Hi abh1shek, I’m not part of the sendgrid team but It doesn’t appear that you
   can do that, the marketing apis aren’t included in this the last time I looked.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Awesome Support - WordPress HelpDesk & Support Plugin] Conflict with Gravity Forms](https://wordpress.org/support/topic/conflict-with-gravity-forms-23/)
 *  Thread Starter [alpha1beta](https://wordpress.org/support/users/alpha1beta/)
 * (@alpha1beta)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/conflict-with-gravity-forms-23/#post-6785119)
 * Fresh installs from the plugin repo, 3.2.9
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[wpMandrill] Wpmandrill – subbacount](https://wordpress.org/support/topic/wpmandrill-subbacount/)
 *  [alpha1beta](https://wordpress.org/support/users/alpha1beta/)
 * (@alpha1beta)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/wpmandrill-subbacount/#post-4587437)
 * [@doverlord](https://wordpress.org/support/users/doverlord/) MC_Will’s reply 
   above has all the info you need.
    [https://wordpress.org/support/topic/wpmandrill-subbacount?replies=5#post-5205788](https://wordpress.org/support/topic/wpmandrill-subbacount?replies=5#post-5205788)
 *     ```
       function addSubaccount($message) {
           $subaccount_id = getSubaccount();
           $message['subaccount'] = 'abc123';
           return $message;
       }
       add_filter('mandrill_payload', 'addSubaccount');
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[wpMandrill] Wpmandrill – subbacount](https://wordpress.org/support/topic/wpmandrill-subbacount/)
 *  [alpha1beta](https://wordpress.org/support/users/alpha1beta/)
 * (@alpha1beta)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/wpmandrill-subbacount/#post-4587408)
 * Can this be done inside the settings in the general tags area?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] Get Click Statictics](https://wordpress.org/support/topic/get-click-statictics/)
 *  Thread Starter [alpha1beta](https://wordpress.org/support/users/alpha1beta/)
 * (@alpha1beta)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/get-click-statictics/#post-4564442)
 * That’s exactly the quirky piece of info I was looking for! Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] Looking to Override Jetpack Photon](https://wordpress.org/support/topic/looking-to-override-jetpack-photon/)
 *  Thread Starter [alpha1beta](https://wordpress.org/support/users/alpha1beta/)
 * (@alpha1beta)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/looking-to-override-jetpack-photon/#post-4399558)
 * I managed to solve the problem, upon further inspection of photon, I found a 
   filter and pulled this..
 *     ```
       add_filter('jetpack_photon_override_image_downsize', 'remove_jetpack_image_downsize');
       $imgsize = image_downsize($thumbnail_id, $as);
       remove_filter('jetpack_photon_override_image_downsize', 'remove_jetpack_image_downsize');
       ```
   
 * with the following function to support it.
 *     ```
       function remove_jetpack_image_downsize(){
       return true;
       }
       ```
   
 * For the result of, it uses the local file to fetch the image sizes, and then 
   uses jetpack for hosting of the image. This lets us now change the layout based
   on the image size, while still using Photon’s CDN for hosting.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SendGrid] Lot of Errors when WP_DEBUG is true](https://wordpress.org/support/topic/lot-of-errors-when-wp_debug-is-true/)
 *  Thread Starter [alpha1beta](https://wordpress.org/support/users/alpha1beta/)
 * (@alpha1beta)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/lot-of-errors-when-wp_debug-is-true/#post-4342345)
 * Actually while talking a look, you have 3 DEFINE statements, where the term being
   defined is not in quotes. just a single quote around them will fix almost all
   those errors.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Co-Authors Plus] How to assign a guest editor using only code](https://wordpress.org/support/topic/how-to-assign-a-guest-editor-using-only-code/)
 *  Thread Starter [alpha1beta](https://wordpress.org/support/users/alpha1beta/)
 * (@alpha1beta)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/how-to-assign-a-guest-editor-using-only-code/#post-4027080)
 * This is a complex process of creating the co-author as a post and then a term
   inside ‘author’ post type, and then adding the term to the post and the taxonomy
   object to the term. Don’t try this at home.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Submitted Posts – Enable Users to Submit Posts from the Front End] Adding extra post fields](https://wordpress.org/support/topic/adding-extra-post-fields/)
 *  [alpha1beta](https://wordpress.org/support/users/alpha1beta/)
 * (@alpha1beta)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/adding-extra-post-fields/#post-4121677)
 * I have a custom forked version of this plugin, that has extra fields and works
   with Co-Authors-Plus.
 * I’m pushing the code to github right now:[https://github.com/alpha1/User-Submitted-Co-Authored-Posts](https://github.com/alpha1/User-Submitted-Co-Authored-Posts)
 * Take a look into functions:
    usp_createPublicSubmission usp_checkForPublicSubmission(
   those are for handling a submission) usp_render_form is for adding fields(show/
   hide options). in usp_render_form i have commented my code with <!–Added–>
 * I would love to help the author improve this plugin and create hooks to help 
   this kind of development, but either way I’ll be happy to help more with this.
   If the author is not interested, i’ll provide my own updates and a real fork.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Co-Authors Plus] Additional Contact/Social info](https://wordpress.org/support/topic/additional-contactsocial-info/)
 *  [alpha1beta](https://wordpress.org/support/users/alpha1beta/)
 * (@alpha1beta)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/additional-contactsocial-info/#post-3832830)
 * nope. add that to function.php in your theme instead. the add_filter part is 
   a hook. try it! it’ll stay as lobg as your theme does. you could also build your
   own plugin to hold it, to make it theme independent.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Co-Authors Plus] Additional Contact/Social info](https://wordpress.org/support/topic/additional-contactsocial-info/)
 *  [alpha1beta](https://wordpress.org/support/users/alpha1beta/)
 * (@alpha1beta)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/additional-contactsocial-info/#post-3832828)
 * You can do it yourself with the code provided here:
 * [http://vip.wordpress.com/documentation/add-guest-bylines-to-your-content-with-co-authors-plus/](http://vip.wordpress.com/documentation/add-guest-bylines-to-your-content-with-co-authors-plus/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Submitted Posts – Enable Users to Submit Posts from the Front End] Plugin does support multiple emails](https://wordpress.org/support/topic/plugin-does-support-multiple-emails/)
 *  Thread Starter [alpha1beta](https://wordpress.org/support/users/alpha1beta/)
 * (@alpha1beta)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/plugin-does-support-multiple-emails/#post-4025543)
 * Not to pollute this thread but..
 * Do you have a github for this project?
    I’m looking to help/commit some code,
   that would make this plugin work with Co-Authors-Plus (An Automattic plugin),
   adding each user as a guest-author when co-Authors-plus is also installed. I 
   have this working, just need to clean up my code a bit.
 * Also, I’d like to help/commit code to build a better email, with at least a Edit
   link to the Post.
 * Lastly,I’m looking into building more fields into the submission form (Email 
   and description). That work with the Co-Authors-Plus, or fallback to custom fields.
 * Let me know if your interested,
    Thanks, Michael
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook] Social Publisher does not work with scheduled posts](https://wordpress.org/support/topic/social-publisher-does-not-work-with-scheduled-posts/)
 *  [alpha1beta](https://wordpress.org/support/users/alpha1beta/)
 * (@alpha1beta)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/social-publisher-does-not-work-with-scheduled-posts/page/2/#post-3493306)
 * Yep. Same.
    They do say that it is supported and works. [https://github.com/facebook/wordpress/issues/224](https://github.com/facebook/wordpress/issues/224)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook] Social Publisher : select what post type to publish on FB Timeline](https://wordpress.org/support/topic/social-publisher-select-what-post-type-to-publish-on-fb-timeline/)
 *  [alpha1beta](https://wordpress.org/support/users/alpha1beta/)
 * (@alpha1beta)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/social-publisher-select-what-post-type-to-publish-on-fb-timeline/#post-3996915)
 * There really should be a list, instead of checking that the post type is public.
   Co-authors-Plus breaks and posts non-public links. The Metaboxes cannot be removed
   either.
 * Please redo how post types are handles, let the user choose.

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

1 [2](https://wordpress.org/support/users/alpha1beta/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/alpha1beta/replies/page/2/?output_format=md)