Jan Koester
Forum Replies Created
-
Forum: Plugins
In reply to: [RecipePress Reloaded] recipes in rssGood news: it’s really easy to implement this. So it will be in the next release.
If your impatient: try the development version (trunk) from svn. But be warned, this is an instable version!
Forum: Plugins
In reply to: [RecipePress Reloaded] recipes in rssThis feature is currently not supported by RecipePress reloaded. I’ll put it on the feature wish list but can’t promise to implement this soon.
Forum: Plugins
In reply to: [RecipePress Reloaded] Recipe "Notes" content text bold?My mistake.
Edit /layouts/rpr_default/recipe.php and complete the <h3></h3>-Tag around ‘Notes’ in line 100.
I’m sorry!
Forum: Plugins
In reply to: [RecipePress Reloaded] How to Export Recipes?Thanks for the explanation and the praise. I’ll keep making the plugin batter and I’m happy for for ideas and feature requests. However development will take some time. And time is currently the most limited thing in my life.
Forum: Plugins
In reply to: [RecipePress Reloaded] How to Export Recipes?I’m sorry the plugin doesn’t fit your needs.
Exporting is currently not possible and not on the development roadmap. So you can either create your own export script or you have to do it manually.
Thanks for your recommendations. I’ll consider that for the next release.
Forum: Plugins
In reply to: [RecipePress Reloaded] Lots of errors in error logHi xprt007,
I’m sorry to tell you are the only one I know of having these problems. I’m still not able to reproduce these errors.
You could try to export all your data and create a local LAMP/MAMP/XAMP test site. Then try
– disabling all other plugins to exclude any interference
– roll back to RPR release 0.7.4.1 to check if the problem does not exist in the older versionPlease also tell me your exact configuration (maybe write me a mail) so I can try again to reproduce.
Kind regards
JanForum: Plugins
In reply to: [RecipePress Reloaded] Lots of errors in error logPlease change line 155 in php/template_tags.php to
$icon = '<i class="fa fa-flag" title="' . $tax->labels->name . '"></i> ';
That should do the trick.Regards
JanForum: Plugins
In reply to: [RecipePress Reloaded] Lots of errors in error logI’m not sure yet. Might be related. Please tell me which layout you are using: rpr_default or rpr_2column.
I’ll look into that asap. Right now I don’t have the time.Forum: Plugins
In reply to: [RecipePress Reloaded] Lots of errors in error logCould you please try to disable icons just to come closer to the reason. Somehow the icon-tags are wrong. Maybe I can see clearer without icons.
May be a local problem for Mesocolumn which does not only show “Archive” but Archive for …, which in this “recipe” is somehow not extracted, but just => “Archive for rpr_recipe – “
This is because the theme is using the (internal) identifier of the post type not it’s display name. Please ask the theme developer to change that.
Forum: Plugins
In reply to: [RecipePress Reloaded] Lots of errors in error logThat change of code should stop the error messages in the log.
The other problem is still a myth to me. Have you touched layouts/rpr_default/excerpt.php for any reason? If so please make sure it is in the original state.
Forum: Plugins
In reply to: [RecipePress Reloaded] Lots of errors in error logAs it seems to do magic on other site you might want to try this: Edit php/helper/admin_menu_helper.php lines 236 and following to match
if ( file_exists($dirname)){ if ($handle = opendir( $dirname )) { while (false !== ($file = readdir($handle))) { if( $file !='.' && $file !='..' && $file != '.svn' ) { if( file_exists($dirname . $file . '/settings.php') ){ include_once( $dirname . $file . '/settings.php' ); } } } } }That’s right. Please add the outer
if ( file_exists($dirname)){ ... }to get rid of the warning.
I can’t tell you why your Umlaute are corrupt. Both my testing system and my personal blog are running in German so I am sure the plugin works as expected. All my Umlaute are still there. Please make sure there is no other problem on your system.
Could you provide a link for me to check?
About the warning: This is not really to worry about. If it annoys you edit php/helper/admin_menu_helper.php lines 236 to match
if ( file_exists($dirname)){ if ($handle = opendir( $dirname )) { while (false !== ($file = readdir($handle))) { if( $file !='.' && $file !='..' && $file != '.svn' ) { if( file_exists($dirname . $file . '/settings.php') ){ include_once( $dirname . $file . '/settings.php' ); } } } } }Forum: Plugins
In reply to: [RecipePress Reloaded] Lots of errors in error logSomethings seems to be screwed up on your site.
As the problem does only appear for excerpt and not for complete recipes I’m almost sure the problem is not caused by my plugin. To display the categories and other metadata for recipes the same function is used for excerpt and complete recipes. So it should output the same. But it doesn’t. Instead some random HTML code seems to be inserted for a CSS class name.I can’t reproduce this on my testing system.
Forum: Plugins
In reply to: [RecipePress Reloaded] Lots of errors in error logYou’ve found a nasty typo. Somewhere a
</i>is missing. The<i>-Tag is used to introduce the icons. I’ll look for the culprit and tell you the workaround.Regards
Jan