kender
Forum Replies Created
-
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] Convert CF7 Multiple to CSVI was able to do this with this code block
// convert cf7 multi to csv for email
add_filter('wpcf7_posted_data', function($data) {
// List the CF7 field names you want to convert
$fields_to_csv = [
'field-name', // for [select states id:states multi "options"] - enter 'states'
];
foreach ($fields_to_csv as $field) {
if (!empty($data[$field]) && is_array($data[$field])) {
$data[$field] = implode(', ', $data[$field]);
}
}
return $data;
});Forum: Plugins
In reply to: [MailRoute - Conditional Email Routing For Contact Form 7] Cannot save formit does save after disabling only this plugin (I am having the same issue)
it looks like the problem exists on forms that the conditional routing is not set on. so if it is not enabled and you have no options selected on the conditional routing tab there is a required field that is not filled in and it prevents the form from submitting, because it is behind a different tab the user is not notified about the required field (the if drop-down field)
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Block Spam attemptsthanks for the info, I will pass it along to the relevant people
Forum: Plugins
In reply to: [Save as PDF Plugin by PDFCrowd] pdfcrowd-remove not removing from outputApologies. when testing after moving to live it worked, I ran more tests and discovered it was caching issue in the beta environment, once I purged the cache it seemed to work as desired. Thank you for your rapid responses and attention to detail.
Forum: Plugins
In reply to: [Save as PDF Plugin by PDFCrowd] pdfcrowd-remove not removing from outputif you provide an email i can use for support, i will set up a page on the live site for you to review
can we get an update on when this fix will be made?
done
Submitted your support form
I cant roll back the clients site and break it to run these tests, but I can tell you that the CF7 form in question has nothing selected in the “popup maker” tab of the form, so maybe the error is when the form doesn’t call popup maker but the plugin is looking for something?
@benlamm seems to have had the same issue and he says that it does fix the issue with rollback, perhaps he can test for you
You can find the changelog for all Yoast plugins here (tells you current and past versions and release dates – I found one 2 years out of date due to lack of notice it was updated by Yoast)
Forum: Plugins
In reply to: [Progress Bars] Some RecommendationsThanks a lot, I know not all may be possible, for feasible, but I appreciate you looking into it
Forum: Plugins
In reply to: [Slide Anything - Responsive Content / HTML Slider and Carousel] Plugin errorThe clones are needed for infinite scrolling loop, I assume the images are background images (they show as a data-bg tag in the html with the url).
Same issue is happening to me, I believe the clones are not properly fetching the background image to display, possibly due to when the page loads in the dom.
I have no solution, but I will follow this ticket for a possible update from the developer
If it is the same problem as me, it is at the end of the slider, where it loops into the beginning to start over, yes (a quick look at your page didn’t show me which slide had the problem)?
To me, it looks like the “cloned” items (first few slides) aren’t showing the background image properly and when it loops back to the first item (start) they all show properly again.
So it looks like some slides are missing, but if you look at the last visible and the first visible, they are all there, but the in between when it is about to start over then some go missing?
I don’t have a fix, but if that is the same issue I will be following this thread for an update
Forum: Plugins
In reply to: [Export Featured Images] Works on 5.9.xalso on 6.0.2
Forum: Plugins
In reply to: [Redirection for Contact Form 7] AVG Antivirus flags plugin file as TrojanI just got the same message, thanks for the quick response and keeping up with it