timbr
Forum Replies Created
-
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Beta?Same question came to mind here. Upgrading from 3.x.x to 4.x.x should be enough of a warning, but sure. Thanks David.
Forum: Plugins
In reply to: [Export All URLs] Missing CSVSame problem here. The download link is
/static/Exported_Data.CSV
. I customized/wp-content/uploads/
to/static/
so that’s correct but the file is not there. @melanieabl do you have a custom uploads location as well?Sidenote: A list of all urls (that might not be Published) is somewhat private data. I would recommend giving it a name that involves a random string, that way nobody can try to mine your users’ data with a bot that checks for
Exported_Data.CSV
.- This reply was modified 7 years, 5 months ago by timbr.
Forum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] Avoiding sender address overrideI needed the same thing. Leaving the sender address and name blank should do this imo but it doesn’t at this time.
For future readers:
if ( !is_admin() ) include_once( ABSPATH.'wp-admin/includes/plugin.php' ); if ( is_plugin_active( 'wp-html-mail/wp-html-mail.php' ) ) add_filter( 'haet_mail_use_sender', function( $use_sender, $mail ) { return false; }, 10, 2 );
- This reply was modified 7 years, 8 months ago by timbr.
+1
Forum: Plugins
In reply to: [Lazy Load for Videos] Notice: Use of undefined constant WBOUNCE_OPTION_KEY+1.
Forum: Plugins
In reply to: [Rename wp-login.php] Can't login before/after update of rename-wp-loginJust chiming in to say that the latest version works fine for me, in case anyone sees your thread and is scared to update.
Forum: Plugins
In reply to: [Bulk Page Creator] Constructor deprecated (PHP7)It’s working, thanks again.
Forum: Plugins
In reply to: [Custom Post Type UI] Menu icon in dahboard too large*edit* post removed, known and fixed issue.
Sent pull request. To fix it yourself change below.
Current:
$t_tab_name = $_GET['tab'];
Fixed:
$t_tab_name = ( isset( $_GET['tab'] ) ? $_GET['tab'] : false );
+1 to bring this to the attention of Kamal.
In the meantime just apply the fix in Rumenchoo’s post yourself.
Forum: Plugins
In reply to: [Store Locator Plus?] 4.3 and White page of death+1. Here’s the bug from my error log:
[21-Aug-2015 13:53:23 UTC] PHP Fatal error: Class 'SLP_Settings' not found in /REMOVEDPATH/wp-content/plugins/store-locator-le/include/class.settings.php on line 6
Forum: Plugins
In reply to: [Campaign Monitor Synchronization] Feature request: User rolesFor any future readers: We got this implemented in the free/public version.
Forum: Plugins
In reply to: [Custom Post Type UI] Pending 1.0.5 releaseHey Michael, the change from priority 11 to 10 also works on my test-site with 5 CPTs! Is this it? The permanent fix? Time for a 1.0.6 update?
Forum: Plugins
In reply to: [Custom Post Type UI] Pending 1.0.5 releaseSorry, doesn’t work here. Tried the permalink save, CPT save, CPT change save & change back save. When I install 0.9.5 again that does work.
Forum: Plugins
In reply to: [Meta Box] Your plugin throws a warning (Invalid argument)IIRC
$meta_boxes
was empty, that’s why the foreach threw the warning. I see the problem still exists today….Instead of
isset
,is_array
or!empty
would’ve been better indeed.