Dashboard price text to regular price

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!

Multi Vendor Marketplace Plugin | WCFM Marketplace Forums WCFM – Ultimate Dashboard price text to regular price

Viewing 3 reply threads
  • Author
    Posts
    • #26123
      Addy
      Guest

      Hi I would like to change on vendor dashboard price to regular price
      Thanks in advance

    • #26125
      WCFM Forum
      Keymaster

      Hi,

      Thanks for get in touch with us.

      You may do this many ways –

      1. Translation
      2. Template overide
      3. Filter – wcfm_product_manage_fields_pricing

      Thank You

    • #26126
      Addy
      Guest

      Please can you tell me In detail or specific code please

    • #26128
      WCFM Forum
      Keymaster

      Hi,

      Kindly add this code for the purpose –

      function wcfm_custom_product_fields_pricing( $pricing_fields, $product_id, $product_type ) {
      	if( isset( $pricing_fields['regular_price'] ) )  { 
      		$pricing_fields['regular_price']['label'] = 'Regular Price';
      	}
      	return $pricing_fields;
      }
      add_filter( 'wcfm_product_manage_fields_pricing', 'wcfm_custom_product_fields_pricing', 50, 3 );

      Thank You

Viewing 3 reply threads
  • The topic ‘Dashboard price text to regular price’ is closed to new replies.