How to change the text and remove/hide order field on booking section?

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 WC Bookings How to change the text and remove/hide order field on booking section?

Tagged: 

Viewing 3 reply threads
  • Author
    Posts
    • #132404
      simon99299
      Participant

      Hi. I would like to ask about

      How to change the text and remove/hide the order field on the booking section?

      I’ve attached the screenshot to deliver my inquiry exactly.

      Looking forward to your reply

      Attachments:
      You must be logged in to view attached files.
    • #132651

      Hello,

      To hide “order field ” from booking list add below css in your theme’s style.css –

      .wcfm-dashboard-page table#wcfm-bookings th:nth-child(4), table#wcfm-bookings tbody tr td:nth-child(4) {
          display: none;
      }

      Make unable to access vendor’s shop –
      >>Add this code n your theme’s functions.php –

      add_filter('wcfm_store_name', function($store_name){
      	return __( 'My Store h', 'wc-frontend-manager' );
      });

      To change Product text to “Teacher”-
      You can use Loco Translate plugin – https://docs.wclovers.com/locotranslate-translation-using-loco-translate-plugin/
      Select Loco translate -> Plugins -> WCFM – WooCommerce Frontend Manager -> Select Site language -> Search string (like Product) and change -> Save

      Thanks.

    • #138796
      testpaid2322
      Participant

      How to change inquiry title to Enquiry on frontend.

      Attachments:
      You must be logged in to view attached files.
    • #139010
      simon99299
      Participant

      Hello

      How to hide “End Date field” from booking list?

      Thank you

      Attachments:
      You must be logged in to view attached files.
      • #139110

        Add the css –

        .wcfm-dashboard-page table#wcfm-bookings th:nth-child(6), table#wcfm-bookings tbody tr td:nth-child(6) {
            display: none;
        }

        Thanks.

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