• Resolved legentlemanfr

    (@legentlemanfr)


    Hi Greg,

    Thank you for your plugin that is very easy to customize or to understand.

    However, I have detected some little problems with WC Integration :

    1- In Listing Information, there is no default choice or no option preselected (that could be disturbing for customer).

    2- I have created listing types in french + english thanks to WPML Woocommerce plugin. The types of both languages are displayed in listing information. How can I filter the products in the correct language ?

    3- I have tried the snippet given in “customization part” of WC Integration to hide my wpadverts products from the “legacy” shop/caatalog but it is not working. Have I miss something ?

    4- WC Integration adds a logout link in account menu, even if another is already present (after yith wishlist link in my setup). I have managed to suppress this link but at the price of a modification in WC integration core file.

    5- I had to suppress the option ‘create an account and i will send you a password’ that is not aligned with Woocommerce standard registration (pwd meter + mail confirmation).

    Thank you for all the support you will consider.

    Antoine

    PS : btw, I really miss the customization of category icons ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter legentlemanfr

    (@legentlemanfr)

    ** Update **

    2- New pb : My english wpadvert products are all set to 0 day (whatever the parameter). I must precise that english is seen as my second language (from WPML perspective). A workaround might be to create dedicated english products (not relying on WPML woocommerce sync), but products of both languages are still displayed on add page.

    3- Seems working when products are to ‘hidden’ in publication option in woocommerce

    Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    1. it is not really possible to set a default listing i am afraid.
    2. you can use adext_wc_payments_products_new filter to add some more filters to the listing types

    
    add_filter( "adext_wc_payments_products_new", "my_adext_wc_payments_products_new");
    function my_adext_wc_payments_products_new( $args ) {
        // $args are params that will be passed to WP_Query constructor
        // modify $args below
        return $args;
    }
    

    you will just need to add your filters in the function above, i am not sure what they will be as i am not familiar with WPML, you would need to ask their support.

    3. Ok
    4. i am not sure which logout link do you mean?
    5. this item you can remove from the form using adverts_form_load filter, without modifying original WPAdverts files.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘WC Integration : minor problems’ is closed to new replies.