Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3121766
like count
Closed

Comments

  • pukalani started the conversation

    Hello. When duplicate posts with Yoast Duplicate Post plugin or some other plugins, the "heart mark" like counts are also duplicated and I cannot find how to reset this count.  Would you tell me how to reset the like count??  

  •  2,488
    PenciDesign replied

    Hi,

    Please install the Code Snippet plugin, then create a new snippet with the following content:

    function pcremove_custom_fields_filter( $meta_excludelist ) {
        // Merges the defaults array with our own array of custom fields.
        return array_merge( $meta_excludelist, [ '_post_like_count' ] );
    }
    add_filter( 'duplicate_post_excludelist_filter', 'pcremove_custom_fields_filter' );

    Regards,
    PenciDesign.

  • pukalani replied

    that worked perfectlly !!! thank you for your quick reply and great info!