• Resolved sebalsky

    (@sebalsky)


    hi! i wanted to know if the contents of popups get picked up by search engines? will the text be crawled? how does this work for JS modals? is there anything i can do to help the SEO process? thanks, great simple plugin!

Viewing 15 replies - 1 through 15 (of 21 total)
  • Hello,

    Plugin created with custom post type so if you are using any SEO related plugin, you can set the SEO related setting during creating a popup.

    Thread Starter sebalsky

    (@sebalsky)

    thank you, so it will be picked up by a sitemap and robot?
    should i check “include posts” in my SEO plugin!

    Hello,

    Post type is not public in the free version so can not achieve sitemap and robot for SEO. BUT you can other setting (metabox) with any SEO related plugin. In the pro version you can set custom post type public and can also achieve links for sitemap and robot

    Thread Starter sebalsky

    (@sebalsky)

    ok, i will upgrade! the easiest way. do i need to choose a specific setting then?

    Hello,

    We will provide you some filter where you can make custom post type public.

    Thread Starter sebalsky

    (@sebalsky)

    ok, i upgraded! how can i make sure my popups are kept and used for the pro version? i guess uninstalling the free version deletes them?

    cool! lemme see them filters ??

    • This reply was modified 6 years, 6 months ago by sebalsky.

    Hello,

    Please login to our website and create a support ticket.

    Hello,

    You can use following code under your theme function.php file

    function paoc_pro_modify_post_type_args( $post_args ) {
    	
    	$post_args['public'] = true;
    	$post_args['query_var'] = true;
    	$post_args['rewrite'] = array( 
            							'slug'       => 'popup', // name of your url slug
            							'with_front' => false
        							);
    
    	return $post_args;
    }
    add_filter( 'paoc_pro_registered_post_type_args', 'paoc_pro_modify_post_type_args' );

    Please deactivate the FREE version and delete. Once done upload and activate the Pro version. Do not worry about your data. That will be safe ??

    Thread Starter sebalsky

    (@sebalsky)

    thank you!

    i found a bug btw:
    in the free version the “Loader” worked fine. now i have to disable it to make the popup show, otherwise the website freezes.

    Hello,

    ?? Can you please share your website link with loader true. I need to checkout the issue.

    You can also create a support ticket on our website under ticket section.

    Thread Starter sebalsky

    (@sebalsky)

    https://sebastianleitner.com
    if you click on the 5-star ratings image it has loader “true”. all others have it to “false” (e.g. “biography” or “impressum” a little bit more down under the reviews button”

    Thread Starter sebalsky

    (@sebalsky)

    ok, for some weird reason it works now. it did not before!
    all popups set to “true” for the loader did not show. i switched all of them to false, and now i seem to have the choice to use both. how come? cache issue?

    Thread Starter sebalsky

    (@sebalsky)

    p.s. for the functions code: do i need to put in any information because it says “name of your url slug”?

    May be cache issue ??
    If you report this issue again, please let us know.
    Please share your rating and review if you like our plugin and support ??

    Do not worry about that. Just copy and paste the code in your theme function.php file.

    Slug means : https://sebastianleitner.com/popup/popupname….

Viewing 15 replies - 1 through 15 (of 21 total)
  • The topic ‘SEO question’ is closed to new replies.