Jan Koester
Forum Replies Created
-
Forum: Plugins
In reply to: [RecipePress Reloaded] Instructions won´t show upCould you please provide some more information. Did you create the recipe or is it a migrated one? Do the instructions show up in the backend after saving them?
Forum: Plugins
In reply to: [RecipePress Reloaded] Fatal error: Using $thisProblem1: Please give some more information. What did you do? Where should a picture apear?
Problem2: This indeed is a bug. I will fix it later today.
Forum: Networking WordPress
In reply to: Custom post type in multiste – posts not showing upMy mistake. The theme was also manipulating the query leading to this unwanted result.
Forum: Networking WordPress
In reply to: puttin domain name to a multisiteActually it’s not really difficult.
You will need the domain(s) pointing to the webspace is running at. Then install MPMU Domain Mapping and follow this tutorial.
No need for CNAME records.Never had any problems with that plugin.
Forum: Networking WordPress
In reply to: puttin domain name to a multisiteHave a look at the WPMU Domain Mapping Plugin.
This is what I use to host multiple domains on a wordpress multisite setup.Forum: Networking WordPress
In reply to: Custom post type in multiste – posts not showing upWP_DEBUG is giving me this:
Notice: Array to string conversion in /var/www/blogs/wp-admin/edit.php on line 225If I print this array, it even contains the wrong post type(s) post and recipe.
The error persists if I reduce the function of the plugin to just create the posttype:
register_post_type( 'rpr_recipe', array( 'labels' => array( 'name' => $name, 'singular_name' => $singular, 'add_new' => __( 'Add New', $this->pluginName ), 'add_new_item' => __( 'Add New', $this->pluginName ) . ' ' . $singular, 'edit' => __( 'Edit', $this->pluginName ), 'edit_item' => __( 'Edit', $this->pluginName ) . ' ' . $singular, 'new_item' => __( 'New', $this->pluginName ) . ' ' . $singular, 'view' => __( 'View', $this->pluginName ), 'view_item' => __( 'View', $this->pluginName ) . ' ' . $singular, 'search_items' => __( 'Search', $this->pluginName ) . ' ' . $name, 'not_found' => __( 'No', $this->pluginName ) . ' ' . $name . ' ' . __( 'found.', $this->pluginName ), 'not_found_in_trash' => __( 'No', $this->pluginName ) . ' ' . $name . ' ' . __( 'found in trash.', $this->pluginName ), 'parent' => __( 'Parent', $this->pluginName ) . ' ' . $singular, ), 'public' => true, 'menu_position' => 5, 'supports' => array( 'title', 'thumbnail', 'comments' ), 'taxonomies' => $taxonomies, 'menu_icon' => $this->pluginUrl . '/img/icon_16.png', 'has_archive' => true, 'rewrite' => array( 'slug' => $slug ) ) );Forum: Plugins
In reply to: [RecipePress Reloaded] Print issueCurrently I can’t offer any help as I’m completely recoding the plugin. You might try version 0.5, however proper printing is not yet coded.
Also please make a backup before updating!