hunk
Forum Replies Created
-
Forum: Plugins
In reply to: [Magic Fields 2] TinyMCE stopped displaying on multiline fieldsthis is fixed in the last version of MF 2.2.2
Forum: Plugins
In reply to: [Magic Fields 2] Remove prefix from Phpthumb generated imagesthe problem where is the number before the filename image is a md5 of parameters, MF check if exist the image with new params (w,h,q,c) if not exist generate the image, if exit only return the url of image.
MF not used phpthumb, only retain the name backward compatibility, it is actually a small class that uses the functions of WP for handling Image.
you can add phpthumb or other library for image.
fixed in 2.2.2.1
yes, this bug is fixed in 2.2.2.1
Forum: Plugins
In reply to: [Magic Fields] Warning message when saving posts in WP 3.9fixed in 1.6.2.1
fixed in 1.6.2.1
Forum: Plugins
In reply to: [Magic Fields] Magic Fields not compatitble with WP 3.9?Hi, the las version fix this (js alert)
Forum: Plugins
In reply to: [Magic Fields 2] Type of Custom Field Drop-down is BlankYou can check if you have turn on php errors and see if it gives an error that can help us
Forum: Plugins
In reply to: [Magic Fields 2] Magic Fields hides my Admin toolbar??this only have running in admin area and only for the page spacial of MF for set default categories for post type.
this is a condition:
if( !empty( $_GET[‘mf_action’] ) && $_GET[‘mf_action’] == “set_categories” ) {
wp_enqueue_script( ‘mf_set_categories’, MF_BASENAME.’js/mf_set_categories.js’, array(‘mf_admin’) );
}Forum: Plugins
In reply to: [Magic Fields 2] Error after upgrade to 2.1Hi, save again the custom post types
Forum: Plugins
In reply to: [Magic Fields] fix for image upload in wp 3.6fixed in new version MF 1.6.1.1, thanks
Forum: Plugins
In reply to: [Magic Fields 2] Image Field not Working (pages editor)I updated the 2.2 version which corrects this
Forum: Plugins
In reply to: [Magic Fields 2] wp3.6 upgrade, datepicker field not workI updated the 2.2 version which corrects this
Forum: Plugins
In reply to: [Magic Fields 2] Image Media field not working after updating to WP 3.6I updated the 2.2 version which corrects this
Forum: Plugins
In reply to: [Magic Fields 2] Image Media field not working after updating to WP 3.6Hi, the problem in this is MF for image_field uses live of jquery, but jquery remove this function in 1.7. so never enter in the correct function. for fix this change this line ~237 in file js/mf_admin.js
$(‘.update_field_media_upload’).live(‘click’, function(){
for this
$(‘.update_field_media_upload’).on(‘click’, function(){
I’m changing all. live and soon will put a new version of MF