Gytis Repečka
Forum Replies Created
-
Forum: Plugins
In reply to: [Widget Logic] Incorrect “Widget Logic team security recommendation”Instead of using remove_action you can just comment the code which adds action 😉
Forum: Plugins
In reply to: [Widget Logic] Taking over and forking this pluginShould have thought about that before. Luckily you haven’t put hotlinked invisible pixel or external script but after this promo spam nobody can trust you won’t in some near future.
Forum: Plugins
In reply to: [Widget Logic] Incorrect “Widget Logic team security recommendation”Unfortunately that is very common nowadays with old WordPress plugins that already has large user base 🙁
Forum: Plugins
In reply to: [Widget Logic] Incorrect “Widget Logic team security recommendation”Well you can cleanup it yourself – see lines 45-62 in widget_logic.php:
if ( is_admin() ) { if ( get_option('widget_logic_version') != WIDGET_LOGIC_VERSION ) widget_logic_activate(); if ( !file_exists(WP_PLUGIN_DIR.'/limit-login-attempts-reloaded') && current_user_can('install_plugins') ) { $promo = (array)get_option( 'wpchefgadget_promo', array() ); if ( empty( $promo['limit-login-attempts'] ) ) { add_action( 'admin_notices', 'widget_logic_promo'); add_action( 'network_admin_notices', 'widget_logic_promo'); add_action( 'wp_ajax_wpchefgadget_dissmiss_promo', 'widgel_logic_dissmiss_promo' ); add_action( 'admin_enqueue_scripts', 'widget_logic_promo_scripts' ); } //enqueue admin/js/updates.js } }Forum: Plugins
In reply to: [Compliance by Hu-manity.co] Cookie Notice not compatible with W3 Total CacheCorrect me if I’m wrong, but let’s assume following situation: visitor has accepted cookies yesterday, so cookie on his machine is present. Now today site admin updates one or another WordPress plugin and as advised by W3TC clears cache. Visitor comes to site today and let’s say he is the first to come after cache cleanup. As cookie is already present, Cookie Notice will not be rendered by PHP script and not included to HTML output. This HTML will be cached and therefore I assume another visitor won’t see Cookie Notice because cached HTML will be served.
Or you think this is invalid use case?
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Doubles search resultsProblem now solved with the recent version, marking “works”. Thanks!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Doubles search resultsOne language repeated twice (each post/page).
Forum: Plugins
In reply to: [EG-Attachments] [Plugin: EG-Attachments] SSL compatibilityGreat, works smooth now 🙂
Figured out the problem – it only processes JPEGs 😀