dpeschio
Forum Replies Created
-
fixed
Just looked and this issue seems to have resolved itself…?
Forum: Plugins
In reply to: [Contact Form 7 Extension For Mailchimp] Groups support?I’d like to add my support to the list of people clamoring for support for MC groups!!! I’m happy to help with beta testing any solutions you’re working on!
- This reply was modified 6 years, 8 months ago by dpeschio.
Forum: Plugins
In reply to: [Contact Form 7 Extension For Mailchimp] Group/ Segmentation Functionality?I’m here to up-vote support for groups!
Forum: Plugins
In reply to: [Contact Form 7 Extension For Mailchimp] How to contact the developer?That ’email me’ form just above the footer doesn’t work for me. It’s not that it hangs, there’s just nothing below “I not around, but I can still help. Shoot me an email!”. Anyone else find it ironic that the guy who writes code for email forms doesn’t have one on his site?
Forum: Plugins
In reply to: [Contact Form 7] Contact form 7 not working on safari browserWhat worked for me was adding the following code to functions.php
`add_filter( ‘wpcf7_support_html5_fallback’, ‘__return_true’ );
keep in mind a few things when editing functions.php:
The type of single quotes you use can sometimes be problematic. If cutting and pasting the code doesn’t work, delete and retype all the ‘
DON”T USE THE WORDPRESS EDITOR TO EDIT FUNCTIONS.PHP – if you have the code improperly formatted it will shut down the site and you won’t be able to access the editor. Use FTP or file manager.
Forum: Themes and Templates
In reply to: Avada 4.0.1 Installation IssuesAnd the way I got 4.0.1 installed past step 7 was to clear all the edits I had made to my .htaccess for caching the site, then go into wp_options in the database and in active_plugins, cut all the data from active_plugins values and save it to a .txt file for backup in case I totally screwed the pooch. After clearing those values, which deactivates all the plugins, I was able to access my site from the front end and re-activate all the plugins. And now we’re back cooking with grease.
If you’re not comfortable working in phpmyadmin, I’d strongly suggest backing up your whole database before making any changes instead of just the temp backup described above
.Forum: Themes and Templates
In reply to: Avada 4.0.1 Installation IssuesI had the same problem. Took me a day and a half to trace it and then fix it – Then I found that Theme forset has a patch that worked for me. – But this won’t help the Avada 4.01 / WP 4.5 issue.
That is indeed the case. I guess I should read the documentation more closely. Thank you for the quick response.
It may save you a bit of trouble if you include one of those notices at the top of the dashboard telling folks about the change so they don’t panic when srcset doesn’t appear in the editor.
Thanks for a great plugin!
Just looked at uploads directory and it is creating the variety of image sizes required.
So, we’ve got that going for us.
Forum: Plugins
In reply to: [Contact Form 7 - InfusionSoft Add-on] Conflict with WooCommerce plugin!Hey folks – having the same issue. Were you able to resolve it? (moved line 11 to 165 and communication with IS stopped)
Thanks Nate – I’ll give it a go and keep you posted.
I was just working on this same problem. Heres the css solution I used:
.rtb-booking-form fieldset { width:49%; float:left; margin:0px; padding:0px; position:relative; }
I also wanted to style the submit button:
.rtb-booking-form button { display: block; font-size: 1.1em; font-family:inherit; text-transform: none; padding: 10px 35px; color: #000; background-color: #555; background: -webkit-linear-gradient(#9f9f9f, #bdbdbd); background: linear-gradient(#9f9f9f, #bdbdbd); border: 0 none; border-radius: 0px; cursor: pointer; } .rtb-booking-form button:hover { background-color: #9f9f9f; background: -webkit-linear-gradient(#bdbdbd, #9f9f9f); background: linear-gradient( #bdbdbd, #9f9f9f); }
Forum: Plugins
In reply to: [Testimonials Widget] rename the shortcodeOK- so thats what I ended up doing.
For those that are having the same problem, here’s how I solved it:
The AVADA theme uses Fusion Core for its shortcodes (it took me a while to figure that out). Once I did, in class-testimonials.php I commented out lines 24 and 25
/*add_shortcode( 'testimonials', array( $this, 'render_parent' ) );*/
/*add_shortcode( 'testimonial', array( $this, 'render_child' ) );*/
Now your testimonials plugin is working great.
Thanks!
Forum: Plugins
In reply to: [Facebook] Thumbnail image is too small to post to Facebook feedI’m marking this resolved.