novakpeter
Forum Replies Created
-
Forum: Plugins
In reply to: [Duplicate Post] Error accessing the WP REST APIHi, the problem was W3 Total Cache plugin. It was a part of my WordPress install. Not sure if it is now packed with WordPress like a sort of a promo or my hosting added it. I immediately deactivated the W3 Total Cache plugin but when I worked on the web I have seen occasionally weird errors. After some time when I did not see some changes immediately, I was suspicious that it looks like some kind of broken caching. So I deleted W3 Total Cache completely. Weirdly enough, the plugin did not uninstal itself properly and left some files and folders behind (oh man, what a mess). After I deleted completely all these remains, these weird errors dissapeared so it is now solved for me.
Forum: Plugins
In reply to: [Antispam Bee] Spam on Dashboard, Missing Everywhere ElseHi, I am not exactly sure, but it is probable that “Add Captcha to comments form” is to blame. (That is settings in All In One WP Security & Firewall plugin)
Forum: Plugins
In reply to: [Also In This Series] Feature Suggestions – New Shortcode, URL LocalizationThank you so much!
Forum: Plugins
In reply to: [Also In This Series] Localization with Loco TranslateNice, thank you, looking forward!
Sorry but you probably do not understand programming. A SEO plugin never indexes. Indexing is done by Google, Bing etc. Please, could someone from your company that understands programming answer the question? Thank you.
Thank you, do you mean your SEO premium addon? https://stylemixthemes.com/wordpress-lms-plugin/addons/ I do not see any SEO addon there. Do you mean that the courses are indexed by Google by default and we can lock some parts by using noindex? Sorry, I do not quite understand your answer.
Hi, OK thank you for the answers!
OK, thank you so much for the answer!
Forum: Plugins
In reply to: [Antispam Bee] Nonsense SpamHi, my experience is to set also 1) a good security plugin and 2) IP country blocker (I am completely blocking some countries like China, Pakistan etc. Also have different filtres on frontend/backend). That really helped with overall security. Without security logs I would not even now that I have thousands of attemps from bots trying to find security holes (404s). I use “All In One WP Security” and “IP2Location Country Blocker”. And of course Antispam Bee. Bullet proof and also not bloated.
Forum: Plugins
In reply to: [Antispam Bee] Spam on Dashboard, Missing Everywhere ElseDear Torsten, thank you for the perfect analysis! I was afraid to disable the WP Security plugin completely because it tweaks so many things (like login address) and I have high number of attacks incoming (as everyone these days). However I disabled several features in the security plugin that seemed to have something to do with comments. And Voilà spam is now being stored with a reason from ASB and e-mails are coming. Now I will slowly begin to enable the fields back to isolate the exact field that was the problem. When I find it, I will post it here but it will probably take many days 🙂
Forum: Plugins
In reply to: [WP Popular Posts] Problem With DarkmodeDear Héctor, I found the logic and finished the script! Works nicely now! The code is:
function wpp_dark_mode_detection() { ?> <script> document.addEventListener('DOMContentLoaded', function() { document.body.addEventListener('wpp-onload', function(e) { const my_html = document.querySelector('html'); if (my_html.classList.contains('wp-dark-mode-active')) { is_dark_mode = true; } else { is_dark_mode = false; } if ( is_dark_mode ) { e.target.querySelector('.popular-posts-sr').shadowRoot.querySelector('.wpp-list').classList.add('dark-mode'); } }); }); </script> <?php } add_action('wp_head', 'wpp_dark_mode_detection');And to my style.css I added:
.wpp-list li a { color: #000000; } .wpp-list.dark-mode li a { color: #e5e0d8; }Please, can you advice how to “load the script in a JS file and not inline as shown” as mentioned?
Forum: Plugins
In reply to: [WP Popular Posts] Problem With DarkmodeDear Héctor, I appreciate your response very much! Though I know HTML, CSS very well and have some PHP basics, I don’t really know JS. So I will try to put something together based on documentation etc. Hopefully I will be able to find somehow the detection logic as you mention and add the shown code to my themes function.php. However I have no idea how to “load the script in a JS file and not to inline it as shown” as mentioned. Nvm, meanwhile I will think about that detection logic, thank you.
Forum: Plugins
In reply to: [Simple Newsletter Plugin - Noptin] HOW TO: Get subscribe form themesDiar Brian, perfect! I also adjusted my review to really commend this plugin more!
Forum: Plugins
In reply to: [WP Popular Posts] Problem With DarkmodeDear Héctor, thank you so much! Looking forward to any suggestion!
Forum: Plugins
In reply to: [WP Dashboard Notes] indent issueYes, this would be very good to correct. Maybe it is not so easy to code, but it would be worth it because the lists would be much better readable. Thank you for this nice plugin!