• Resolved Mihai345

    (@mihai345)


    Hello, is a problema with duplicated articles. If the website in slowly this plugin makes like 2-3-4 copies of the same article. And the other problem is with the transients, if i don’t delete all the transients the articles does not appear on the website. What is the problem and how it can be solved?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author PluginEver

    (@pluginever)

    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

    Thread Starter Mihai345

    (@mihai345)

    /**
     * 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

    Thread Starter Mihai345

    (@mihai345)

    How to stop the plugin to post the same article like 1-2-3 or also 4 times the same ?!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Duplicated articles & Transients’ is closed to new replies.