neha
Forum Replies Created
-
Forum: Plugins
In reply to: [Import any XML, CSV or Excel File to WordPress] import as draftsokfound it…awesome…
Forum: Plugins
In reply to: [Import any XML, CSV or Excel File to WordPress] import as draftsu mean under manage import settings?
i mean they are empty in the email i recieve using the plugin
pascal i modified the code tobelow but now when i recieve the mail the $fromemail and $name parts are empty…why dont they show up?
<form> <input type="name" id="inputName" placeholder="Name"> <input type="name" id="inputEmail" placeholder="Email"> <button type="submit">SUBMIT</button> </form> [email protected]; $name=$_POST['inputname']; $fromemail=$_POST['inputemail']; $headers= 'From: '.$fromemail . "\r\n" . 'Reply-To: '.$fromemail; if(isset($_POST['submit'])) { wp_mail($toemail,$name,"working",$headers); }
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] log postlinkswhen i see the meta key in snapFB it has like huge para s:378:”a:1:{i:0;a:13:{s:4:”doFB”;s:1:”1″;s:9:”time….there’s no meta with just the link….is there any other key where it stores the direct link?
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] log postlinksunder which key is it stored…i an unable to find for twitter /facebook and googleplus can’t find it.
Forum: Plugins
In reply to: [Date and Time Picker Field] unable to get difference between timeplus when i echo the date2 it shows wrong date and time…not the one is set
Forum: Plugins
In reply to: [Date and Time Picker Field] unable to get difference between timeeven if i convert it to time using strtotime it doesn’t work….how do i get it to calculate the difference in time betweem date1 and date2
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] autopost not working automaticallyi set Use WP Cron to Schedule autoposts
Do not autopost more than one post per network every 3 mins
Randomize posting time ±2 minutesstill the custom field is empty and it doesn’t post anything
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] autopost not working automaticallyi did set it with cron do delay post by 2 mins…but it still doesn’t post thts the problem…though the field is present in the post after publish
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] autopost not working automaticallywp all import does this
1. Activate WordPress save_post hook
2. Attach custom fields to post
3. Activate WP All Import pmxi_saved_post hookso how do i get SNAP plugin so that it activate on pmxi_saved_post.
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] autopost not working automaticallyis there anyway i can hook it so that it crons on add_action(‘pmxi_saved_post’,’update_customfields’); instead of publish immediately.
plz note ‘pmxi_saved_post’ is a wp all import hook to publish posts via importing xml or csv file.
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] autopost not working automaticallyplz not it s
add_action(‘pmxi_saved_post’,’update_customfields’); and not add_action(‘save_post’,’update_customfields’);
SNAP triggers before the custom field is updated even if i use cron setting..it does take it into account and publishes emptydata immediately
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] autopost not working automaticallyok
for some reason the the snap gets triggered before the custom field is updated and hence doesn’t post the custom field to the social media e.g
function update_customfields($post_id)
{
$status = get_field(‘status’,$post_id);
update_post_meta($post_id,’social’,$status);
}add_action(‘save_post’,’update_customfields’);
in snap i have the output set as %TITLE is %CF-status% , then the title is printed but status is always empty on the social media. for some reason, the SNAP triggers before the custom field is updated hence its always empty …how to get it to trigger after post’s custom field is updated.
i did that …it does nothing