wordpresschamp
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Store Locator] Pins don't display popup Info, More Info broken as wellIt was Jetpack, but I still haven’t pinpointed what specifically in it was causing the issue.
Forum: Plugins
In reply to: [WP Store Locator] Pins don't display popup Info, More Info broken as wellI think it’s something in Jetpack causing it, but can’t figure out what. Turning that off fixes it.
Forum: Plugins
In reply to: [Contact Form 7] CF7 adds email and name to MyMail listAwesome. Thanks ever so much! I will play around with it and try to get it working on my setup.
Forum: Plugins
In reply to: [Contact Form 7] CF7 adds email and name to MyMail listThanks.
I still don’t get how to use the code.
I understand to put it in functions.php, but is that for the theme or the plugins functions.php.
And where in the file, beginning, end, certain section, before a specific line?
Also, how do you edit the code to work with a specific form you created or a specific newsletter you created?
It still seems so confusing. I tried playing around with it thinking of those questions, but was never able to get it working.
🙁Forum: Plugins
In reply to: [Contact Form 7] CF7 adds email and name to MyMail listNo and I’m still looking. I found some code somewhere, but couldn’t figure out how to use it. Apparently, this is the answer we’re looking for.
/*
* requires a checkbox with the name “newsletter” in your CF7
*/
function wpcf7_my_validate( $result, $tag ) {
$type = $tag[‘type’];
$name = $tag[‘name’];if ( ’ncf’_form == $name ) {
$subscribe = isset($_POST[$name]);if(function_exists(‘mymail_subscribe’) && $subscribe){
$email = $_POST[’email’];
$userdata = array(
‘ncf_name_field’ => $_POST[‘firstname’],
‘ncf_email_field’ => $_POST[‘email’],
);
$listname = “newsletter-subscribers”;
mymail_subscribe($email, $userdata, $listname);
}
}return $result;
}
add_filter( ‘wpcf7_validate_checkbox’, ‘wpcf7_my_validate’, 10, 2 );Forum: Plugins
In reply to: [My Shortcodes] My Shortcodes is becoming Caldera Engine – help neededThank you!
Forum: Plugins
In reply to: [My Shortcodes] My Shortcodes is becoming Caldera Engine – help neededNo offense, but you go to calderaengine.com and you can’t tell what the hell your plugin does or is. Had I not seen My Shortcodes first, I would have been lost.
Please update My Shortcodes. I would pay for this plugin to just be compatible with the latest WordPress and be free of bugs.
Forum: Plugins
In reply to: [My Shortcodes] Alignment of icon in WP3.8 admin menuYes, please update this.
Is this plugin no longer being worked on?
Forum: Plugins
In reply to: [My Shortcodes] Alignment of icon in WP3.8 admin menuI’m also interested in this update.