mattmatt88
Forum Replies Created
-
Forum: Plugins
In reply to: [GEO my WP] Problem with post__in query filterCould you reproduce the issue?
I hope the explanation was good enough.Forum: Plugins
In reply to: [WP Offload SES Lite] Different Log files for multisiteThanks got it
Forum: Plugins
In reply to: [PDF Creator Lite] Adding some kind of tablesThanks for the information and the links.
Finally found this snippet to make it work. Just needed to add <<<EOD$htmlStr .= <<<EOD <table cellspacing="0" cellpadding="0" border="0"> <tr> <td>Beschreibung<br/>aaa</td> <td align="right">Betrag<br/>bbb</td> </tr> </table>
Forum: Plugins
In reply to: [PDF Creator Lite] Adding some kind of tablesCorrect, there’s no problem with the custom fields.
Just need a solution for tables or floats.Thank you for the fast response
Forum: Plugins
In reply to: [wpMandrill] Schedule Emails – How to?that WORKS.
Thank you very much!!!Forum: Plugins
In reply to: [wpMandrill] Schedule Emails – How to?Thanks a lot, got it working!
Would you mind giving an example to cancel the email?
I’m not the best coder.Forum: Fixing WordPress
In reply to: Meta_query to compare two key valuesI really need that soon.
Can anyone help please?Looks like it works again after I’ve deactivated “Force Logout”.
Is there a way to activate Force Logout (set to 43000 min) with still be able to use wp_set_auth_cookie?Found a solution. E.g. add this to your functions.php to get invoicenumbers
NR10001
NR10002
NR10003function my_pmpro_random_code($code) { global $wpdb; $result = $wpdb->get_var("SELECT code FROM $wpdb->pmpro_membership_orders ORDER BY id desc LIMIT 1"); if ($result) { $result = substr($result, 2); $result = intval($result)+1; $code = 'NR'.$result; } else { $code = 'NR10001'; } return $code; } add_filter("pmpro_random_code", "my_pmpro_random_code");
Anyone? Also need to know that.
Forum: Plugins
In reply to: [wpMandrill] How do people create templates?Got it. Put this code in your template:
<div mc:edit="main"></div>
Forum: Plugins
In reply to: [wpMandrill] How do people create templates?Also would like to know, how to insert the WP content in a template.
Forum: Plugins
In reply to: [Free mobile number verification for CF7] Just hangs, doesn't submitHaving the same problem.
Asked the support several times via mail but don’t get any response.Forum: Plugins
In reply to: [Front End PM] Add href link to email messageHave tried both headers.
But THANK YOU 1,000 TIMES! You’re right, it works with HTML header and BRForum: Plugins
In reply to: [Front End PM] Add href link to email messageThe link does work with your version too.
But all “\r\n” in the whole message (not only this line) don’t work anymore, if I add such an a href tag. The same problem, if I write the link in the a href tag, instead of using the variable.
Only if I remove the a href tag, it works again.
Spent hours with this problem and just don’t know why.