Display

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 5 reply threads
  • Author
    Posts
    • #77410
      official
      Participant

      Hi, i need help:

      1. On header dashboard: https://prnt.sc/ouebxy
      2. On create product: https://prnt.sc/ouecjm | https://prnt.sc/oued1i
      3. On stock manager: https://prnt.sc/ouect5
      4. On order items: https://prnt.sc/ouedgz
      5. On shipment tracking: https://prnt.sc/ouedxa | https://prnt.sc/ouefbm
      6. On order notes: https://prnt.sc/oueg7r

      Thank you

    • #78451
      WCFM Forum
      Keymaster

      Hi,

      1, 4, 5 & 6. Add this CSS to your site –

      #wcfm-main-contentainer .wcfm-page-headig .wcfmfa, .wcfm-page-headig .wcfm-page-heading-text, #wcfm-main-contentainer .wcfm-page-headig a.active .wcfmfa{color:#ffffff!important;}
      #wcfm-main-contentainer #orders_details_general_expander a, #orders_details_items_expander a, #wcfm-main-contentainer #orders_details_shipment_expander .wc-order-item-name, #wcfm-main-contentainer #orders_details_shipment_expander .wcfmfa{color:#ff0000!important;}
      #wcfm-main-contentainer .customer-note td{background:#dddddd!important;}

      2. Add this PHP code to your site –

      add_filter( 'wcfm_product_fields_stock', function( $stock_fields, $product_id, $product_type ) {
      	$stock_fields = wcfm_hide_field( 'backorders', $stock_fields );
      	$stock_fields = wcfm_hide_field( 'sold_individually', $stock_fields );
        return $stock_fields;
      }, 50, 3 );
      add_filter( 'wcfm_product_manage_fields_shipping', function( $shipping_fields, $product_id ) {
      	$shipping_fields = wcfm_hide_field( 'shipping_class', $shipping_fields );
      	return $shipping_fields;
      }, 50, 3 );

      Add PHP code to your child theme’s functions.php
      In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/

      Thank You

    • #78452
      WCFM Forum
      Keymaster

      HI,

      5. https://prnt.sc/ouefbm – we can hide tracking url but then we have to set a default URL for tracings. Kindly know me that URL.

      3. Add this PHP code to your site –

      add_filter( 'wcfm_stocks_screen_manage', function( $wcfm_screen_manager_data ) {
      	$wcfm_screen_manager_data[7] = 'yes';	
      	return $wcfm_screen_manager_data;
      }, 50 );

      Add PHP code to your child theme’s functions.php
      In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/

      Thank You

    • #79178
      WCFM Forum
      Keymaster

      HI,

      Please check at wp-admin -> WooCommerce -> Status -> Logs -> fatal_erros log -> is any error generated?

      Also check in Google Chrome Browser colsole, is there any JavaScript error happening to the site or not!

      Thank You

    • #79482
      official
      Participant
      This reply has been marked as private.
    • #79620
      WCFM Forum
      Keymaster

      You are welcome 🙂

      I will give you code for this as well.

      Thank You

Viewing 5 reply threads
  • You must be logged in to reply to this topic.