danielkoch95
Forum Replies Created
-
Hello,
thank you for the reply. The issue was as you described. Problem is in gsuite and gmail settings itself since by default main email account “cant” send emails to his alias.Issue is described here:
https://support.google.com/a/answer/1703601?hl=en&fbclid=IwAR3Od5TBAQVa5hJauYjcYQu2A8cBouofuy664dgprkGJIrHJgCFEV0b3VzkSo the problem was not in your plugin but in gsuite.
However we decided to use sendgrid instead and we are very satisfied.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] archive-podcast.phpHello @arnesonium ,
the best workaround for me was to build new template and publish page called podcast. In the template I used basic WP query.Forum: Plugins
In reply to: [Seriously Simple Podcasting] archive-podcast.phpHello,
i tried this solution, however it did not work. Changed to default, saved and than changed back to custom and the problem remained.Forum: Plugins
In reply to: [Seriously Simple Podcasting] archive-podcast.phpHello,
i have the same problem. Single.php works fine, but archive-podcast.php just does not work. I did workaround and used wp_query but is there anyway, that there is trouble with this template? I have Child theme of Divi. The problem remians only with cpt podcast.Forum: Plugins
In reply to: [CF7 Google Sheets Connector] Custom mail tagsHi @westerndeal,
please, do you know, how should i rewrite my function to be compatible with your plugin?
Thank you in advance.add_filter('wpcf7_special_mail_tags', function($output, $name, $html) { if ('trial-klic' == $name) { $conn = new mysqli("localhost","db","db_pw","db_name"); $query = "SELECT * FROM "table" ORDER BY Key DESC LIMIT 1"; $result = mysqli_query($conn, $query); $row = mysqli_fetch_assoc($result); $data = $row['Key']; $sql_del = 'DELETE FROM table ORDER BY Key DESC LIMIT 1'; mysqli_query($conn, $sql_del); mysqli_close($conn); return $data; } return $output; }, 10, 3);
Forum: Plugins
In reply to: [CF7 Google Sheets Connector] Custom mail tagsHi,
that was the first i tried, thats why i posted this question and attached my custom code. This solution doesn′t work and i would like to ask, if there is any workoaround.
Thanks