Why does WP allow duplicate pages with the same name?

I think I found the issue. It looks WPML, the translation plugin, makes a duplicate page for every translated version of a page. So we had multiples of a few pages that were translated into various languages. Sidenote: WPML stopped working a couple months ago and none of their fixes have worked yet. So no … Read more

Someone is copying my site in real time

It is possible to use another site’s RSS feed to create content on a site. See this plugin. If you go to Settings > Reading (/wp-admin/options-reading.php) you could try and remove the Full Text from the post feed.

force http canonical tag on https pages

You can change it using following code, add it in your theme function.php or in plugin. remove_action ( ‘wp_head’ , ‘rel_canonical’ ) ; add_action ( ‘wp_head’ , ‘my_rel_canonical’ ) ; function my_rel_canonical () { ob_start () ; rel_canonical () ; $rel_content = ob_get_contents () ; ob_end_clean () ; echo str_replace ( “https:” , “http:” , … Read more