hunk
Forum Replies Created
-
Forum: Plugins
In reply to: [Magic Fields 2] Media > Attach Error – No Pages loadwoks fine for me, these are the steps to follow
1.- add a new post of any post type
2.- click in “add media” in Editor (WP main editor) or multiline field (MF)
3.- upload image
4.- in side bar “ATTACHMENT DETAILS” click in “insert into post”
5.-the image is placed in the editorcould tell me what steps used to reproduce this error?
Forum: Plugins
In reply to: [Magic Fields 2] Duplicate Post Typefirst check the first argument in register_post_type (in you functions.php of you theme) this value is the post_type key.
Comment the register_post_type function.
add a new post type with MF, set the value in Type name field. customize all options you need.
All post created when post type (theme) be available in you post type (Magic fields)
Forum: Plugins
In reply to: [Magic Fields 2] Referencing a post with custom fields on a pageok, $itemname or $description is empty.
when uses get_post_meta the first parameter is the postID, in this case is
<?php $itemname = get_post_meta (219, ‘menu_item_name’, false); ?>
<?php $description = get_post_meta (219, ‘menu_item_description’, false); ?>or
<?php $itemname = get_post_meta ($query1->ID, ‘menu_item_name’, false); ?>
<?php $description = get_post_meta ($query1->ID, ‘menu_item_description’, false); ?>Forum: Plugins
In reply to: [Magic Fields 2] Edit Mode with Multiline Field make everything lost Encodingupdate to version 2.2.2.2 and check again. everything works fine now
Forum: Plugins
In reply to: [Magic Fields 2] Get all values of checkbox list or dropdownadd this function in you functions.php or add in mf_front_end.php
function get_default_value ($field_name, $group_index=1, $field_index=1 ,$post_id=NULL) {
global $post;if(!$post_id){ $post_id = $post->ID; }
$field = get_data($field_name,$group_index,$field_index,$post_id);
if(!$field) return FALSE;return $field[‘options’][‘default_value’];
}
Forum: Plugins
In reply to: [Magic Fields 2] Thumb field imagei see, yep this a problem with memory of php, which is the size of your image?
Forum: Plugins
In reply to: [Magic Fields 2] Thumb field imageHi laetitia Godet this happend with all images (different sizes)?
Forum: Plugins
In reply to: [Magic Fields 2] multiline field problemForum: Plugins
In reply to: [Magic Fields 2] Magic Fields in Post Category ?what you want is to show all post of post type who are under a category?
Forum: Plugins
In reply to: [Magic Fields 2] Error in single post typeHello, yes this a bug, here is the fix https://github.com/magic-fields-team/Magic-Fields-2/commit/c4fa803e2c3a5571ab3ebaea23170e3f22a73e49 in coming days will post an update.
Thanks for report.
Forum: Plugins
In reply to: [Magic Fields 2] German "special characters" not supported?Forum: Plugins
In reply to: [Magic Fields 2] If/Else on Repeatable Groupsthis is a field duplicate? which function uses for this
Forum: Plugins
In reply to: [Magic Fields] Blank Page List in Dashboardyou mean the page panel in menu?
try Settings->Magic Fields uncheck option Hide WordPress Page panel
Forum: Plugins
In reply to: [Magic Fields] No error for missing required fields.any error of javascript?
Forum: Plugins
In reply to: [Magic Fields] How to resolve navigation error after upgrading to WP 3.9thanks, this is fixed in the last version