cizsolt
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Popular Posts] Admin backend not displaying top listsI’m glad I could help you identify the issue and you managed to fix it so fast! Thanks for the details, so it’s quite understandable why it didn’t work with the Modern scheme ??
Thanks for the awesome plugin!
Zsolt
Forum: Plugins
In reply to: [WordPress Popular Posts] Admin backend not displaying top listsHello Héctor!
Good news, problem solved, bug found ?? To reproduce, change the Admin Color Scheme from your profile settings to
Modern
and voilá the charts and top lists will not load. On other schemes it looks like it is working, it is just this one, I was also using.I figured this out by changing the admin ID from
1
to999
in phpmyadmin wp_users and then I logged back in. I noticed, everything is working as expected, so I was sure something saved in the wp_usermeta table is causing the issue. The first difference I noticed was the admin color scheme. Changed it and problem solved.Please let me know, if you can reproduce it.
Thanks,
Zsolt.Forum: Plugins
In reply to: [WordPress Popular Posts] Admin backend not displaying top listsI am constantly looking for ways to improve my website, so there are a quite a lot of frequent changes on the back- and frontend. Now that we’ve found out that it’s only my user affected, I’m thinking about what might be causing it and if I find out anything useful, I’ll let you know immediately. Thanks for thinking together today!
Forum: Plugins
In reply to: [WordPress Popular Posts] Admin backend not displaying top listsI did try a plugin one year ago, that allowed me to set custom plugin access permissions for different roles. But this issue with WPP appeared only in the last 2 months or so. I am logging in with the admin user I did set up when installing the WP, user ID 1. The other administrators were created later, by me. That is one difference between the users. I am also unable to change my admin user’s role to something else, it has to stay Administrator. I can change the other administrator’s roles.
Forum: Plugins
In reply to: [WordPress Popular Posts] Admin backend not displaying top listsThat is a great question. What else can be there, that disabling the plugins would not solve…?
Forum: Plugins
In reply to: [WordPress Popular Posts] Admin backend not displaying top listsI just figured out, that the plugin has this problem only if I am logged in with my user. It works for other admin users, even if on the same roles. It is strange, that disabling all the plugins did not solve the problem with my user.
- This reply was modified 3 years, 3 months ago by cizsolt.
Forum: Plugins
In reply to: [WordPress Popular Posts] Admin backend not displaying top listsYes, sure, I started with a new browser, tried also in incognito mode.
The error in Chrome’s console is:Uncaught TypeError: Cannot read property 'replace' of undefined at HexToRGB (chart.js?ver=5.4.1:1) at Object.populate (chart.js?ver=5.4.1:6) at Object.success (admin.js?ver=5.4.1:7) at c (load-scripts.php?c=1&load[chunk_0]=jquery-core,jquery-migrate,utils,moxiejs,plupload&ver=5.8:2) at Object.fireWith [as resolveWith] (load-scripts.php?c=1&load[chunk_0]=jquery-core,jquery-migrate,utils,moxiejs,plupload&ver=5.8:2) at l (load-scripts.php?c=1&load[chunk_0]=jquery-core,jquery-migrate,utils,moxiejs,plupload&ver=5.8:2) at XMLHttpRequest.<anonymous> (load-scripts.php?c=1&load[chunk_0]=jquery-core,jquery-migrate,utils,moxiejs,plupload&ver=5.8:2)
- This reply was modified 3 years, 3 months ago by cizsolt.
Forum: Plugins
In reply to: [WordPress Popular Posts] Admin backend not displaying top listsHi Héctor!
Thanks for the quick reply. I installed the Health Check & Troubleshooting plugin, activated the Troubleshooting mode, disabled all plugins, enabled WPP, switched to twenty-twenty-one theme, visited the WPP admin dashboard and unfortunately I get the same behavior with the same error in the console log. The top lists are not loading.
Any other ideas?
Thanks,
Zsolt.Forum: Plugins
In reply to: [Broken Link Checker] Nofollow on new external linksHey,
It’s me again. Just checked my e-mails and got the BLC log now, where I can see those URLs flagged as not working where I had the problem with the added nofollow rel. So it looks like the plugin worked exactly as expected, I do have nofollow on not working links checked in Settings. However, the links are working, that is why it confused me, so it is a false alert.
Thanks again,
Zsolt.Forum: Plugins
In reply to: [Broken Link Checker] Nofollow on new external linksHi Kris!
Thanks for your reply! I do not have WP External Links on my website, but did double check the issue and after re-enabling the plugin, I am also unable to replicate the issue. I will let you know if it happens again or if I can figure out the special situation when it occures.
Thank you,
Zsolt.Forum: Plugins
In reply to: [WP 404 Auto Redirect to Similar Post] Cache file not createdI figured it out thanks to reading the readme.txt file and managed to solve it with the following filter (just in case anyone else has the same issue):
// *** Do not load the 404 Redirect plugin if the 404 URL contains 'cache' add_filter('wp404arsp/init', 'my_404_no_init', 10, 2); function my_404_no_init($init, $query){ // Developers: Print $query array for more request context if (stripos($query['request']['url'], 'cache') !== false) { $init = false; } return $init; }
I received an update from the QC support team, that the Universal Tag was updated. I replaced it on my website and the error 403 finally disappeared! Thanks.
I did double-check it and it is “www.mysite.com” in the URL, on Quantcast frontend, in the noniab-vendorlist.json URL, which returns 403. Let’s hope in an official fix soon!
Thank you! Unfortunately it did not solve for me, as I have “Your site only” consent scope and window.location.hostname is returning what it should.
Congrats! Can you maybe share the exact changes you made to get it working?