Few issues after latest update

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Viewing 3 reply threads
  • Author
    Posts
    • #36268
      samsun34567
      Participant

      Hey guys,

      Great work on the update!

      Noticed a few issues though,

      1. Custom color on store list no longer working and reverted back to default
      2. New function: select category will also include “uncategorized”. -> Which can’t be deleted but shouldn’t appear as one of the categories.

      Thanks!

    • #36323
      WCFM Forum
      Keymaster

      Hi,

      1. Custom color on store list no longer working and reverted back to default
      – Kindly show me screenshot which color you are referring here.

      2. New function: select category will also include “uncategorized”. -> Which can’t be deleted but shouldn’t appear as one of the categories.
      – It’s not possible to exclude any category right now. Well, why are not rename “uncategoried” category to something else!

      Thank You

    • #36559
      samsun34567
      Participant

      Hi,

      For 1 –> Please see screenshot for store list and settings

      For 2 –> The thing is… uncategorized is a default woocommerce category and it’ll exist even if there are no product in this category. And I do not intend to put any products in this category, which makes it meaningless. Is there absolutely no way to hide or disable this category?

      Thanks!

      Attachments:
      You must be logged in to view attached files.
    • #36582
      WCFM Forum
      Keymaster

      HI,

      1. Understand your point. Actually that custom styling right now work only for Store page and not for Store list page.
      We will extend this is next update. Thanks for pointing out this.

      2. Yeah right, it’s WC default category and can not be deleted.
      Kindly add this code to your site –

      add_filter( 'wcfm_allowed_taxonomies', function( $is_allow, $taxonomy, $term_id ) {
      	if( $taxonomy == 'product_cat' ) {
      		$term = get_term( $term_id );
      		if( $term->slug == 'uncategorized' ) $is_allow = false;
      	}
      	return $is_allow;
      }, 750, 3 );

      Thank You

Viewing 3 reply threads
  • The topic ‘Few issues after latest update’ is closed to new replies.