Okay
  Public Ticket #3152706
My Account Product List
Closed

Comments

  •  1
    richardeverton started the conversation

    Hi

    I want to use the my account area as a customer product list but i would like to be able to see more information per product line like group discount, RRP, Net Cost, Attributes etc.... is there a way that I can customize it slightly to show they items please?

  •  1,904
    WebWizards replied

    Hi there,

    Are you using one of our wholesale order forms ( https://woocommerce-b2b-plugin.com/docs/order-form-themes-styling/ ) and would you like to add additional fields to this form?

    At the moment only SKU and Stock quantity are supported by default as additional fields. 


    Which form are you using? Is it the "Cream" order form? I can check to see if we can add some more fields there.


    Kind regards,

    Stefan

  •  1
    richardeverton replied

    Hi Stefan

    I am using the cream Order Form (Purchase List)

     

    Ideally it would be really useful for the logged in customer to see the following:

    Product SKU

    Product Name

    Stock Available

    Attribute Names & Values

    Retail Vat Inclusive B2C Price

    WholeSale VAT Ex Price

    Discount Offered

    Net Price

     

     

    Then quantity to order and value .. ideally the top list of extra fields needs to be for information (and download) purposes and does not need a quantity to order field

  •  1
    richardeverton replied

    Hi

    Having looked at the documentation for the different templates .. I think the standard one with the ammendments I suggested would be better as I want to be able to populate the product list myself rather than automatically with the first 100 items

  •  1
    richardeverton replied

    Hi

    Any feedback on this request please? Sorry to badger you but I am trying to complete something fairly urgently. By the way I think the B2B King Plugin is actually reallly very good.. thank you

  •  1,904
    WebWizards replied

    Hi Richard,

    It is possible to show both SKU and Stock quantity there in that table when using the Cream order form.


    To do that, you can use the following shortcode: [b2bking_bulkorder theme=cream sku=yes stock=yes] on a separate page.

    Or if you're using the 'My Account' page rather than a custom page, you can add this PHP code snippet to your site to change what shortcode is used on the my account page:

    add_filter('b2bking_my_account_bulkorder_shortcode', function($shortcode){
        return '[b2bking_bulkorder theme=cream sku=yes stock=yes]';
    }, 10, 1);


    If you would like to show only specific products in that form, a way to do this would be to add these products to a category and then write the shortcode like this to display that category:

    [b2bking_bulkorder theme=cream category=123]
    

    Alternatively products or categories can be excluded:

    [b2bking_bulkorder theme=cream exclude=12,category_34]
    

    However, our plugin has no option to display other fields there such as discount, net price, attributes etc. We can look at adding more options there in future updates, but it's not a feature of the plugin at the moment. It would probably require some design changes to be able to support those - currently just by adding sku and stock, the width of the table gets stretched  to its limit, and columns start to get very close together.


    Kind regards,

    Stefan