Swennet
Forum Replies Created
-
It happens after the entire page has rendered.
Also, in case it matters, I’m using a plugin to move the Admin bar to bottom of the browser. See: Bottom Admin Bar
Forum: Plugins
In reply to: [Comments - wpDiscuz] Overwriting comments template?It’s been a while since I posted this question. Is this feature available now?
Forum: Plugins
In reply to: [Comments - wpDiscuz] E.T.A. on wpDiscuz 4?Great to hear ?? Keep up the good work!
I have tried to do the same, but unfortunately, it’s impossible to make changes to the core files like this.
The “solution” I went for is that in each file, where I make some changes, I add my name in a commented out line. This way, when Ultimate Member inevitably updates, I can simply search through the entire folder to find files in which I edited some of the core code.
This could become very time-consuming if you make large changes, but so far I haven’t found any alternatives…
@rjpwp001 Thanks for posting that ?? Fixed the issue for me!
Same issue! I had some issues with um-recaptcha before, but now it straight up doesn’t work. I think the Recaptcha API has long since updated, but the UM version hasn’t. Please update this extension soon!
I’ll just stay on 1.0.2 then. It shows that error in the console, but form submission and anti-spam protection still works as it should. As far as I can tell anyway…
Thanks for your help ??
Thanks for the reply. I’m on “Ultimate member – Google reCAPTCHA 1.0.2” right now.
Where can I find version 1.0.0?
Forum: Plugins
In reply to: [Better WordPress Minify] Cache-control headersHey, I have the same issue when testing my site’s performance with GTmetrix.
Only the files created by bwp-minify don’t seem to have expire headers…
There are 7 static components without a far-future expiration date. https://mysite.net/wp-content/plugins/bwp-minify/cache/minify-b1-jquery-core-88f94ec63a51adc9be420752df2b598a.js?ver=1474644992 https://mysite.net/wp-content/plugins/bwp-minify/cache/minify-b1-jquery-migrate-6cfda68c596c47506e1bb0ac13e3292e.js?ver=1474644992 https://mysite.net/wp-content/plugins/bwp-minify/cache/minify-b1-jquery-ui-core-dd330a7271bac1c94df557b6adc9d282.js?ver=1474644992
- This reply was modified 8 years, 2 months ago by Swennet.
Thank you for your answer. If anyone else wants to do this, then copy this code into your theme’s functions.php file.
function cp_convert_big_number($number) { $number = str_replace(',', '', $number); if ( $number >= 1000 ) { $number = number_format($number / 1000, 1) . 'K'; } else if ( $number >= 1000000 ) { $number = number_format($number / 1000000, 1) . 'M'; } else if ( $number >= 1000000000 ) { $number = number_format($number / 1000000000, 1) . 'B'; } return $number; } add_filter('number_format_i18n', 'cp_convert_big_number');
Forum: Plugins
In reply to: [Post Views Counter] Icons not showing up on non singular pagesI haven’t tested this myself, but maybe check the “Display” tab in the options menu. There you can check on which page types to display the post count.
I assume it only loads the icon on page types that you select there (to prevent loading it unnecessary on all other pages)
Hi. I had manually added them to my registration page and forgot to remove them. Sorry if that doesn’t help your issue.
Forum: Plugins
In reply to: [WP-PostViews] Track views with cookie/ipAfter a long time of struggling and googling I added this feature myself, so if anyone needs help with this then send me a message!
Forum: Fixing WordPress
In reply to: How to create a mobile theme for my website?Thank you!
Had the same issue. Great to see this is being worked on.