Title: jdrick55's Replies | WordPress.org

---

# jdrick55

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dooodl] Help & Suggestions](https://wordpress.org/support/topic/help-suggestions-1/)
 *  Thread Starter [jdrick55](https://wordpress.org/support/users/jdrick55/)
 * (@jdrick55)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/help-suggestions-1/#post-6129513)
 * That would be fantastic, looking forward to the updates. Thank you
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Dashboard Widget & Dashboard Contact Form] ' adds / in front of it upon save](https://wordpress.org/support/topic/adds-in-front-of-it-upon-save/)
 *  Thread Starter [jdrick55](https://wordpress.org/support/users/jdrick55/)
 * (@jdrick55)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/adds-in-front-of-it-upon-save/#post-6794602)
 * Thank you much, i will update soon.
 * Suggestion, i would have been nice if i could email users from the contact for
   as well
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Posts To-Do List] General Stats](https://wordpress.org/support/topic/general-stats/)
 *  [jdrick55](https://wordpress.org/support/users/jdrick55/)
 * (@jdrick55)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/general-stats/#post-5988573)
 * Thank you much
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Posts To-Do List] General Stats](https://wordpress.org/support/topic/general-stats/)
 *  [jdrick55](https://wordpress.org/support/users/jdrick55/)
 * (@jdrick55)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/general-stats/#post-5988571)
 * Is there a way to remove the stats all together? they are a bit overwhelming 
   for some of my users
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Floating Banner Ad Rotator with Tracking] show on mobile & tablets only, not desktop](https://wordpress.org/support/topic/show-on-mobile-tablets-only-not-desktop/)
 *  Thread Starter [jdrick55](https://wordpress.org/support/users/jdrick55/)
 * (@jdrick55)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/show-on-mobile-tablets-only-not-desktop/#post-6563519)
 * thank you much, I will try it
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MemeOne] Use Meme also as featured image](https://wordpress.org/support/topic/use-meme-also-as-featured-image/)
 *  [jdrick55](https://wordpress.org/support/users/jdrick55/)
 * (@jdrick55)
 * [11 years ago](https://wordpress.org/support/topic/use-meme-also-as-featured-image/#post-5995053)
 * in case you guys still need this done, found something that can work:
 * 1. Install the “Set Featured Image” plugin by By Frank Bültge
    2. Via editor/
   cpanel, go to the file “/public_html/wp-content/plugins/memeone/memeone.php”.
   3. Under section “// Function to create a WordPress post with a given meme as
   content”, look for this line of code: `$wp_post_id = wp_insert_post($new_wp_post);`
   and replace it with:
 *     ```
       //add thumb
       // $filename should be the path to a file in the upload directory.
       $filename = ". $meme->meme_url$meme->meme_file_name.jpg";
   
       // The ID of the post this attachment is for.
       $parent_post_id = wp_insert_post($new_wp_post);
   
       // Check the type of file. We'll use this as the 'post_mime_type'.
       $filetype = wp_check_filetype( basename( $filename ), null );
   
       // Get the path to the upload directory.
       $wp_upload_dir = wp_upload_dir();
   
       // Prepare an array of post data for the attachment.
       $attachment = array(
       	'guid'           => $wp_upload_dir['url'] . '/' . basename( $filename ),
       	'post_mime_type' => $filetype['type'],
       	'post_title'     => preg_replace( '/\.[^.]+$/', '', basename( $filename ) ),
       	'post_content'   => '',
       	'post_status'    => 'inherit'
       );
   
       // Insert the attachment.
       $attach_id = wp_insert_attachment( $attachment, $filename, $parent_post_id );
   
       // Make sure that this file is included, as wp_generate_attachment_metadata() depends on it.
       require_once( ABSPATH . 'wp-admin/includes/image.php' );
   
       // Generate the metadata for the attachment, and update the database record.
       $attach_data = wp_generate_attachment_metadata( $attach_id, $filename );
       wp_update_attachment_metadata( $attach_id, $attach_data );
       //end thumb
       ```
   
 * 4. Save and you are done. Images should be set as featured upon publishing the
   post, not during the pending/draft process.
 * If you are using “Motivation Generator” By Stepan Stepasyuk, the steps are fairly
   similar:
 * 1. Install the “Set Featured Image” plugin by By Frank Bültge
    2. Via editor/
   cpanel, go to the file “/public_html/wp-content/plugins/motivation-generator/
   motivation-generator.php”. 3. Under section “// Function to create a WordPress
   post with a given poster as content”, look for this line of code: `$wp_post_id
   = wp_insert_post($new_wp_post);` and replace it with:
 *     ```
       //add thumb
       // $filename should be the path to a file in the upload directory.
       //$filename = "' . $poster->poster_url . $poster->poster_file_name . '.jpg";
       $filename = ". $poster->poster_url$poster->poster_file_name.jpg";
   
       // The ID of the post this attachment is for.
       $parent_post_id = wp_insert_post($new_wp_post);
   
       // Check the type of file. We'll use this as the 'post_mime_type'.
       $filetype = wp_check_filetype( basename( $filename ), null );
   
       // Get the path to the upload directory.
       $wp_upload_dir = wp_upload_dir();
   
       // Prepare an array of post data for the attachment.
       $attachment = array(
       	'guid'           => $wp_upload_dir['url'] . '/' . basename( $filename ),
       	'post_mime_type' => $filetype['type'],
       	'post_title'     => preg_replace( '/\.[^.]+$/', '', basename( $filename ) ),
       	'post_content'   => '',
       	'post_status'    => 'inherit'
       );
   
       // Insert the attachment.
       $attach_id = wp_insert_attachment( $attachment, $filename, $parent_post_id );
   
       // Make sure that this file is included, as wp_generate_attachment_metadata() depends on it.
       require_once( ABSPATH . 'wp-admin/includes/image.php' );
   
       // Generate the metadata for the attachment, and update the database record.
       $attach_data = wp_generate_attachment_metadata( $attach_id, $filename );
       wp_update_attachment_metadata( $attach_id, $attach_data );
       //end thumb
       ```
   
 * 4. Save and you are done. Images should be set as featured upon publishing the
   post, not during the pending/draft process. Good Luck
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Embeds for YouTube] button in editor](https://wordpress.org/support/topic/button-in-editor/)
 *  Thread Starter [jdrick55](https://wordpress.org/support/users/jdrick55/)
 * (@jdrick55)
 * [11 years ago](https://wordpress.org/support/topic/button-in-editor/#post-6381120)
 * Thank you much, i look foward to hear from you
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Embeds for YouTube] button in editor](https://wordpress.org/support/topic/button-in-editor/)
 *  Thread Starter [jdrick55](https://wordpress.org/support/users/jdrick55/)
 * (@jdrick55)
 * [11 years ago](https://wordpress.org/support/topic/button-in-editor/#post-6381031)
 * well actually, if i got edit a post via back end, its there, it works.. but I
   don’t allow users in the backend, so I installed the front-end publishing plugin,
   which shows an editor, but it the youtube button doesn’t show there. So I’m hoping
   you knew how to add it to that plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Border Loading Bar] buddypress](https://wordpress.org/support/topic/buddypress-83/)
 *  Thread Starter [jdrick55](https://wordpress.org/support/users/jdrick55/)
 * (@jdrick55)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/buddypress-83/#post-5580707)
 * Oh alright i understAnd. Please do let me know if it has been intergrated in 
   a future update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Border Loading Bar] buddypress](https://wordpress.org/support/topic/buddypress-83/)
 *  Thread Starter [jdrick55](https://wordpress.org/support/users/jdrick55/)
 * (@jdrick55)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/buddypress-83/#post-5580653)
 * Oh I see. I also have the plugin Bp Auto load by BpHelp, that loads the next 
   page of activities once you reach the bottom of the current page. Is there a 
   way by any chance for the Border Loading Bar to perhaps pick up every time that
   plugin is loading?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BuddyStream] How do you connect buddystream to facebook?](https://wordpress.org/support/topic/how-do-you-connect-buddystream-to-facebook/)
 *  [jdrick55](https://wordpress.org/support/users/jdrick55/)
 * (@jdrick55)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/how-do-you-connect-buddystream-to-facebook/#post-4472613)
 * I have sent an email a month ago, How can i please get the facebook feature?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BuddyPress Follow] privacy](https://wordpress.org/support/topic/privacy-13/)
 *  Thread Starter [jdrick55](https://wordpress.org/support/users/jdrick55/)
 * (@jdrick55)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/privacy-13/#post-4999314)
 * Apologies, didnt realize that status update privacy wasnt a buddypress thing.
   Its rtmedia that has it. Is there a way to combine the two by any chance?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Author Advertising Pro] Referral Page shows warnings](https://wordpress.org/support/topic/referral-page-shows-warnings/)
 *  [jdrick55](https://wordpress.org/support/users/jdrick55/)
 * (@jdrick55)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/referral-page-shows-warnings/#post-3542033)
 * Amministratore: 60 % <—- This is the % of the admin
    Editori: 5 % <———— Is this
   the % of the referral Upline?
 * Autori: 35 % <———— Is this the % of the post’s writer?
 * So $100 would be = $60admin, $5referral, $35author right?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD Post Notifications] setup](https://wordpress.org/support/topic/setup-6/)
 *  Thread Starter [jdrick55](https://wordpress.org/support/users/jdrick55/)
 * (@jdrick55)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/setup-6/#post-3807055)
 * I realize I needed Facebook AWD for the notifications to work. When i installed
   it, i got this error:
 * Fatal error: Call to undefined method Facebook::picture() in /home/content/29/
   11045529/html/wp-content/themes/MYINSTALLEDTHEME/header.php on line 420
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Videopack] jw player](https://wordpress.org/support/topic/jw-player-4/)
 *  Thread Starter [jdrick55](https://wordpress.org/support/users/jdrick55/)
 * (@jdrick55)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/jw-player-4/#post-3683847)
 * How did you get it installed

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

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