Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Ultimate › How to extend/modify WCFM and WCFM U using a child plugin?
- This topic has 22 replies, 3 voices, and was last updated 5 years, 5 months ago by WCFM Forum.
- AuthorPosts
- January 21, 2019 at 10:04 am #44544MakyGuest
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!
- January 21, 2019 at 3:28 pm #44580WCFM ForumMember
hi,
Can you please know me, what exactly you want to extend?
Thank You
- February 11, 2019 at 12:12 pm #47708MakyGuest
For example I want to build a custom engine plugin to import/syncronize products using cron jobs!
- February 11, 2019 at 12:13 pm #47709MakyGuest
Or I want to build a custom registration wizard
- February 11, 2019 at 5:49 pm #47755iDevelopperParticipant
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.
- February 12, 2019 at 6:21 am #47818WCFM ForumMember
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
- February 12, 2019 at 7:59 am #47851iDevelopperParticipant
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
- February 12, 2019 at 4:34 pm #47928WCFM ForumMember
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
- February 13, 2019 at 5:04 am #47968iDevelopperParticipant
- February 13, 2019 at 5:37 pm #48059WCFM ForumMember
HI,
Can you give me this URL, as this depend upon theme. So it will easier for me to guide you.
Thank You
- February 14, 2019 at 6:09 am #48084iDevelopperParticipant
the short code [stores_list]: localhost/stores/
- February 14, 2019 at 6:44 am #48085iDevelopperParticipant
Sorry, it is [wcfm_stores per_row=5]
- February 14, 2019 at 10:27 am #48143WCFM ForumMember
Is your site in localhost?
- February 14, 2019 at 11:05 am #48172iDevelopperParticipant
- February 14, 2019 at 1:08 pm #48198WCFM ForumMember
OK, use this CSS –
#wcfmmp-stores-wrap ul.wcfmmp-store-wrap li.coloum-5 .store-footer { min-height: 100px; height: 100px; }
Thank You
- February 14, 2019 at 4:14 pm #48250iDevelopperParticipant
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:
Thank You
- February 14, 2019 at 4:17 pm #48252WCFM ForumMember
HI,
Add this to Child theme’s style.css
Thank You
- May 19, 2019 at 7:11 am #62897arshadGuestThis reply has been marked as private.
- May 20, 2019 at 4:32 am #62973WCFM ForumMember
Hi,
Are you using EDD or WooCommerce as e-commerce plugin ?
If it’s EDD, then WCFM will not work your site.
Thank You
- May 20, 2019 at 5:52 am #62989arshadGuest
I am using WooCommerce as e-commerce plugin..
- May 21, 2019 at 4:33 am #63098WCFM ForumMember
HI,
Thanks for clarification.
Kindly give me more details for Point 1 & 2
Thank You
- May 21, 2019 at 9:55 am #63154arshadGuest
what was my point 1 and 2, i forget…
- May 22, 2019 at 12:37 pm #63340WCFM ForumMember
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
- AuthorPosts
- The topic ‘How to extend/modify WCFM and WCFM U using a child plugin?’ is closed to new replies.