Hello,
Just wanted to say a quick thank you for being our valued customer. We take all customer inquiries, requests, and comments seriously and do our best to help in whatever way possible.
Please reset the campaign settings first. If it doesn’t work, please mail at [email protected]
Provide screenshots of your campaign settings in your mail.
We value your business and look forward to serving you. Please write to us anytime if you need help with another request in the future.
Thanks
PluginEver
/**
* Trigger skip duplicate title campaigns
*
*
* @param $skip
* @param $title
*
* @return bool
* @since 1.2.0
*/
function wpcp_maybe_skip_duplicate_title( $skip, $title, $campaign_id ) {
if ( 'on' == wpcp_get_post_meta( $campaign_id, '_enable_duplicate_title' ) ) {
return false;
}
return wpcp_is_duplicate_title( $title );
}
add_filter( 'wpcp_skip_duplicate_title', 'wpcp_maybe_skip_duplicate_title', 10, 3 );
This seems to not work, the plugin makes duplicates even if the first story is already published
How to stop the plugin to post the same article like 1-2-3 or also 4 times the same ?!