Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › Dokan Multivendor › I'd like to get rid of 'processing…' sign.
- This topic has 3 replies, 2 voices, and was last updated 6 years, 5 months ago by WCFM Forum.
- AuthorPosts
- June 3, 2018 at 4:32 am #24225gimsion852Participant
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.
- June 8, 2018 at 5:37 pm #24524WCFM ForumMember
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
- June 9, 2018 at 5:26 am #24552gimsion852Participant
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’.
- June 9, 2018 at 8:23 am #24560WCFM ForumMember
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
- AuthorPosts
- The topic ‘I'd like to get rid of 'processing…' sign.’ is closed to new replies.