Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)
  • Forum: Plugins
    In reply to: [Dooodl] Help & Suggestions
    Thread Starter jdrick55

    (@jdrick55)

    That would be fantastic, looking forward to the updates. Thank you

    Thread Starter jdrick55

    (@jdrick55)

    Thank you much, i will update soon.

    Suggestion, i would have been nice if i could email users from the contact for as well

    jdrick55

    (@jdrick55)

    Thank you much

    jdrick55

    (@jdrick55)

    Is there a way to remove the stats all together? they are a bit overwhelming for some of my users

    Thread Starter jdrick55

    (@jdrick55)

    thank you much, I will try it

    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

    Thread Starter jdrick55

    (@jdrick55)

    Thank you much, i look foward to hear from you

    Thread Starter jdrick55

    (@jdrick55)

    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.

    Thread Starter jdrick55

    (@jdrick55)

    Oh alright i understAnd. Please do let me know if it has been intergrated in a future update.

    Thread Starter jdrick55

    (@jdrick55)

    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?

    I have sent an email a month ago, How can i please get the facebook feature?

    Forum: Plugins
    In reply to: [BuddyPress Follow] privacy
    Thread Starter jdrick55

    (@jdrick55)

    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?

    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?

    Thread Starter jdrick55

    (@jdrick55)

    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
    In reply to: [Videopack] jw player
    Thread Starter jdrick55

    (@jdrick55)

    How did you get it installed

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