• Hey Alex,

    Been trying to figure out how to get the edit button to work. Seems that it is redirecting me to a url that doesn’t work.

    Can you help? I’m unable to edit each category individualy and so I’ve had to tell WordPress to make all top level categories subdomains.

    However I really do not want that. I need to be selective.

    The site is https://incrowdusa.net

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi casual genius,

    is there help in sight for WP 3.01, I really love to see this plugin working, since I need it desperately….

    what do you think ?

    regards

    Joe

    you could try using phpMyAdmin to modify the contents of the table “wp_category_subdomains”

    the subdomain code looks for values from this table (from classes.php)
    #################################
    //— Work out the Categories to subdomain
    if ( get_option( WPS_OPT_SUBALL ) != “” ) {
    $cats_exclude = $wpdb->get_col( “SELECT cat_ID FROM {$table_name} WHERE not_subdomain = 1” );

    $cats = array_diff( $cats_root, $cats_exclude );
    } else {
    $cats_include = $wpdb->get_col( “SELECT cat_ID FROM {$table_name} WHERE is_subdomain = 1” );

    $notcats = array_diff( $cats_include, $cats_root );
    $cats = array_diff( $cats_include, $notcats );
    }
    #################################

    hi,

    thanks I have added the table and manuelly added the infos …. but I still have the same error, redirect me to a different not existing page

    here is the link form the post / categories (which exists)

    https://mydomain.org/wp-admin/edit-tags.php?action=edit&taxonomy=category&post_type=post&tag_ID=1

    this is the link from the subdomain-menu (does not exist)

    https://mydomain.org/wp-admin/categories.php?action=edit&cat_ID=3

    it is totally different

    regards

    Joe

    Hi,

    Does anybody know of a workaround or a reliable plugin, writing here is basically a waste of “ink” and time

    best regards

    Joe

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: WP Subdomains] Can't Edit Categories Selectively to make them subdomains’ is closed to new replies.