fonefixer
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form DB] Remove scroll bars from CFDB-HTMLHi Michael,
Sorry, my mistake…cfdb-table. What I would like to do is remove the scroll bars and auto resize the cells to fit the data.
Forum: Plugins
In reply to: [Date and Time Widget] How to add the day?A bit late, but i’ve just had to do this….
Here’s how. You’ll have to edit 2 files
After line 301 of date-time.php add
"longw" => date( "l F j, Y", current_time( 'timestamp', 0 ) ),
And in widget.js after line 7 add
var weekdays = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
After line 18 add
var weekday = currentTime.getDay();
After line 32 add
else if (date_format == "longw") { $date.text(weekdays[weekday] + " " + months[month] + " " + day + ", " + year); }
Hope this helps
- This reply was modified 7 years, 8 months ago by fonefixer.
Fixed this myself. Some of the CF7 mail tags weren’t copied correctly from the form, causing the form to hang on submission.
Further to this, i’ve just realised the button doesnt re-enable after the form is submitted successfully either, nor does the ajax loader show up when the button is initially pressed.
Forum: Plugins
In reply to: [Contact Form 7] Mail Message Body Mail Tags Not Emailing Over InfoHi,
Im not the plugin author but ill try and assist. Firstly you had no closing paragraph tags, and i believe the day and time selector was incorrect. Try the adjusted code below in the form, click “Save” then navigate to the mail tab. You should see two mail tags available [radio-905] and [your-day] Place those in the email, click save again and it should work.<p>Which Mentoring Program Are You Interested In? (required)<br />
[radio radio-905 default:1 “One Hour Intensive” “Four Hour Intensive” “Full-Day Intensive Workshop”]</p><p>Select your preferred day and time and based on availability, I will respond with availability. If you need to request a different day of the week and time slot, please let me know and I’ll do the best I can to accommodate it. <br />
[select your-day multiple “Monday 9AM-10AM” “Monday 10AM-11AM” “Monday 11AM-12PM” “Monday 12PM-1PM” “Wednesday 9AM-10AM” “Wednesday 10AM-11AM” “Wednesday 11AM-12PM” “Wednesday 12PM-1PM” “Friday 9AM-10AM” “Friday 10AM-11AM” “Friday 11AM-12PM” “Friday 12PM-1PM”]</p>
Forum: Plugins
In reply to: [Contact Form DB] Feature Request: Add “Print all” button to admin screenHi,
Yes it would, i think exporting to html would work, i was just trying to think of a way to incorporate a print shortcode from the print plugin into such a page because ideally i only want the table printed, using the browser print function prints everything including the sidebar and admin barForum: Plugins
In reply to: [Contact Form DB] Feature Request: Add “Print all” button to admin screenFurther to this, I added some code to CFDBViewWhatsInDB.php and it works fine for my needs in that it provides a link to a page on the same site containing an html shortcode to display data from a specific form, which the user with sufficient priviledges can then print.
I realise that my changes will be lost when the plugin is updated, so I will change my request as follows:
Could you please possibly include a “Print Entries” link in the admin page, with an option to specify the address of the page in options?
Forum: Plugins
In reply to: [Contact Form DB] Contact form DB disables contact form 7 emails?Hi,
Not in my experience, no. To do that you would have to put demo_mode: on in the additional settings of a form to disable the mailer.- This reply was modified 7 years, 10 months ago by fonefixer.
Thanks very much, worked like a charm!
Forum: Plugins
In reply to: [Opening Hours] Stops Site Origin CSS Visual Editor working When ActivatedHi,
Yes, there is…
“TypeError: t.datepicker is not a function” and it refers to a file called “main.js 1:2700” in the dist/scripts folder.
That any help?
Hi Scraido,
I’m not using the redirect option. I’m actually thinking it may be a bug, because if an error is encountered on submission the form automatically scrolls to the first error and highlights it, but on successful submission users have to manually scroll up to see the green confirmation message at the top of the form.
Ideally I would just like the page to automatically scroll to the messages on both successful and unsuccessful submission.
Thanks in advance.