hunk
Forum Replies Created
-
Forum: Plugins
In reply to: [Magic Fields] [Plugin: Magic Fields] Php 5.4 CompatibilityForum: Plugins
In reply to: [Magic Fields] WP 3.5 & MF 1.6 – Datepicker Doesn't Workyou have any special configuration? because in my test environment show fine http://imageshack.us/photo/my-images/580/screenshot20130114at105.png
Forum: Plugins
In reply to: [Magic Fields 2] Fields Not Saving After PublishGood moodytryme 🙂
Forum: Plugins
In reply to: [Magic Fields 2] Fields Not Saving After PublishHi moodytryme, you test this example http://stackoverflow.com/questions/14202432/raise-max-input-to-post-in-php
is correct, I did not know that the new media upload pictures had this option, I need to investigate how to use it
Forum: Plugins
In reply to: [Magic Fields 2] Fields Not Saving After Publishcheck this example http://stackoverflow.com/questions/14202432/raise-max-input-to-post-in-php
Forum: Plugins
In reply to: [Magic Fields 2] Fields Not Saving After Publishsorry is max_input_vars,
You have one number in duplicated fields it stops working? approximate.
you can change post_max_size http://php.net/manual/en/ini.core.php#ini.post-max-size. also check max_input_time, max_input_nesting_level
check with
<?php
phpinfo();
?>try increasing the values
Forum: Plugins
In reply to: [Magic Fields 2] Fields Not Saving After Publishwhich is approximately the number fields?
if you do a test with some fields work fine?
check you max-input-vars http://php.net/manual/en/info.configuration.php#ini.max-input-vars
Forum: Plugins
In reply to: [Magic Fields 2] PHP Notice: Undefined index: div_classthanks, i have updated developer version https://github.com/magic-fields-team/Magic-Fields-2/commit/f9d9da126cf6f9a0a7eb54fa8011f98ba128f724
Forum: Plugins
In reply to: [Magic Fields 2] error after updating pluginthis change is already in the current version
Forum: Plugins
In reply to: [Magic Fields 2] error after updating pluginForum: Plugins
In reply to: [Magic Fields] Compatibility with WordPress 3.5🙂
Forum: Plugins
In reply to: [Magic Fields] Compatibility with WordPress 3.5update a MF 1.6 with all fixes 🙂
Forum: Plugins
In reply to: [Magic Fields 2] Magic Fields in conflict with New Media ManagerHi, check this example
$all_elements = array('one','two','cat','dog','mon'); $all_names = ""; if (count($all_elements) > 2) { $new = array_slice($all_elements,count($all_elements)-1,count($all_elements)); $new[] = implode(" , ",array_slice($all_elements,0,count($all_elements)-1)); $all_names =implode(' & ',array_reverse($new)); }else{ $all_names = implode(" & ", $all_elements); } echo $all_names;