can you help review CCCP (Conditional Cookie Content Post) and help to create a block?

I just need for one site with a front en video with sound to remove the video after two view I achieved to make it with cookie to show/hide a class

can be seen a demo at https://accedinfo.com/2021/12/28/wordpress-masquer-ou-afficher-un-bloc-apres-x-vues/

and this is the used code it works with post or blog but need to adjust everything inside

Maybe somebody can use this to create CCCP = Conditional Cookie Content Post bloc ? (and no, i'm not an old cccp citizen)

/*  elarifr - Set a cookie and count x displayed page to hide or show or reset content     */
/* https://ccedinfo.com/2021/12/28/wordpress-masquer-ou-afficher-un-bloc-apres-x-vues/     */
/* Add this snippet in function.php of your child theme                                    */
/* https://wordpress.stackexchange.com/questions/285140/hide-show-content-based-on-cookie  */
/* https://wordpress.stackexchange.com/questions/21752/setting-custom-cookies-in-wordpress */
/* Remove cookie from cache  Lightspeed /wp-admin/admin.php?page=litespeed-cache#excludes  */

add_action('init', 'my_set_cookie_show_count');
function my_set_cookie_show_count(){
    // set cookie expiration time
    // https://www.php.net/manual/fr/function.strtotime.php
    // https://www.php.net/manual/fr/datetime.formats.relative.php select +1 day week month year or value 
    $expiry = strtotime('+1 week');
    if(!isset($_COOKIE[cookie_show_count])) {
        setcookie('cookie_show_count',0,$expiry, COOKIEPATH, COOKIE_DOMAIN);
    }
}

/* snippet to add to hide/show content on selected page */
/* Shortcode [cookie_show_count_hide] [/cookie_show_count_hide] */
/* Should be updated to pass arg from short code instead of function */
// Set page/post ID where you want the cookie counter to be updated after each view
// You can change code to display element every time cookie exceed on number of view
// Would be nice to add a toggle to reset show / hide
function cookie_show_count_hide() {
    $cookie_show_hide_page_id = array( 2 );     // Set page ID where you want the cookie counter to be updated after each view
    $cookie_show_hide_post_id = array( 951 );   // Set a Page_Id number 2,42 , a post_title 'Contact' or post_name (slug) 'about-us', 'contact', 'management'
                            // array( 2, 42, 'Contact', 'about-us',.... )
    $cookie_show_before_hide=2; // Set number of allowed view before show/hide element
    $cookie_show_before_reset=6;    // Set and number to reset counter
    $cookie_hide_element ='';   // Set style to hide div or css element - should even be a js script but not tested
    $cookie_show_element ='';   // Set style to show div or css element
                    // Use the value under SHOW / HIDE / SELECT
    // SHOW
    //accedinfo
    $cookie_hide_element ='style pre.wp-block-code{display:none!important};/style';
    $cookie_hide_element.='div class=wp-block-pullquoteVous avez déja vu le bloc ' . intval($_COOKIE[cookie_show_count]) . ' fois...  De retour dans ';
    $cookie_hide_element.=$cookie_show_before_reset - intval($_COOKIE[cookie_show_count]) . 'vues/div';
    // HIDE
    $cookie_show_element.='div class=wp-block-pullquoteVous avez déja vu la vidéo ' . intval($_COOKIE[cookie_show_count]) . ' fois/div';
    // SELECT
    // TODO check both page and / or post
    // TODO for a page use is_page(), for a news use is_single()
    if ( is_single($cookie_show_hide_post_id) || is_page( $cookie_show_hide_page_id ) ) {
        if (isset($_COOKIE[cookie_show_count]) ) {
            // update cookie count
            $show_count=intval($_COOKIE[cookie_show_count])+1;
            setcookie('cookie_show_count',$show_count,'' , COOKIEPATH, COOKIE_DOMAIN);
        }
        // $cookie_show_hide .= _COOKIE[cookie_show_count=.intval($_COOKIE[cookie_show_count]);
        if (intval($_COOKIE[cookie_show_count]) = $cookie_show_before_hide ) {
            $cookie_show_hide = $cookie_hide_element;
            // $cookie_show_hide .=  I WILL HIDE DIV;
        } else {
            $cookie_show_hide = $cookie_show_element;
            // $cookie_show_hide .=  I WILL SHOW DIV;
        }
        //reset count if  10
        if (intval($_COOKIE[cookie_show_count]) = $cookie_show_before_reset ) {setcookie('cookie_show_count',0,'' , COOKIEPATH, COOKIE_DOMAIN);}
        // Copyright Banner you're not allowed to modify the content or remove display of $cookie_show_hide_element 
        $cookie_show_hide_element = \n!-- Copyright Banner you're not allowed to modify or remove display of cookie_show_hide_element \n; 
        $cookie_show_hide_element.= https://accedinfo.com/2021/12/28/wordpress-masquer-ou-afficher-un-bloc-apres-x-vues \n;
        $cookie_show_hide_element.= Use shortcode [cookie_show_count_hide] [/cookie_show_count_hide] --\n;
        $cookie_show_hide_element.= $cookie_show_hide;
        $cookie_show_hide_element.= \n!-- Copyright Banner you're not allowed to modify or remove display of cookie_show_hide_element  --\n;
        //For Debug
        //$cookie_show_hide .= page id. is_page( $cookie_show_hide_page_id ). is_single( $cookie_show_hide_page_id );
        return $cookie_show_hide_element;
    }
}
add_shortcode( 'cookie_show_count_hide', 'cookie_show_count_hide' );

Topic content-restriction cookies conditional-content Wordpress

Category Web

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.