Pixelein
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Category Permalink] URGENT: Plugins created multiple permalinksRikay, wordpress itself or the seo plugin of yoast already fixed this by inserting just a link in the head.
If you find you don’t have such a link in your <head> already, you can make one yourself by doing something like the following (not perfected yet):Place this code in your functions.php:
function wp_cat_permalink_multi_link_SEO_fix() { global $post; $cat_id = get_post_meta( $post->ID , '_category_permalink', true ); if (is_single()) { if ( $cat_id != null ) { //do nothing } else { $cat = get_the_category(); echo '<link rel="canonical" href="'.get_site_url.'/'.$cat->name.'/'.$post->post_name.'" />'; } } }
You can then use this in the head:
<?php wp_cat_permalink_multi_link_SEO_fix(); ?>
Good luck!
Forum: Plugins
In reply to: [WP Category Permalink] URGENT: Plugins created multiple permalinksEagerly awaiting a resolution for this because this is indeed a very harmful situation.
The SEO thing to do would be to insert a
<link rel="canonical" href="dynamicly-insert-original-link-here" />
in the head of all the non-first-choice-pages. But saying that… i wouldn’t know where to start (as of yet).Looking into this myself and hoping the writer of the plugin beats me to the punch ??
Forum: Plugins
In reply to: [Knews Multilingual Newsletters] Header image missing in sent newsletterCheers Creverter! You fixed it!
I can see the cat and the tracking is activated again.I owe you one! Thx!
Forum: Plugins
In reply to: [Knews Multilingual Newsletters] Header image missing in sent newsletterThanks so much! That must be it. I never would of thought of checking the settings seeing it worked just fine before. Something must have changed with all the updates flying around.
I’m sad to say that despite me changing the htaccess I didn’t get to see the cat this time (I have in the past) so I’m disabling the function.
Thanks again for the help. Wouldn’t have found it without you!
A client of mine just reported the same problem.
So far, I’ve googled around and can’t find any reasoning or solution. All I can offer is a workaround. Check the browser you use.
Firefox doesn’t give this error, IE 10 does.I hope someone can find a real solution.
Forum: Fixing WordPress
In reply to: Not getting output on template after Ajax requestNo, but the proper content still isn’t being shown.
The content the alert shows is the content I need placed on the page.Forum: Fixing WordPress
In reply to: Not getting output on template after Ajax requestNope, no difference.