digimat1
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Is there a way too clone an existing blog in multi site?Does anyone have any experience using this plugin? also is there a subscription service associated with it?
Forum: Fixing WordPress
In reply to: Custom Post Types Permalinks@micheal can you share your entire function.php file? I am having a similar problem but with multisite, would be greatly appreciated.
Forum: Networking WordPress
In reply to: Is there a way to Duplicate site includind database with MS?I still haven’t resolved this. If someone has a working example they could post or give some advice as to why the taxonomies aren’t showing up would be much appreciated.
Forum: Networking WordPress
In reply to: Main site rewrite not workingThis is the code I have at the top of my functions file…
Forum: Networking WordPress
In reply to: Is there a way to Duplicate site includind database with MS?Could having the main site reside on a subdomain cause an issue with sub domain network?
I.e franks.domain.com Two secondary sites under that johns.franks.domain.com?
Forum: Networking WordPress
In reply to: Custom metas don't work in multi-siteI have the same problem… custom taxonomies do not show up in after multi site is installed.
Forum: Networking WordPress
In reply to: Is there a way to Duplicate site includind database with MS?Nope. I’ve been using them on sites in the network.
With Custom Taxonomies?
I have resolved the permalink issue…sort of. The main blog still throws in 2010/07/sample_post in all the slugs but not for the subdomain sites.
But still the custom taxonomies do not show up. Here’s my code if anyone wants to have a gander.
add_action('init', 'create_Beers'); function create_Beers() { $beers_args = array( 'label' => __('Beers'), 'singular_label' => __('Beer'), 'public' => true, 'show_ui' => true, 'capability_type' => 'post', 'hierarchical' => false, 'rewrite' => true, 'supports' => array('title', 'editor', 'thumbnail', 'custom-fields'), 'menu_position' => 4, 'menu_icon' => get_stylesheet_directory_uri() . '/images/super-duper.png' ); register_post_type('Beers',$beers_args); register_taxonomy("Availability", array("Beers"), array("hierarchical" => true, "label" => "Availability", "singular_label" => "Availability", "rewrite" => true)); } add_action("admin_init", "admin_init"); add_filter("manage_edit-Beers_columns", "Beers_edit_columns"); add_action("manage_posts_custom_column", "Beers_columns_display"); function Beers_edit_columns($beers_columns){ $beers_columns = array( "cb" => "<input type=\"checkbox\" />", "title" => "Beer Name", "des1" => "Description", ); return $beers_columns; } function Beers_columns_display($beers_columns){ switch ($beers_columns) { case "des1": the_excerpt(); break; } } add_action('init', 'create_News'); function create_News() { $news_args = array( 'label' => __('News'), 'singular_label' => __('News'), 'public' => true, 'show_ui' => true, 'capability_type' => 'post', 'hierarchical' => false, 'rewrite' => true, 'supports' => array('title', 'editor', 'thumbnail', 'custom-fields'), 'menu_position' => 6, 'menu_icon' => get_stylesheet_directory_uri() . '/images/super-duper.png' ); register_post_type('News',$news_args); } add_filter("manage_edit-News_columns", "News_edit_columns"); add_action("manage_posts_custom_column", "News_columns_display"); function News_edit_columns($news_columns){ $news_columns = array( "cb" => "<input type=\"checkbox\" />", "title" => "News Title", "des2" => "Description", ); return $news_columns; } function News_columns_display($news_columns){ switch ($news_columns) { case "des2": the_excerpt(); break; } } add_action('init', 'create_Locations'); function create_Locations() { $Locations_args = array( 'label' => __('Locations'), 'singular_label' => __('Location'), 'public' => true, 'show_ui' => true, 'capability_type' => 'post', 'hierarchical' => false, 'rewrite' => true, 'supports' => array('title', 'editor', 'thumbnail', 'custom-fields'), 'menu_position' => 5, 'menu_icon' => get_stylesheet_directory_uri() . '/images/super-duper.png' ); register_post_type('Locations',$Locations_args); register_taxonomy("Region", array("Locations"), array("hierarchical" => true, "label" => "Region", "singular_label" => "Region", "rewrite" => true)); } add_filter("manage_edit-Locations_columns", "Locations_edit_columns"); add_action("manage_posts_custom_column", "Locations_columns_display"); function Locations_edit_columns($Locations_columns){ $Locations_columns = array( "cb" => "<input type=\"checkbox\" />", "title" => "Location", "des3" => "Contact Details", ); return $Locations_columns; } function Locations_columns_display($Locations_columns){ switch ($Locations_columns) { case "des3": the_excerpt(); break; } }Forum: Networking WordPress
In reply to: Main site adds /blog/ to permalink structure?Hey thanks, I found that post last night!
Forum: Networking WordPress
In reply to: Is there a way to Duplicate site includind database with MS?yes I noted it, I posted it. Ha.
I think the site import/export will work for me, just sucks it doesn’t include some data like menus config, the only other issue I’m having is I have three custom post types I’ve created and none of the custom taxonomies show up for either of them. Is there any know issues of incompatibilities with Custom Posts and MU?
Forum: Fixing WordPress
In reply to: WordPress 3 – duplicate sites possibleI would also like to know if this is possible.
Sorry if it wasn’t clear I have three custom post types and the custom taxonies for each are not showing up.
Forum: Networking WordPress
In reply to: Is there a way to Duplicate site includind database with MS?I realize it can be done its just not ideal. Also I’m sort of confused as to the correct area to import / export within the admin. Its not clear where to import for a specific site or the entire network.
Forum: Networking WordPress
In reply to: Is there a way to Duplicate site includind database with MS?Sorry I should have been more clear. Exporting via the admin ONLY export your posts, pages, comments, categories, and tags; uploads and images may need to be manually transferred to the new blog.
I have tons of uploaded images and redoing it all manually is not gonna be pretty. There must be an easier option to duplicate the site in and the DB.
Forum: Networking WordPress
In reply to: Is there a way to Duplicate site includind database with MS?With wordpress import yes but because I’m using custom post types I need to Import directly through phpadmin. I see the tables are labeled 2 but they all reside in the same db. Anyone else shed some light?