I'd like to get rid of 'processing…' sign.

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 Dokan Multivendor I'd like to get rid of 'processing…' sign.

Viewing 3 reply threads
  • Author
    Posts
    • #24225
      gimsion852
      Participant

      Hello! Thanks for a good plugin.

      I’m currently using ultimate.
      Q. I’d like to get rid of ‘processing…’ loading sign in Dashboard. It appears when I click menus containing tables.
      Is there any way that I don’t have to see it?

      Best regards.

    • #24524
      WCFM Forum
      Keymaster

      Hi,

      When data is loading dynamically it’s visible over there.

      It’s not possible to hide or disable. But possible to set empty string for “processing…”, then you will see nothing.

      That’s not a solution but a trick to hide that.

      Thank You

    • #24552
      gimsion852
      Participant

      Hello,

      That’s not a proper answer. I paid for this plugin and if you can’t even give a solution for this kind of simple request, I don’t want to use it.

      I know there will be js or php script for making it visible.

      Also, It even shows all the columns that I disabled. like SKU

      It doesn’t look good. I need an answer better than ‘can’t do it’.

    • #24560
      WCFM Forum
      Keymaster

      Hi,

      Kindly add this code to your child theme’s functions.php

      function wcfm_custom_translate_text( $translated ) { 
      	$translated = str_ireplace( 'processing...', '', $translated ); 
      	return $translated; 
      }
      add_filter('gettext', 'wcfm_custom_translate_text'); 
      add_filter('ngettext', 'wcfm_custom_translate_text');

      It will remove “processing…”

      Thank You

Viewing 3 reply threads
  • The topic ‘I'd like to get rid of 'processing…' sign.’ is closed to new replies.