Forum Replies Created

Viewing 15 replies - 166 through 180 (of 262 total)
  • Plugin Author Jan Koester

    (@dasmaeh)

    I just thought it could break some functionality inside RecipePress reloaded. As it obiviously doesn’t I’ve just release this fix in version 0.7.4.

    Plugin Author Jan Koester

    (@dasmaeh)

    The problem you describe is actually a problem of mesoclumn.
    To display the featured category blocks on the homepage they create custom queries. These queries only look for standard posts. These queries are defined in lib/templates/home-feat-cat.php

    If you replace the default my_query1 by eg

    $my_query1 = new WP_Query(array(
    		'cat'=> $featcat1,
    		'showposts' => $featcat1_count,
    		'post_type' => array(
    				'post',
    				'rpr_recipe'
    				),
    		 ));

    both recipes and posts will be queried and displayed. Please ask the developer of mesocolumn to make the use of custom post types in thes queries possible. The easiest way might be to add an options field for this.

    Plugin Author Jan Koester

    (@dasmaeh)

    OK, bug confirmed and (hopefully) found and resolved.

    Could you please edit the file php/rpr_core.php in the recipepress-reloaded plugin folder and change line 317 from
    if( !is_page() && ! is_attachment() ){
    to
    if( is_home() || is_category() || is_tag() ){

    This should be it. However this might introduce other problems I couldn’t find so far.

    Plugin Author Jan Koester

    (@dasmaeh)

    Just installed bbpress and found the following:

    – recipes are accessible as you described
    – /forums shows the forums created. I did not further check wether posting etc works.

    I kindly ask you to wait for release 0.7.3 and recheck.

    Plugin Author Jan Koester

    (@dasmaeh)

    If you prefer the way drupal does handle content why don’t you use drupal?

    WordPress is by philosophy very different from drupal and NOT a CMS but more of a post management software. Posts are predefinded structures for content and quite inflexible.

    However it should be possible to what you reuested: I have now activated media buttons for description and notes so should be able to achieve what you want to. You can also use the editor to create another 2nd level headingf like “Gallery” between description and ingredient if you like.

    To get popup images you will need a lightbox plugin. Then activate “Clickable Images” in the RPR settings and there you go.

    Plugin Author Jan Koester

    (@dasmaeh)

    Well ok, then I know now that MesoColumn is causing the problem by handling excerpts differently. I’ll try to investigate this closer once I can find the time.

    Plugin Author Jan Koester

    (@dasmaeh)

    I can understand what you try to achieve, However there are two problems:
    – where should a video/gallery/… of a recipe in general be shown? Before the ingredients? At the end? For me this does not really belong to a recipe and I find it difficult to decide.
    – I have only about half an hour per week time to work on the plugin. So I do the things I consider necessary and I need for my site first. As far as I understood the documentation, adding media buttons to the two editor fields of a recipe should not be two difficult and could be done in release 0.7.4. But I can’t promise to release it this year.

    Plugin Author Jan Koester

    (@dasmaeh)

    Recipes do not have a “content” field like posts and I don’t see any reason to include a picture or video into the description (aka excerpt) of a recipe. That’s why there is no media button.

    Plugin Author Jan Koester

    (@dasmaeh)

    I think the wordpress log should be enough.

    You you please try to deactivate the php-code-for-posts plugin as it seems to cause the error while processing the recipe excerpts.

    Plugin Author Jan Koester

    (@dasmaeh)

    I don’t really get your problem. I’ve installed the MesoCoulumn theme on my developing system and it works fine.

    So there are two possibilities:
    either I’ve (accidentally) fixed the problem in the upcoming release 0.7.3. Then you only have to wait a few days until this version will be released.

    The other possibility is that there is a bug affecting only your version of PHP. In this cas I will need the output of the error log of your server.

    Plugin Author Jan Koester

    (@dasmaeh)

    Hi,

    it is intended that get_the_excerpt() does not only display the description text of the recipe but also other relevemt inmformation such as course, cuisine, preparation time and so on.

    If you want to display description only you should be able to use $post[‘excerpt’];

    I’ll put the template tag get_the_description() on the feature wishlist.

    Plugin Author Jan Koester

    (@dasmaeh)

    Hi Lyn,

    The behaviour you describe is really strange and I can’t explain it. I tried to reproduce it on my testing system but it worked es expected. When I click on ‘edit’ on the recipes overview page the recipe edit page opens also for a recipe embedded i a ‘normal’ post. So I’ can’t really tell you what the problem is. Are you sure the recipe ID is right?

    An easier way to obtain the recipe id is to use the recipe overview in wp-admin, hover the recipe you want to embed. In most browsers the link address will be displayed at the bottom and you can take the id from there.

    I’m currently working on a button for the wp editor to make using shortcodes a lot easier.

    Regards Jan

    Plugin Author Jan Koester

    (@dasmaeh)

    Does your template appear in the settings section ‘appearance’?
    You will need to select it there.

    Plugin Author Jan Koester

    (@dasmaeh)

    Within your theme you can create a file rpr_recipe.php that will take care of displaying single posts. You cann use all template tags that are also used in the files in the templates folder of the plugin.
    However if also want to change the appearence of excerpts you will either have to create an own template folder within recipepress-reloaded or do a lot of work on the archive pages of your template. Please not that changes in the plugin folder will get lost with each update. I currently have no better solution however. If you have an idea, let me know.

    Plugin Author Jan Koester

    (@dasmaeh)

    I’m sorry there is no documentation yet.
    Please tell me what exactly you want to do. Then it’s easier to help you.

    I still hope to provide some documentation within this year but can’t promise anything. As I’m developing this plugin besides my real job I have only very limited time.

Viewing 15 replies - 166 through 180 (of 262 total)