Changing the font

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 15 reply threads
  • Author
    Posts
    • #12976
      info6
      Participant

      Hi there

      I have just bought the plugin and it is great! Thank you.

      However, I am using listify and for some reason your plugin thinks that this is jobify, so there are buttons asking whether the position has been filled etc. Is there any way to remove these buttons.

      Also how do I change the font to reflect the same as the rest of the website?

      Thanks

      Rob

    • #13015
      Shhiv Narayan
      Keymaster

      Hi,

      Pleasure to know that you have upgraded your WCFM!!

      WCfM 3.0.4 has just released.

      Kindly update yours and check – hope there is no more “Job”.

      If you still getting some then please send us snap of those and only way to change those labels – Translation.

      WCfM did not any additional Font to the Dashboard, it’s running with Active Theme font. Here also if you seen any such section with different Font then please send us screenshot of those.

      Thank You

    • #13025
      Rob
      Guest

      Hi there

      Thanks for your reply

      It is not so much a question of just changing the translation. This is an actual button in the action column which asks whether the listing is filled(i.e. whether the job has been filled). But it is unintelligible in the context of the website that I have created which is about yoga retreats not jobs.

      You are right about the font, my mistake. It is because everything is in bold rather than normal weight that it looked quite different. Is there any suggestions on how to change the styling so that it is not bold? I guess some CSS to the child theme would suffice?

      I noticed some of the text is not able to fit within the dropdown boxes that you have created, see https://drive.google.com/open?id=0ByXufBSDmFZqMHNkSFdscFNwNUk

      Also, for some reason, Yoast SEO is showing up. It would be good for this not to appear to the vendors see https://drive.google.com/open?id=0ByXufBSDmFZqVFozdkJfX0ZlVms

      I noticed when someone checks out, they get this message within their order about the tracking and shipping. However, this is not necessary for my website, so need to turn this off and cannot see how. See https://drive.google.com/open?id=0ByXufBSDmFZqSVBCMlp6aTNRbTg

      Lastly, I do not require any commissions on my website, so it would be good to have an option to turn that off too.

      Otherwise, I am extremely thankful for your plugin. I have been experimenting for 2 years with Wc Vendors but it would always conflict with woocommerce or Listify and yours seems to be just excellent, so thank you!

      With kindness

      Rob

    • #13057
      WCFM Forum
      Keymaster

      Hi,

      Really thanks for appreciation and such details explanations.

      It is not so much a question of just changing the translation. This is an actual button in the action column which asks whether the listing is filled(i.e. whether the job has been filled). But it is unintelligible in the context of the website that I have created which is about yoga retreats not jobs.
      – Yeah, I understand. This can be hidden using some small coding customization, I will send to you

      You are right about the font, my mistake. It is because everything is in bold rather than normal weight that it looked quite different. Is there any suggestions on how to change the styling so that it is not bold? I guess some CSS to the child theme would suffice?
      – Yes, you can change any CSS from child theme, WCFM style setting only have color options

      I noticed some of the text is not able to fit within the dropdown boxes that you have created
      – We have added fix specially for Listify theme in WCFM 3.0.4, hope you have already updated. So can you please check once by clearing browser cache!!

      Also, for some reason, Yoast SEO is showing up. It would be good for this not to appear to the vendors see
      – OK, I will send code snippet for this as well

      I noticed when someone checks out, they get this message within their order about the tracking and shipping. However, this is not necessary for my website, so need to turn this off and cannot see how.
      – Sorry for that, it’s an issue from WCFM itself, Bookable products should not have this!! Will fix by the next update.

      Lastly, I do not require any commissions on my website, so it would be good to have an option to turn that off too.
      – Actually commission management is totally part of multi-vendor plugin (WC Vendors in your case). So it will best to ask that plugin author, how to disable that. In my mind only option is coming to set the commission value “0”.

      I will send you those code snippets and you just have to place those in your child theme “functions.php”

      If you have anything else in mind please feel to share with us.

      Thank You
      Shhiv

    • #13059
      WCFM Forum
      Keymaster

      HI,

      Here is the snippet for your requirement.
      Past this in your child theme “functions.php”

      add_filter( 'wcfm_is_allow_seo', function() {
      	if( wcfm_is_vendor() ) {
      	  return false;	
      	}
      	return true;
      } );
      
      add_filter( 'wcfm_is_allow_listings_mark_filled', function() {
      	return false;
      });

      Thank You

    • #13063
      info6
      Participant

      Hi mate

      Thanks for sending over the info and look forward to the update email issue. This was not there with woocommerce so I really need to find a way to get rid of it as it makes the emails unintelligible. See https://drive.google.com/open?id=0ByXufBSDmFZqTVVDU1h3MXcyMWM

      The other issues, are that when I turn off the reporting tab for vendors, it takes away all the menu tabs, see https://drive.google.com/open?id=0ByXufBSDmFZqUUNHempZQUVDSjA

      Further, when looking at the products manage page, and click on the dropdown you see all the different product types and different product categories even though I have hidden them on the other part of the plugin. It would be good to have these hidden as well. https://drive.google.com/open?id=0ByXufBSDmFZqVHc0Tk94LVYwalU

      Lastly, it would be good if the changes or customizations that we make appear first, rather than original settings loading and then the custom settings loading afterwards and overlay the original settings.

      Thank so much for your help

      Rob

    • #13064
      info6
      Participant

      P.s. It is just home screen within the plugin that has the sidebar menu disappear when one removes the reporting function.

    • #13066
      info6
      Participant

      Hi there

      Also, when adding a product. The dropdown is very narrow for the type of product i.e. whether it is a single or variable product. It would be better styling if this was increased. See https://prnt.sc/gi9x7p

      Thanks

      Rob

    • #13067
      info6
      Participant

      One more thing, the CSS is not very good when looking at order details, see https://prnt.sc/gia7gr

      If this could be tidied up that would be great!

      Thank you

      Rob

    • #13069
      info6
      Participant

      Sorry, another issue. As I am not selling physical products that need to be shipped. It would be good to get rid of the amount of orders that need to be fulfilled with the icon of the lorry. As I am only taking bookings or enquires. See https://prnt.sc/giaxhm

      I guess some CSS would get rid of it?

      Thanks

    • #13071
      WCfM Forum
      Guest

      Did you updated WCfM to 3.0.4 yet?

      Most of the CSS issues has been already resolved in WCfM latest version, that is 3.0.4

      Shipping Tracking part is just in latest version and off course it should not be there for Bookings, we will fix that in next update.

      We are looking into other parts as well.

    • #13073
      info6
      Participant

      Hi there

      Yes, I had updated to 3.0.4, some of the CSS has been fixed but there is some, which I outlined, that are not.

      I am not using bookings but single and variable products for bookings. I am just not sure why there is that notice on the email that goes to customers as it is not in woocommerce and I want to take it out. Please advise?

      Look forward to hearing about the other parts too.

      Thanks again for your help

      Rob

    • #13074
      info6
      Participant

      Also I tried to overwrite the CSS with the menu buttons using the following:

      .wcfm_menu_item #wcfm_menu
      {
      font-weight: 200; !important
      }

      However, it not seem to overwrite it. Any ideas why?

      Thanks

    • #13085
      WCFM Forum
      Keymaster

      Hi Rob,
      Here is the issues update-

      Also, when adding a product. The dropdown is very narrow for the type of product i.e. whether it is a single or variable product. It would be better styling if this was increased. See https://prnt.sc/gi9x7p
      – Fixed in WCFM 3.0.4

      Further, when looking at the products manage page, and click on the dropdown you see all the different product types and different product categories even though I have hidden them on the other part of the plugin. It would be good to have these hidden as well. https://drive.google.com/open?id=0ByXufBSDmFZqVHc0Tk94LVYwalU
      – Fixed in WCFM 3.0.4

      I am not using bookings but single and variable products for bookings. I am just not sure why there is that notice on the email that goes to customers as it is not in woocommerce and I want to take it out. Please advise?
      – Fixed in WCFM 3.0.5

      Sorry, another issue. As I am not selling physical products that need to be shipped. It would be good to get rid of the amount of orders that need to be fulfilled with the icon of the lorry. As I am only taking bookings or enquires. See https://prnt.sc/giaxhm
      – Fixed in WCFM 3.0.5

      One more thing, the CSS is not very good when looking at order details, see https://prnt.sc/gia7gr
      – Fixed in WCFM 3.0.5

      It is just home screen within the plugin that has the sidebar menu disappear when one removes the reporting function.
      – Fixed in WCFM 3.0.5

      Hope I have covered all your concerns here.
      Just to mention, WCFM 3.0.5 will be released within 2-3 hours. Kindly update yours and check all these.

      Thanks for your cooperation..

      Shhiv

    • #13087
      info6
      Participant

      Hi mate

      Thank you for the update and look forward to the update to the plugin in a few hours.

      In regards the CSS
      “Also, when adding a product. The dropdown is very narrow for the type of product i.e. whether it is a single or variable product. It would be better styling if this was increased. See https://prnt.sc/gi9x7p
      – Fixed in WCFM 3.0.4”

      I have updated to 3.0.4 but though it briefly resizes, it then reverts back to the smaller size. See video below:

      https://drive.google.com/open?id=0B3SNqIvrVHs5SkxQQUtwaUVKRjQ

      Rob

    • #13113
      WCFM Forum
      Keymaster

      Hi,

      WCFM 3.0.5 has just released.
      Kindly update your and check.

      Please check by clearing browser cache.

      Thanks for your patience.

Viewing 15 reply threads
  • The topic ‘Changing the font’ is closed to new replies.