Forum Replies Created
- AuthorPosts
There is probably something wrong with the file or zip you got.
postToGooglePlus.php has only 317 lines.
Gary
ParticipantThanks.
That worked.
Angel
ParticipantAny fix for this?
Pepe
ParticipantOk, and How I do this? I´m a beginner
Twitter will embedd the vide if you have the youtube link in your post There is not wat to force it.
Facebook will embedd the video if you make a shared post with video as your featured image.
Please go to the: https://www.nextscripts.com/mypage
Click “Forgot your password?” enter your email that you used to make an order – click the link in the email to create a new password and you will be able to get your activation key and download your products.
Please see the “Upgrade/Activation” instructions here: https://www.nextscripts.com/upgrade-to-pro-setup-install-social-networks-auto-poster-for-wordpress/
Pepe
ParticipantI´m asking about Facebook and Twitter. I want to post videos from Youtube.
Thank you for your attention.
Gary
ParticipantMy problem is different. I was going through hosting problems at the time of my purchase.
Basically, I can access my paypal email now , but I just need to have the download instructions resent to me as I missed the original.
It’s different for every social network. Which one you are asking about?
If featured image is not set at the time our plugin runs then of course it won’t get it. You can either set a delay (what you already did) or set featured image before publishing the post.
Please see the “Last” question here: https://www.nextscripts.com/faq/#last
Pepe
ParticipantCan you explain it please?
Pepe
ParticipantWhere is this configuration?
Dul
ParticipantJust realized I post in wrong forum.
Anyway, I managed to make it work by delaying my post by 30 seconds.
//Since we have issue with Next Scripts: Social Networks Auto Poster and our featured image
//Delay the post for 30 seconds to make the plugin see the featured post
$post_date_delayed = current_time('timestamp') + 30;// ADD THE FORM INPUT TO $new_post ARRAY
$new_post = array(
'post_title' => wp_strip_all_tags($title),
'post_content' => $comment,
'post_category' => $cat, // Usable for custom taxonomies too
'tags_input' => $tags,
'post_status' => 'future', // Choose: publish, pending, future, draft, etc.
'post_type' => 'post', //'post',page' or use a custom post type if you want to
'post_date' => date('Y-m-d H:i:s', $post_date_delayed),
);//SAVE THE POST
$pid = wp_insert_post($new_post);
Just in case someone have similar problem like me
- AuthorPosts
