primasilva
Forum Replies Created
-
Forum: Plugins
In reply to: [Fast Secure Contact Form] Integration with MailChimp?It doesn’t. But I half got it to work by adding to the HTML of the last field in the form:
<p> <label> <input type="checkbox" name="mc4wp-subscribe" value="1" /> Join our mailing list? </label> </p>It’s only sending the name & email to Mailchimp, though – not the rest of the fields, even though I named them correctly. But I guess it’s better than nothing!
Forum: Plugins
In reply to: [Contact Form 7] Sometimes "Failed to send message" Error, Sometimes SuccessThanks for the tips, buzztone – updating the From headers to an address on our server did the trick!
Forum: Plugins
In reply to: [Contact Form 7] Sometimes "Failed to send message" Error, Sometimes SuccessThe error is most definitely with CF7.
I tried:
1. Uninstalling/Reinstalling CF7
2. Deactivating/Reactivating Contact Forms DB
3. Using FS Contact FormFS Contact Form worked perfectly…but I like CF7 better because it has a couple more functionalities that I need.
It seems like the issue is happening when someone uses the same email to complete a form twice. Never used to do this, though!
Forum: Plugins
In reply to: [Email Before Download] Vertical textHi, same problem here – any help would be much appreciated! Tried to change the css with no luck :-/
Forum: Themes and Templates
In reply to: [Customizr] Adding Custom Social Media Icon in FOOTER?Nevermind, I got it. Just tweaked the same code & added the footer hook thingy.
Forum: Themes and Templates
In reply to: [Customizr] Adding Custom Social Media Icon in FOOTER?Thanks, but I mean they’re CUSTOM custom. Like not part of the original genericons package.
Basically had to use a modification of this for the header & I need to know where to add the same thing for the footer: http://www.themesandco.com/snippet/adding-custom-social-profile-link-icon-header/
Forum: Themes and Templates
In reply to: [Customizr] Adding Second Button to one Slide in Slider?Awesome, I think that did the trick – Thanks so much for both your help!
Forum: Themes and Templates
In reply to: [Customizr] Adding Second Button to one Slide in Slider?Shoot, nevermind, that was a no-go. That CSS also removed the Intrusion Alarms button that I need. So the new Home Protection button must actually be appended to the Intrusion Alarms one?
Forum: Themes and Templates
In reply to: [Customizr] Adding Second Button to one Slide in Slider?Ugh… it still shows in the collapsed menu, though >.<
Forum: Themes and Templates
In reply to: [Customizr] Adding Second Button to one Slide in Slider?Thanks SO much for your help, that works for now at least!
I used the code in the snippet nikeo provided:
/** * Adds another button to Customizr slider */ add_action('wp_footer' , 'add_secondary_button_to_a_slide'); function add_secondary_button_to_a_slide() { ?> <script type="text/javascript"> jQuery(document).ready(function () { ! function ($) { //prevents js conflicts "use strict"; var target_original_button_link = '<?php echo get_permalink(71) ?>'; var new_btn_content = ' <a class="btn btn-large btn-warning" href="<?php echo get_permalink(128) ?>">Home Protection</a>'; //checks if the target slide url exists first if ( $('a[href="'+ target_original_button_link +'"]').length === 0 ) return; //adds the new button html content after the original button $('a[href="'+ target_original_button_link +'"]').after(new_btn_content); }(window.jQuery) }); </script> <?php }Forum: Themes and Templates
In reply to: [Customizr] Adding Second Button to one Slide in Slider?Thanks, I’m fine with my dropdown. But the extra button is still there. See image below
^ The orange one that says Home Protection.
Forum: Themes and Templates
In reply to: [Customizr] Editing Mobile MenuThanks, that worked!
Forum: Themes and Templates
In reply to: [Customizr] Adding Second Button to one Slide in Slider?If you look in the nav menu at Business->Intrusion Alarms, you can see the extra Home Protection button
Forum: Plugins
In reply to: [File Away] Show to Logged Out People?Sweet, it’s working for me as well. Thanks for the quick bug fix!
Forum: Themes and Templates
In reply to: [Customizr] Adding Second Button to one Slide in Slider?Hey, so I used your snippet and ran into another problem – the extra button now also appears in the nav menu :-/