kerrylgeiger
Forum Replies Created
-
Forum: Plugins
In reply to: [Multi Order for WooCommerce] Orders not displaying in Adminwill do
Forum: Plugins
In reply to: [MailChimp Forms by MailMunch] Couldn’t resolve host errorI had to move on to another plugin, so I”m not able to test. Thank you for addressing though.
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Undefined offset errorI have this issue as well. Thanks for the development on this useful plugin!
Forum: Plugins
In reply to: [Contact Form 7 Extension For Mailchimp] 1st time usingI’m having same issue. Even named fields exactly the same as docs, but will not add to list.
UPDATE – I had to verify a domain with mailchimp, and I adjust MC list setting to domain that the subscribers are coming from, and it now is working
Forum: Reviews
In reply to: [WooCommerce] PCI DSS security failure!I use Woocommerce and we are in the process of becoming PCI compliant. It’s based on the gateway and merchant more than the software. A 3rd party is required to evaluate your site in terms of security, much of which is standard in WP if you use a reliable host. Remember, PCI compliance is a set of “guidelines” not specific instructions – therefore it has to be evaluated despite which solution you use. You will note that the hosted services that offer PCI compliance do not let you have any control over the transaction (pages, processes et al) – this is because they don’t want to “evaluate” for each of their hosted stores.
Hi, I solved this issue by editing cs_style.css
1) open cs_style.css
2) find .widgets-php #wpcontent, .widgets-php #wpfooter
3) replace with
.widgets-php #wpcontent, .widgets-php #wpfooter {
margin-right: 59%;
}Couple things
1) If you have a form that may have blank data and you don’t want those fields to be created after update make the change dskvr suggests above and enclose the 2 following lines in an if blank check.
$meta = get_post_meta($this->post['ID'], $field['postCustomFieldName'], true); if($meta != '') { delete_post_meta($this->post['ID'], $field['postCustomFieldName']); add_post_meta($this->post['ID'], $field['postCustomFieldName'], is_array($meta) && count($meta) == 1 ? $meta[0] : $meta, true); }
For cleanapple, you have to make sure your link is in the WP loop on your template otherwise the_ID will not work – maybe that’s it?