Oscar Estepa
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyPress Activity Privacy] Submit button disappears after submittingHi,
The plugin version is still 1.3.8 so I guess there’s no official fix for this yet.
Have you tried clearing your browser cache (and any other cache) after the fix I suggested? being a .js file it’s probably cached by your browser. Try this to clear the cache:
- Mac OS: Cmd + R
- Win/Linux: Ctrl + F5
Regards
Forum: Plugins
In reply to: [View Own Posts Media Only] Conflict with commentsHi colin101,
I think the problem is a checkbox in the configuration page of the plugin:
Settings > View Own Posts…
Hide comments from others posts
Not 100% sure, but I reckon it is active by default and I think it shouldn’t. I was having similar issues to what you described and they all went away after unchecking that option.
Hope this helps.
I just realised that the plugin hasn’t been updated in 2 years which means that it will be obsolete soon. Are you planning of ending this plugin maintenance?
Thanks in advance
OscarHi, I think I can answer myself.
You state in your plugin description:
“Sync all previous comments to your database”
I think now that this means:
“Sync all previous comments made in the FB comment box embedded in your website to your WordPress database”
and not:
“Sync all previous comments made in you FB fan page posts to your corresponding WordPress posts”
If so, I think it would be great if you could update your plugin description to avoid other users getting confused.
Thanks in advance and feel free to mark this topic as resolved.
Regards,
OscarIs this fix going into the next release?
Forum: Plugins
In reply to: [WPNewsman Lite] Fatal error when activating pluginThis plugin won’t work anymore on PHP 5.3?
I have a server running this PHP version for many of my clients, several of which are using WPNewsman Lite and Pro and I would like to know if this is not going to work anymore with PHP 5.3.
In my opinion it shouldn’t be a problem making the plugin backwards compatible with older PHP versions (at least 5.3) I don’t see the point of losing potential clients by making it more restrictive.
Great! Will be looking forward to it.
Thanks for the answer
Forum: Plugins
In reply to: [WooCommerce Sermepa payment gateway] Migración SHA256En realidad el pedido en WooCommerce cambia de “Pendiente” a “Procesando” y manualmente, una vez que se sirve el pedido, cambiamos el estado a “Completo”, pero este es el comportamiento normal, también era así antes de actualizar el plugin de redsys.
En cuanto al periodo de cancelación de 2 horas, estoy seguro de que no me ha pasado, hice un pedido de prueba hace 6 horas y no he recibido ningún email de cancelación, el estado en WooCommerce tampoco ha cambiado a “Cancelado”
Forum: Plugins
In reply to: [WooCommerce Sermepa payment gateway] Migración SHA256No, no he tenido esos problemas, los emails se mandan correctamente (por lo menos los de Woocommerce) y el pedido sí ha cambiado a estado “Procesado” sin problemas
Un saludo
Forum: Plugins
In reply to: [WooCommerce Sermepa payment gateway] Migración SHA256Hi everyone,
Jesús thanks for this great plugin.
I have had some problems because of the file renaming, but it seems to be working now. Also it took me a while to find out that we need to get a new SHA256 hash from the TPV backend, an admin notice in WordPress that warns the users that they need to change the hash would be more than welcome. Otherwise many people will report the plugin as not working.
Jesús, I’m a WP developer myself, if you need a hand programming the admin notice or anything else, please let me know.
You can find me in Twitter: @oscarestepa or using the contact form in my website: http://www.cherrypick.es/, I can send you my email after a first contact.
BTW I’m also a Spanish speaker.
Regards,
OscarForum: Plugins
In reply to: [Advanced Custom Sort] Fix for deprecated mysql_real_escape_string()Please discard my previous diff code, I did not copy it correctly, this one is correct though:
diff --git a/wp-content/plugins/advanced-custom-sort/acs.php b/wp-content/plugins/advanced-custom-sort/acs.php index a000a5b..c8975fb 100644 --- a/wp-content/plugins/advanced-custom-sort/acs.php +++ b/wp-content/plugins/advanced-custom-sort/acs.php @@ -222,10 +222,11 @@ class Acs $opts = array_merge($defaults, $opts); - $group_name = mysql_real_escape_string($group_name); - $group_id = $wpdb->get_var("SELECT ID FROM $wpdb->posts WHERE post_title = '$group_name' AND post_type = 'acs' LIMIT 1"); + $group_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_title = '%s' AND post_type = 'acs' LIMIT 1", $group_name ) ); $posts = get_post_meta($group_id, 'post_order', true); $array = (array) unserialize($posts); + + if ($opts['output'] == 'string') {Forum: Plugins
In reply to: [Advanced Custom Sort] Fix for deprecated mysql_real_escape_string()+1 to the fix proposed by dtateii
I reached the same conclusion before hitting support. Here is a diff in case it helps:
diff --git a/wp-content/plugins/advanced-custom-sort/acs.php b/wp-content/plugins/advanced-custom-sort/acs.php index a000a5b..8296248 100644 --- a/wp-content/plugins/advanced-custom-sort/acs.php +++ b/wp-content/plugins/advanced-custom-sort/acs.php @@ -222,8 +222,7 @@ class Acs $opts = array_merge($defaults, $opts); - $group_name = mysql_real_escape_string($group_name); - $group_id = $wpdb->get_var("SELECT ID FROM $wpdb->posts WHERE post_title = '$group_name' AND post_type = ' + $group_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_title = '%s' AND post_ $posts = get_post_meta($group_id, 'post_order', true); $array = (array) unserialize($posts);It would be great to see this fix added to plugin repo.
Please do not take it on the developer, it is very difficult to test all possible use cases. This is open source software we are talking about so we, the community, are responsible for reporting problems and help fixing them.
I can confirm the same problem using WordPress Multisite 4.1, network enabling the plugin (v5.2.8).
It’s a fresh install using twentyfifteen theme and just the following plugins:
I akismet 3.0.4
N cookie-law-info 1.2.1
N google-analytics-for-wordpress 5.2.8
N multisite-enhancements 1.0.7
N multisite-plugin-manager 3.1.4
I multisite-user-management 1.1
N simple-share-buttons-adder 5.5
N wordpress-mu-domain-mapping 0.5.5.1
N wordpress-seo 1.7.1Legend: I = Inactive, N = Network Active
Hi,
just to confirm that the hotfix is working perfectly.
I just voted “works” on your plugin home 😉
Many thanks!!!