Frique
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Table Builder - WordPress Table Plugin] WP Table Builder@luis-solivan Sorry, my message was supposed to be addressed to @protibimbok the developer.
To reproduce:
1. Install the plugin (free)
2. Create a new table
3. Press save
4. The before-mentioned error message is shown because “Undefined array key “isEmpty” in …/plugins/wp-table-builder/inc/admin/element-classes/tablerenderer.php on line 305″ among others.Forum: Plugins
In reply to: [WP Table Builder - WordPress Table Plugin] WP Table Builder@luis-solivan There are PHP notices about missing variables related to settings that can only be set using the Pro version. So with WP_DEBUG enabled and using the freemium version, the ajax response is always broken when saving the table. Please debug yourself using a non-pro version.
- This reply was modified 4 days, 11 hours ago by Frique. Reason: details
Forum: Plugins
In reply to: [WooCommerce Google Feed Manager] Missing ability to filter valuesHi Michel,
I did not know about the “wppfm_feed_item_value” filter. That will work just fine for now. Thank you!
Forum: Reviews
In reply to: [Search & Replace] Does not work on multi-site an advertisedWorks fine on multisite in my case.
Forum: Plugins
In reply to: [Nextend Social Login and Register] API version alarm from Facebook receivedSame here. Using the latest version of the plugin but got an email warning from FB about using the soon to be unsupported 2.0 Graph API.
Forum: Plugins
In reply to: [Imsanity] png to jpg bulk conversionThe original question seems to be about including the PNG to JPG conversion in the bulk-process feature. I would also find this very useful.
Forum: Plugins
In reply to: [WooCommerce] Site broken in Chrome (SSL issue)So that would explain why it only happens when WC is installed, even on non-wc pages.
Forum: Plugins
In reply to: [WooCommerce] Site broken in Chrome (SSL issue)@tdelmas Thanks for the details. Fortunately it’s just Chrome beta and an acknowledged bug so it can be fixed before public release.
Forum: Plugins
In reply to: [WooCommerce] Site broken in Chrome (SSL issue)Glad to help. If the login page still tries to redirect to HTTPS it might help to clear the browser cache.
Forum: Plugins
In reply to: [WooCommerce] Site broken in Chrome (SSL issue)I’ve posted about this here: https://frique.me/blog/chrome-wordpress-ssl-bug/
In short: the is_ssl() function was returning true on my non-ssl sites. WooCommerce uses is_ssl() a lot but it’s not a WooCommerce specific issue. My fix was to put the following line in a plugin’s functions.php (can be your theme’s functions.php aswel):
$_SERVER['HTTPS'] = false;
Forum: Plugins
In reply to: [Edit Author Slug] Role Based Author Slug Issues@johnsimoneau I noticed this is now fixed in official release 1.0.3.
Forum: Plugins
In reply to: [Edit Author Slug] Role Based Author Slug IssuesAfter some debugging, I fixed it by switching the arguments of
array_replace_recursive()
around in 3 places. In edit-author-slug.php line 345, admin-functions.php line 576 and 626. The defaults kept overwriting the custom changes otherwise.Forum: Plugins
In reply to: [Edit Author Slug] Role Based Author Slug IssuesI’m having the same issue. The custom author-role slugs are not saved. I’m on PHP 5.4, WP 3.9.2 and 4.0, don’t think i have mod_security installed. It’s really only your plugin. Does it use any deprecated database methods maybe? I’m running a bunch of WP installs and plenty of different plugins on the same system.