markob83
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unable to update plugins or themesMight be a permissions issue. Are you able to install/add a plugin?
Forum: Plugins
In reply to: [CF7 DatePicker] Date Format@internetgenie Sorry for the late reply. I am currently working on an update that will include this feature. I’m hoping to release it by the end of the week.
Forum: Themes and Templates
In reply to: [Virtue] Change icon sizeChange ‘span3’ to ‘span2’. See sceenshot
Forum: Themes and Templates
In reply to: Box padding – text stays in the same placeLike this? https://jsfiddle.net/SEEdY/3/
Forum: Plugins
In reply to: [CF7 DatePicker] Datepicker not working after UpdateSorry about that. Can I have the link to your website?
Forum: Reviews
In reply to: [CF7 DatePicker] Works great but needs more flexibilityForum: Reviews
In reply to: [CF7 DatePicker] Works great but needs more flexibilityHey sorry for the late response.
To use multiple instances of the Datepicker you should just be able to swap out the ID with a class name.
ex.
jQuery(document).ready(function($) { $('.SOMECLASS').datepicker({ autoclose: true }); });
I was able to solve the spinning issue by deleting the ‘WP Super Cache’ cache files that were in the plugins folder.
Hope this helps….
Forum: Plugins
In reply to: [Contact Form 7] Date Picker problemCan you send me a copy of your theme? My email address is [email protected]. I can take a look at it tomorrow.
Forum: Plugins
In reply to: [Contact Form 7] Date Picker problemTry using the Twenty Twelve theme
Forum: Plugins
In reply to: [Contact Form 7] Date Picker problemOops, I found a bug. I updated the plugin. Delete the old one and try this one
sorry about that
Forum: Plugins
In reply to: [Contact Form 7] Date Picker problem@dewetvanrensburg delete everything you added. I created a plugin to help you out. You can download it here
Install and activate the plugin and generate a text field with “cf7-datepicker” as the id.
example –
[text text-589 id:cf7-datepicker]
Forum: Plugins
In reply to: [Contact Form 7] Date Picker problemCan you provide a link to your site?
Forum: Plugins
In reply to: [Contact Form 7] Date Picker problemI was having the same problem so I used the jQuery UI Datepicker.
It’s pretty easy to use. Just download and upload jquery-ui.css/jquery-ui.js to your wp theme and add this script to your footer or header –
`<script>
$(document).ready(function(){
$(‘.datepicker’).datepicker({
autoclose: true
});
});
</script>`After that, go to CF7 and generate a text-field and assign the class “datepicker”.
You will now have a working datepicker in your contact form that works in chrome, ie, ff, and safari.
Forum: Themes and Templates
In reply to: how to put a text in custom post type