chrisguitarguy
Forum Replies Created
-
Forum: Plugins
In reply to: [SEO Auto Linker] [Plugin: SEO Auto Linker] Не работает!Could you post the settings you entered into the SEO Auto linker options page? I’ll test them!
Forum: Plugins
In reply to: [SEO Auto Linker] [Plugin: SEO Auto Linker] Не работает!Probably something to do with the language differences. I was not able to test with many other languages.
Forum: Plugins
In reply to: [SEO Auto Linker] [Plugin: SEO Auto Linker] Не работает!Try the latest version!
Forum: Plugins
In reply to: [SEO Auto Linker] [Plugin: SEO Auto Linker] Не работает!You’re going to need to be more specific about what doesn’t work.
Forum: Plugins
In reply to: Plugin: SEO Auto Linker] breaking images in posts with imagesJust tagged a new version that should fix that.
Forum: Plugins
In reply to: Plugin: SEO Auto Linker] breaking images in posts with imagesFixed in version 0.6.
I’m working on it. Don’t have a time line.
what images are breaking? Images with captions? Or all images?
It should be fixed, yes.
Forum: Plugins
In reply to: [SEO Auto Linker] SEO Auto Linker for custom fieldsIt’s very possible, but it’s not something that’s going to go into the plugin because it would very implementations specific.
But here’s a few ways you could do it. Where ever you use/echo out
get_post_meta
, run it through a filter:<?php echo apply_filters( 'add_seo_auto_linker', get_post_meta( $post->ID, 'testing', true) ); ?>
Then you can hook into that filter in functions.php and run the content through the auto linking filter:
<?php add_filter( 'add_seo_auto_linker', 'cd_wpforum_test' ); function cd_wpforum_test( $content ) { return pmgSeoAutoLinkerFront::content( $content ); }
I suspect this is because it filters the content after WordPress has replaced non-ascii characters with their Hex or HTML entity equivalents. The plugin doesn’t pattern match for those. I’ll look into it.
Can you tell me what theme you’re using?
Also a link to your site where the widgets are supposed to be appearing would be good.
thanks!
Forum: Plugins
In reply to: [SEO Auto Linker] [Plugin: SEO Auto Linker] Content Not DisplayedTry it with version 0.4 and let me know if that works.
Forum: Plugins
In reply to: [SEO Auto Linker] Content not displayedMadnil,
Thanks! The latest version doesn’t have the caching. Try it now and see if that helps. I was never able to reproduce the error, but the way caching was implemented, it makes sense that there were some issues.
Forum: Plugins
In reply to: [SEO Auto Linker] [Plugin: SEO Auto Linker] Multisite or Multiple BLogsIt stores options on a per site basis, so there’s no way to have a universal set of keywords. I’m not sure providing a universal keyword set would would be possible, but I’ll look into it.
Forum: Plugins
In reply to: [SEO Auto Linker] [Plugin: SEO Auto Linker] linking on index page?It’s only designed to work on single posts/pages. Is linking on the index page something you’d be interesting in having as a feature?