• Resolved The Open Market

    (@jhutson323)


    Hello!

    I’ve utilized the Woocommerce Product Vendors addon to create a multivendor site. I’ve successfully renamed everything on the front and backend of the site from “Vendor” to “Seller.

    Except for all the permalinks!

    I see that your plugin is more geared towards posts, but I’m still curious if your plugin can help me achieve this change?

    Thanks for your time!

    Jon

    https://www.theopenmarket.co

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Maciej Bis

    (@mbis)

    Hi @jhutson,

    Yes, it is possible, if you would like to reformat the URLs of vendor archive pages, e.g:

    vendor/mireilles-majestic-spoons => seller/mireilles-majestic-spoons

    This feature is available only in Pro version:

    https://permalinkmanager.pro/docs/basics/bulk-edit-custom-permalinks/#1-how-to-edit-permastructures

    Actually, you can also change “vendor” to “seller” using a code snippet:

    function change_vendor_tax_slug( $args, $taxonomy ) {
    	if ( $taxonomy === 'wcpv_product_vendors' ) {
    		$args['rewrite']['slug'] = 'seller';
    	}
    
    	return $args;
    }
    add_filter( 'register_taxonomy_args', 'change_vendor_tax_slug', 10, 2 );

    After you add it to your website, please flush the rewrite rules:

    https://permalinkmanager.pro/blog/fix-wordpress-404-error-flush-rewrite-rules/#5-how-to-flush-rewrite-rules

    Best regards,
    Maciej

    Thread Starter The Open Market

    (@jhutson323)

    Oof, I see what it is now. I had to zoom all the way to see this thing properly. It’s a new column with permalink information added. When it’s zoomed in to a regular window size it really badly messes with the rest of the layout

    and, I’m unable to remove the columns via CSS.


    I appreciate your patience!



    edit: I obviously don’t know how computers work. I somehow deleted my question that the above message pertains to. It was basically asking how I can remove all of he additional columns that are added to all of my backend product, vendor, tag, categories, etc. pages.

    I already like this product a lot, but I don’t need these extra functionalities, and am unable to find a setting for it within your plugin.

    Thanks again! =]

    Plugin Author Maciej Bis

    (@mbis)

    Hi @jhutson323,

    I apologize for the inconvenience and see the point. WooCommerce adds a lot of extra columns in the admin UI compared to other post types. I think I should make that extra column with the custom permalink for “products” hidden by default.

    Could you try to hide it (“Current URI”) using the “Screen options” panel?

    Best regards,
    Maciej

    Thread Starter The Open Market

    (@jhutson323)

    Ah, yes. of course. thats it. thank you.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Does this plugin work with User taxonomy as well?’ is closed to new replies.