alm
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Keyword Statistics] BUG ALERTNow the meta informations should stay even if you are using quick edit…
I’ll have to take a look at this… I didn’t ever use quick edit but it may drops and rewrites all metadata of a post or page by default.
Forum: Plugins
In reply to: [Plugin: Keyword Statistics] weird robots directives set for my homepage !?This means that if you check this (the option is titled don’t serve…) no metadata will be served anymore. Sorry! The description doesn’t fit to the caption. I’ll have to change the description of this option.
An automatic generation of keywords and description if there is none?! I thought you don’t want to use the plugin for generating metadata. I don’t think it is a good idea to create these meta informations automatically outside the process of content creation. There may are too many conflicts with other plugins. I already thought about a batch creation of meta informations for all posts they are missing. But I’ll have to think about it.
Forum: Plugins
In reply to: [Plugin: Keyword Statistics] Option to set description for homepage manuallyYou mean the description of the index-aggregation?! I’m planning to integrate this but it may take some time because I have to split the plugins configuration to make it a bit more clear.
Forum: Plugins
In reply to: [Plugin: Keyword Statistics] weird robots directives set for my homepage !?I’m planning individual settings of titles, descriptions and keywords for all content aggregations and sitewide predecessors and successors for all of them, which also can be combined with the ones of posts and pages. Sorry for the additional overhead… 🙂
You have to filter the keys instead. Don’t use the_meta but get_post_meta for the custom fields you need. See http://codex.wordpress.org/Function_Reference/get_post_meta for details. Something like that:
<ul class='post-meta'> <li><span class='post-meta-key'>keyname:</span> <?php echo get_post_meta(the_ID(), 'keyname', true) ?></li> <li>.....</li> </ul>You have to filter the keys instead. Don’t use the_meta but get_post_meta for the custom fields you need. See http://codex.wordpress.org/Function_Reference/get_post_meta for details. Something like that:
[code]
<ul class='post-meta'>- <span class='post-meta-key'>keyname:</span> <?php echo get_post_meta(the_ID(), 'keyname', true) ?>
- .....
[/code]
Forum: Plugins
In reply to: [Plugin: Keyword Statistics] weird robots directives set for my homepage !?You enter the description and keywords manually? Did you notice, that you can let the plugin set the keywords automatically? You also can set the description and a custom page title. What do you mean with overhead?
Forum: Plugins
In reply to: [Plugin: Keyword Statistics] Still experiencing Fatal Error 03/23/2010This should be fixed. PHP 4 had a problem with the object operator when used at the temporary result of a function call.
Forum: Plugins
In reply to: [Plugin: Keyword Statistics] weird robots directives set for my homepage !?I’m planning to make settings for robots optional. This way you can alternatively use robots.txt or a specific plugin managing robots. Most plugins do not use the content for generating keywords and you always have to set meta keys and description manually. This may ask too much of ordinary authors and makes writing content confusingly. Which SEO options should it handle?
Forum: Plugins
In reply to: [Plugin: Keyword Statistics] Still experiencing Fatal Error 03/23/2010Is your blog running on a server with PHP 4?
Forum: Plugins
In reply to: [Plugin: Keyword Statistics] How does this work with the thesis themeSorry, but I don’t know what this framework actually does. If it is serving meta informations – description, keywords, title, language and canonical – then these informations are embedded twice. By the time if you can’t switch off serving meta informations in thesis you should not use the plugin with it. I’m planning to make serving metadata optional but it will take a while – after that you can use the plugin with any SEO plugin and also with thesis.
I think they should not collide in other regards. The plugin is generating keywords and description and is setting everything automatically but you can set custom information (also for title) too. It does not use simple concatention of variables – for example by using ‘%postname% – %blogname%’ as page title. This you can also do within your template and it is running much faster. But for safety purposes you should make some tests in a local installation.
Forum: Plugins
In reply to: [Plugin: Keyword Statistics] Cool pluginFound and corrected the problem with the automatic generation of keyword statistics in HTML mode. (including the update-button)
Forum: Plugins
In reply to: [Plugin: Keyword Statistics] Cool pluginHi Matt,
thank you for your response.
I updated the paths to the javascript-files and made them relative to the admin directory. Now the files should always be found – if the directory structure of WordPress has not been changed – even if WP is not installed in root-directory.
I don’t get a javascript error in html mode but the plugin and the update-button does not work in this view… but i’ll find the problem soon.
The description should be generated automatically by default. But you need to write some text before the generation makes sense (and will appear).
Forum: Plugins
In reply to: [Plugin: Keyword Statistics] Fatal Error while ActivatingIt’s only a list with frequently used words who can not be used to classify the content of the text. You may also find those wordlists by searching after it. But i can’t check these lists if i don’t understand the words. As an example you can look at the file stopwords.js. There you will find the ones used by the plugin. You can never say which of those are used by search engines but you can change them easily by editing the stopword-list in that file… By the way: if you change the words listed in the array (e.g. en for the english stopword-list) you can change them into your wanted language. set the language to ‘en’ and your wordlist will be used. It’s not beautiful… but it should work!