• Resolved Tim in Seattle

    (@theframeguy)


    Hello, I have two issues I’ve discovered in Nelio Popups 1.0.6. 1) The permalink for the first Nelio Popup I made on my website is: /?nelio_popup=auto-draft. I don’t see a way to change the “auto-draft” permalink to something more appropriate. 2) Since the Nelio Popup uses an iframe to show the nelio_popup custom post type, when using cookie management software like CookiePro, the CookiePro popup notice renders on the nelio_popup CPT and therefore within the Nelio Popup. I was able to hide the CookiePro popup notice with CSS I added to the Nelio Popups CPT, but I’m not sure that’s a solution most people could figure out. #onetrust-consent-sdk {display: none;}

Viewing 1 replies (of 1 total)
  • Plugin Author Antonio Villegas

    (@avillegasn)

    Thanks again for contacting us. Let me answer your questions:

    1) The permalink shouldn’t be something publicly visible. In fact, the View link that appears in the admin bar will be hidden in the next release (we missed it in the latest one). In addition to it, we included noindex in it because even though we need the permalink of the popup to show it inside the iframe, we treat it as something private (without a meaningful URL).

    2) If the CookiePro plugin is this one, they provide with the filter disable_cookiepro that you can use to disable the cookie notice in the Nelio Popup custom post type by using the following:

    add_filter( 'disable_cookiepro', function( $disable ) {
    	if ( is_singular( 'nelio_popup' ) ) {
    		return false;
    	};
    
    	return $disable;
    } );
Viewing 1 replies (of 1 total)
  • The topic ‘Editing popup permalink and CookiePro popup’ is closed to new replies.