Forum Replies Created
-
AuthorPosts
-
thomassultana
ParticipantThank you!
thomassultana
ParticipantHi Peter,
We don't use any language plugins as this is a single language site. It would be great to either provide php filters or arguments in the field registration process.
thomassultana
ParticipantThanks thats perfect.
October 16, 2019 at 1:56 AM in reply to: ✅MB Term Meta 1.2.6 saves data to the postmeta table #16543thomassultana
ParticipantThis is happening for me too. Please fix soon.
November 20, 2018 at 4:15 AM in reply to: ✅Cloned field always generates 12 new cloned fields #12075thomassultana
ParticipantHey Anh
Sorry for the late reply. I've managed to get it to work now. Thank you!
November 1, 2018 at 12:19 AM in reply to: ✅Cloned field always generates 12 new cloned fields #11811thomassultana
ParticipantOk thank you Anh Tran!
thomassultana
ParticipantThats ok, i got worried that support disappeared. Im using latest version of meta box. I have the following extensions as well, fully updated:
term meta
include exclude
columnsCode is below:
$meta_boxes[] = array( 'id' => 'restriction_targeting', 'title' => esc_html__( 'Targeting', 'your-prefix' ), 'post_types' => array( 'restrictions' ), // List of meta fields 'fields' => array( array( 'name' => esc_html__( 'Categories', 'your-prefix' ), 'id' => $prefix . 'categories', 'type' => 'taxonomy_advanced', 'taxonomy' => 'product_cat', 'clone' => true, 'field_type' => 'select_tree', 'query_args' => array(), ), ) );thomassultana
ParticipantHi this is still happening. Im a paying customer where is the support?
thomassultana
ParticipantMeta Box 4.12.3
MB Term Meta 1.2
MB Columns 1.1
Meta Box Updater 1.1.4thomassultana
ParticipantAny updates please?
thomassultana
Participanti have meta box columns plugin installed.
add_filter( 'rwmb_meta_boxes', 'wba_restrictions_meta_boxes' ); function wba_restrictions_meta_boxes( $meta_boxes ) { $prefix = WBA_MB_PREFIX; $countries = new WC_Countries(); $states = $countries->get_states('US'); // 1st meta box $meta_boxes[] = array( 'id' => 'restriction_targeting', 'title' => esc_html__( 'Targeting', 'your-prefix' ), 'post_types' => array( 'restrictions' ), // List of meta fields 'fields' => array( array( 'name' => esc_html__( 'States', 'your-prefix' ), 'desc' => esc_html__( 'Target specific states in this rule.', 'your-prefix' ), 'id' => $prefix . 'states', 'type' => 'select_advanced', 'multiple' => true, 'options' => $states, //'columns' => 6 ), array( 'name' => esc_html__( 'Cities', 'your-prefix' ), 'id' => $prefix . 'cities', 'type' => 'post', 'post_type' => 'cities', 'field_type' => 'select_advanced', 'multiple' => true, 'placeholder' => esc_html__( 'Select one or more cities', 'your-prefix' ), 'query_args' => array( 'post_status' => 'publish', 'posts_per_page' => - 1, ), //'columns' => 6 ), array( 'name' => esc_html__( 'Category', 'your-prefix' ), 'id' => $prefix . 'category', 'type' => 'taxonomy_advanced', 'taxonomy' => 'product_cat', 'clone' => true, // How to show taxonomy: 'checkbox_list' (default) or 'checkbox_tree', 'select_tree', select_advanced or 'select'. Optional 'field_type' => 'select_tree', 'query_args' => array(), ), array( 'name' => esc_html__( 'Attribute', 'your-prefix' ), 'desc' => esc_html__( 'Select the attribute you want to target, and then the attribute value.', 'your-prefix' ), 'id' => $prefix . 'attribute', 'type' => 'select_advanced', 'options' => array( 'todo' => 'TODO', ), 'columns' => 4 ), array( 'name' => esc_html__( 'Condition', 'your-prefix' ), 'desc' => esc_html__( 'Select the attribute you want to target, and then the attribute value.', 'your-prefix' ), 'id' => $prefix . 'attribute', 'type' => 'select_advanced', 'options' => array( '=' => 'Equal', '!=' => 'Not Equal', '>=' => 'Greater Than or Equal', '>' => 'Greater Than', '<=' => 'Less Than or Equal', '<' => 'Less Than', '%' => 'LIKE', ), 'columns' => 4 ), array( 'name' => esc_html__( 'Attribute Value', 'your-prefix' ), 'desc' => esc_html__( 'Type in the attribute value you want to target', 'your-prefix' ), 'id' => $prefix . 'attribute_value', 'type' => 'text', 'columns' => 4 ), array( 'name' => esc_html__( 'Product Title Phrase', 'your-prefix' ), 'desc' => esc_html__( 'target specific products that have this phrase in the title', 'your-prefix' ), 'id' => $prefix . 'title_phrase', 'type' => 'text', ), ), ); $meta_boxes[] = array( 'id' => 'restriction_action_messages', 'title' => esc_html__( 'Action Messages', 'your-prefix' ), 'post_types' => array( 'restrictions' ), // List of meta fields 'fields' => array( array( 'name' => esc_html__( 'Cart Message', 'your-prefix' ), 'desc' => esc_html__( 'Display a specific message on the cart below the matching product.', 'your-prefix' ), 'id' => $prefix . 'cart_message', 'type' => 'textarea', 'rows' => 4, ), array( 'name' => esc_html__( 'Checkout Message', 'your-prefix' ), 'desc' => esc_html__( 'Display a specific message on the checkout below the matching product.', 'your-prefix' ), 'id' => $prefix . 'checkout_message', 'type' => 'textarea', 'rows' => 4, ), ), ); $meta_boxes[] = array( 'id' => 'restriction_actions', 'title' => esc_html__( 'Action', 'your-prefix' ), 'post_types' => array( 'restrictions' ), // List of meta fields 'fields' => array( array( 'name' => esc_html__( 'Perform Following Action', 'your-prefix' ), 'desc' => esc_html__( 'Please select the action that will be triggered on the checkout process.', 'your-prefix' ), 'id' => $prefix . 'action', 'type' => 'radio', 'options' => array( 'disallow_purchase' => 'Disallow Purchase', 'foid_card_required' => 'FOID Card Required', 'ffl_dealer_form' => 'FFL Dealer Form', ) ), ), ); return $meta_boxes; }thomassultana
ParticipantNovember 19, 2015 at 4:28 PM in reply to: Text Fields dont save (MB Group 1.0.2) (Meta Box 4.7) #1767thomassultana
ParticipantHi Anh Tran,
We have re-downloaded the meta box group plugin along with meta box 4.7.1 and all seems to be working now.
Just a note though that the meta box auto updater didn't pick up that a new version was available for this plugin and https://metabox.io/plugins/meta-box-group/ still shows 1.0.2 as the latest available version. 🙂
Thanks!
-
AuthorPosts

