How to extend/modify WCFM and WCFM U using a child plugin?

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 How to extend/modify WCFM and WCFM U using a child plugin?

Viewing 22 reply threads
  • Author
    Posts
    • #44544
      Maky
      Guest

      Hi,

      Do you have an example of a child plugin that can be used as an example to extend and modify WCFM?
      I know the views can be modified by using a child theme but I am interested also in extending plugin capabilities.

      Thanks!

    • #44580
      WCFM Forum
      Keymaster

      hi,

      Can you please know me, what exactly you want to extend?

      Thank You

    • #47708
      Maky
      Guest

      For example I want to build a custom engine plugin to import/syncronize products using cron jobs!

    • #47709
      Maky
      Guest

      Or I want to build a custom registration wizard

    • #47755
      iDevelopper
      Participant

      Hi there,

      Interesting also.

      For example, I would like to change the height of the vendor views in stores_list page.

      Change also the Visit Store label on the button.

      Thank You.

    • #47818
      WCFM Forum
      Keymaster

      Hi,

      For example I want to build a custom engine plugin to import/syncronize products using cron jobs!

      *** WCFM has nothing to do with this, this is related to WooCommerce.

      Or I want to build a custom registration wizard

      *** Again, it’s related to WP registration, WCFM has nothing to do here,

      For example, I would like to change the height of the vendor views in stores_list page.

      *** Small CSS tweak, add your own CSS at child theme’s style.css

      Change also the Visit Store label on the button.

      *** You may use such code for the purpose –

      function wcfm_custom_translate_text( $translated ) {
      	$translated = str_ireplace( 'Visit Store', 'YOUR TEXT', $translated );
      	return $translated;
      }
      add_filter('gettext', 'wcfm_custom_translate_text');
      add_filter('ngettext', 'wcfm_custom_translate_text');

      Thank You

    • #47851
      iDevelopper
      Participant

      Thanks,

      Change also the Visit Store label on the button.

      *** The code you provided works like a charm, thanks.

      For example, I would like to change the height of the vendor views in stores_list page.

      I installed a child plugin that contain a style.css file, but I did not find what element to modify
      Could you provide an example please?

      Thank You

    • #47928
      WCFM Forum
      Keymaster

      HI,

      ” I would like to change the height of the vendor views in stores_list page.”

      – Kindly show me a screenshot what height exactly want to change? I will know you CSS.

      Thank You

    • #47968
      iDevelopper
      Participant
    • #48059
      WCFM Forum
      Keymaster

      HI,

      Can you give me this URL, as this depend upon theme. So it will easier for me to guide you.

      Thank You

    • #48084
      iDevelopper
      Participant

      the short code [stores_list]: localhost/stores/

    • #48085
      iDevelopper
      Participant

      Sorry, it is [wcfm_stores per_row=5]

    • #48143
      WCFM Forum
      Keymaster

      Is your site in localhost?

    • #48172
      iDevelopper
      Participant

      Yes, it is in development localhost port 80

      https://ibb.co/D4wqDhv

      Thank You

    • #48198
      WCFM Forum
      Keymaster

      OK, use this CSS –

      #wcfmmp-stores-wrap ul.wcfmmp-store-wrap li.coloum-5 .store-footer { min-height: 100px; height: 100px; }

      Thank You

    • #48250
      iDevelopper
      Participant

      Thanks, I did not find because we have to change the footer height not the wrap, ok.

      But I added this css in style.css file in a custom plugin and this is not working.

      Do I have to rename the file? Please see the screenshot below:

      https://ibb.co/L6j7gQ8

      Thank You

    • #48252
      WCFM Forum
      Keymaster

      HI,

      Add this to Child theme’s style.css

      Thank You

    • #62897
      arshad
      Guest
      This reply has been marked as private.
    • #62973
      WCFM Forum
      Keymaster

      Hi,

      Are you using EDD or WooCommerce as e-commerce plugin ?

      If it’s EDD, then WCFM will not work your site.

      Thank You

    • #62989
      arshad
      Guest

      I am using WooCommerce as e-commerce plugin..

    • #63098
      WCFM Forum
      Keymaster

      HI,

      Thanks for clarification.

      Kindly give me more details for Point 1 & 2

      Thank You

    • #63154
      arshad
      Guest

      what was my point 1 and 2, i forget…

    • #63340
      WCFM Forum
      Keymaster

      Here are those –

      1. “My shop will deliver EDD, but Buyer will have to confirm that the deliver EDD-product is OK as buyer wanted. if the deliver product is OK then ADMIN release the payment to seller” otherwise SELLER has to review the source-file , modify it as buyer wants then resubmit to buyer for acceptance.

      2. I want to set My own labeling for all headings, insight Body typography change options/Headings etc

Viewing 22 reply threads
  • The topic ‘How to extend/modify WCFM and WCFM U using a child plugin?’ is closed to new replies.