faina09
Forum Replies Created
-
Forum: Plugins
In reply to: [WP FEvents Book] Please add time to event dates values‘Event date’ is currently a free filed; I’ll try to give the user the possibility to use ALSO a checked formatted date, but the priority is to have a free field.
I’ll work on the other points too.the ‘too many redirects’ error happens to some of my sites too. I needed to remove the plugin via FTP to solve!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] TablePress sort european datesbe sure that the ‘aTargets’ number be correct; it refers to the CURRENT columns dispalyed, in your case should be:
"aoColumnDefs": [ { "sType": "date-eu", "aTargets": [ 1 ] } ]Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Italian translationI have a first release of Italian translation (still 50% to be transalted jet). How can I send it to you?
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] TablePress sort european datesand I added also this just before the ‘return’ to have the not numeric values sorted in some way:
if ( (year + month + day) * 1 == 0 ) { year = '10000'; for (var i = 0; i < date[0].length; i++) { year = date[0].charCodeAt(i) + year; } }Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] TablePress sort european datesI fix it in case you have an ampty cell and/or a non-date or wrong formatted.
I modified the “date-eu-pre”: function ( date ) as follow:"date-eu-pre": function ( date ) { var year = '', // year is optional month, day, character='/'; if ( date.indexOf('.') > 0 ) character = '.'; // if found, use . as the separator, otherwise use / date = date.replace( " ", "" ).split( character ); if ( date.length <= 1 ) { month = '0'; day = '0'; } else { if ( date[2] ) year = date[2]; month = date[1]; if ( month.length == 1 ) month = '0' + month; day = date[0]; if ( day.length == 1 ) day = '0' + day; } return (year + month + day) * 1; },mmm, on my tests with Twenty10-11-13 themes and some others I have not this issue. Can you sumbit here your configuration? The problem may rise using a theme or a plugin.
I think it is, and probably easy to do. I’ll work on it this weekend…
Forum: Plugins
In reply to: [WP FEvents Book] Great plugin, could I ask…thank you for your appreciation and for your suggestions.
Happy to be useful to someone!Forum: Plugins
In reply to: [WP FEvents Book] Great plugin, could I ask…I have had a look at Doodle.
May be you will be satisfied having 3 or 4 generical choices to submit to the user? You can fill the choices with a date/time value or whatever else and the user click on one or more of this to accept.
The email sending can then be managed with an other pluginForum: Plugins
In reply to: [WP FEvents Book] Great plugin, could I ask…could you please explain more in detail your needs?
Forum: Plugins
In reply to: [WPF-Login] Does this plugin logg field entries?No save nor log input fields. The plugin use not only wordpress settings, but (copy of) the original wp code itself. This guarantee a 100% compatibility
Forum: Plugins
In reply to: [WPF-Login] Confliction with Register Plus Reduxsorry no solutions in this moment. I’ll try to find one as up.
Forum: Plugins
In reply to: [WPF-Login] How to customize Register ButtonGreat! Can you please post your solution here?
Forum: Plugins
In reply to: [WPF-Login] How to customize Register ButtonI see.. you probably have some more css in any hover button class.
May be some input[type=”submit”]:hover or input[type=”button”]:hover
You should override these values using #wp-submit:hover
With images only I can’t see where and how, it may depends by the theme.
What is the theme that you are using?