Jan Koester
Forum Replies Created
-
Forum: Plugins
In reply to: [RecipePress Reloaded] How to allow visitors to add recipies?This is not possible and will not be possible in the future. I consider recipes to be a type of posts and you also don’t allow your visitors to write blog posts.
So I’m sorry you will need to look for another recipe plugin for your purpose.
Forum: Plugins
In reply to: [RecipePress Reloaded] Customizing StyleYou can create your own layout if you like. Unfortunately I didn’t find the time to document this feature.
Create a subfolderrpr_layoutsin your themes directory and copy one of the layout folders from rpr to there. You can adjust the layout to your needs. It should then appear as a local layout in the appearance section of the settings page.If you like you can also submit your layout to be included in future releases.
Forum: Plugins
In reply to: [RecipePress Reloaded] Some observations & suggestionsIt’s an option in release 0.7.10. Have a look at the meta data settings page.
I’ve decided to leave the default to no separator. I don’t want to break installations that don’t want to make use of the feature. So you will have to enable it manually.
Fixed in release 0.7.10
Forum: Plugins
In reply to: [RecipePress Reloaded] Dutch translationIncluded in 0.7.10.
Thanks for your work.
Forum: Plugins
In reply to: [RecipePress Reloaded] How to display nutritional information?Just wrote a little howto on that: http://tech.cbjck.de/wp-plugins/rpr/documentation/users-documentation/use-nutritional-information-on-your-recipes/
Please note that in the current version 0.7.9 nutritional information will only be displayed if all fields are given. Release 0.7.10 will change this. I plan to release it this week.
Forum: Plugins
In reply to: [RecipePress Reloaded] Some observations & suggestionsFunny thing: there used to be brackets around the ingredient comment. I removed them after my wife complained. So I guess I will create another option for that …
Forum: Plugins
In reply to: [RecipePress Reloaded] Can't edit optionsDon’t worry. I know your situation just too well. I’ve just had two weeks holidays and some time to work a little on the plugin. The next weeks will again be very busy with work.
Forum: Plugins
In reply to: [RecipePress Reloaded] Can't edit optionsAny news on your problem?
Forum: Plugins
In reply to: [RecipePress Reloaded] Backwards compatibility?You could try adding the function add_taxonomy to the file rpr_migration.php. I guess I’ve moved it to rpr_taxonomies at some time.
However, I don’t have an old database so I can’t test it. If you provide your database file by email to admin@cbjck.de I’ll be happy to test the migration procedure.Kind regards
Janpublic function add_taxonomy($name, $singular, $slug, $hierarchical, $edit_tag_name) { $editing = false; if( strlen($edit_tag_name) > 0 ) { $editing = true; } if( !$editing && taxonomy_exists( strtolower($singular) ) ) { die( 'This taxonomy already exists.' ); } if( strlen($name) > 1 && strlen($singular) > 1 ) { $taxonomies = get_option('rpr_taxonomies', array()); $name_lower = strtolower($name); $singular_lower = strtolower($singular); $tag_name = $singular_lower; if( $editing ) { $tag_name = $edit_tag_name; } $taxonomies[$tag_name] = array( 'labels' => array( 'name' => $name, 'singular_name' => $singular, 'search_items' => sprintf( __( 'Search %s', $this->pluginName ), $name ), 'popular_items' => sprintf( __( 'Popular %s', $this->pluginName ), $name ), 'all_items' => sprintf( __( 'All %s', $this->pluginName ), $name ), 'edit_item' => sprintf( __( 'Edit %s', $this->pluginName ), $singular ), 'update_item' => sprintf( __( 'Update %s', $this->pluginName ), $singular ), 'add_new_item' => sprintf( __( 'Add New %s', $this->pluginName ), $singular ), 'new_item_name' => sprintf( __( 'New %s Name', $this->pluginName ), $singular ), 'separate_items_with_commas' => sprintf( __( 'Separate %s with commas', $this->pluginName ), $name_lower ), 'add_or_remove_items' => sprintf( __( 'Add or remove %s', $this->pluginName ), $name_lower ), 'choose_from_most_used' => sprintf( __( 'Choose from the most used %s', $this->pluginName ), $name_lower ), 'not_found' => sprintf( __( 'No %s found.', $this->pluginName ), $name_lower ), 'menu_name' => $name ), 'show_ui' => true, 'show_tagcloud' => true, 'query_var' => true, 'hierarchical' => $hierarchical, 'rewrite' => array( 'slug' => $slug, 'hierarchical' => $hierarchical ) ); update_option('rpr_taxonomies', $taxonomies); $this->taxonomies=$taxonomies; return true; } }Forum: Plugins
In reply to: [RecipePress Reloaded] Some observations & suggestions#1. Something is really wrong there. The first description seems to be part of the headline when looking at the source code. Please ask the creator of your theme why he has decided to put the description into the title at
templates/post/single.phplines 11-16. For my understanding of HTML this is really wrong!#2. Nothing really to worry about. Yoast’s great plugin tries to analyze your posts’ content and give you advice on how to optimize for search engines. This works very well for normal posts which store their content in a singe database field. This field is being analyzed by the SEO plugin.
Recipes however a pretty complex. The description is stored in the ‘normal’ content field (and therefore being analyzed by the SEO plugin), ingredients are stored as taxonomies, ingredient-recipe relations, instructions and notes are stored in seperate field as post meta data. All these fields are not visible to the SEO plugin as they are put together by the layout files on display.
Fortunately this has no impact on search engine behaviour as they will crawl the output as your users are seeing them.
The only problem is that the SEO plugin can’t help you on optimization.#3. Image alignment is something I’m still not really happy about. I’ve put it on the list for the next release.
However this is a difficult task, as sizes depend on the theme you are using.I hope I could help you a bit.
Forum: Plugins
In reply to: [RecipePress Reloaded] Can't edit optionsI was a bit surprised to see that allinkl indeed does not offer any error log at all. However its is possible to create a logfile within your webspace as described ie here: http://blog.joergboesche.de/serverphp-config-php-error-handling-via-htaccess
Without an error message I won’t be able to sort out the problem.
Forum: Plugins
In reply to: [RecipePress Reloaded] Can't edit optionsQuite a lot. Options allow you to fine tune the appearance, rename, deactivate or delete taxonomies, create your own taxonomies just to name the important features.
Could you please tell me:
– the webserver and version
– the version of PHP
– the version of mySQL
– the operating system
you are using.
And please look into your web servers error log if there are any errors that might be related to the options page.Forum: Plugins
In reply to: [RecipePress Reloaded] Can't edit optionsThe problem sound a bit weird to me. I’ve never seen such a problem and not even heard of it.
Your .htaccess seems to be alright.
The options page should be at [Your URL]/wp-admin/edit.php?post_type=rpr_recipe&page=_options so the link seems to be fine. In the frontend I have the same link like you but it works for me.
I have no idea why this does not work for you.
Forum: Plugins
In reply to: [RecipePress Reloaded] Backwards compatibility?Thanks for reporting. I will look into this as soon as possible. However I probably won’t be able to do so before the weekend.