greghollowell
Forum Replies Created
-
Got it – thank you for your prompt reply.
@jdembowski – Hello, I’m experiencing the same issue as @msheldon. Where can I see any responses to this issue? I can’t figure out why these wouldn’t be publicly available – it would save you time.
Many thanks!
Will do – thanks for your quick reply.
- This reply was modified 7 years, 7 months ago by greghollowell.
Forum: Plugins
In reply to: [AMP] Advanced Custom fields content are not showing itOne thing you can do is create a custom template, as described here in the AMP plugin’s readme file: https://github.com/Automattic/amp-wp/blob/master/readme.md#custom-template
Forum: Plugins
In reply to: [Gravity Forms Constant Contact] PHP 7 CompatibilityIn the meantime…
To make this version PHP7 Compatible, change line 82 of plugins/gravity-forms-constant-contact/api/cc_class.php from:
return eregi(“^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$”, $email);
to:
return preg_match(“^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$”, $email);Forum: Plugins
In reply to: [Widget Logic] Issues with PHP 7Alan Trewartha,
Any plans to bring Widget Logic up to speed with PHP7? Doesn’t seem like it will take much…Many thanks!
Forum: Plugins
In reply to: [Gravity Forms Constant Contact] PHP 7 CompatibilityHi there,
Same question, same errors and warning as vijuston found using the WP Engine PHP Compatibility Checker. I’d love to keep using your plugin if possible.
Thank you.Forum: Plugins
In reply to: [WooCommerce] Changing the lightbox image size@jonas-lundman, great solution – works like a charm. Thanks!
Forum: Plugins
In reply to: [Groups] Groups "conditionals"?Deeve,
You can use something like this:<?php echo do_shortcode(‘[groups_member group=”this group”]’.
‘Hey you’re a member of this group.’.
‘[/groups_member]’); ?>– but that’s really just a workaround. I, too, am looking for a traditional if statement in which I could check for membership to multiple groups – if( is_member(‘this group’) && is_member(‘that group’)) – no success as of yet.
Anyone?
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 not working after update to WP 3.6I’m using Contact Form 7 3.5.1 – the version that was released yesterday…