Support Forum » User Profile

Forum Replies Created

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • thomassultanathomassultana
    Participant

    Thank you!

    thomassultanathomassultana
    Participant

    Hi 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.

    in reply to: User Profile Form + Woocommerce #39299
    thomassultanathomassultana
    Participant

    Thanks thats perfect.

    in reply to: MB Term Meta 1.2.6 saves data to the postmeta table #16543
    thomassultanathomassultana
    Participant

    This is happening for me too. Please fix soon.

    in reply to: Cloned field always generates 12 new cloned fields #12075
    thomassultanathomassultana
    Participant

    Hey Anh

    Sorry for the late reply. I've managed to get it to work now. Thank you!

    in reply to: Cloned field always generates 12 new cloned fields #11811
    thomassultanathomassultana
    Participant

    Ok thank you Anh Tran!

    in reply to: Cloned field always generates 12 new cloned fields #11805
    thomassultanathomassultana
    Participant

    Thats 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
    columns

    Code 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(),
            ),
        )
    );
    in reply to: Cloned field always generates 12 new cloned fields #11801
    thomassultanathomassultana
    Participant

    Hi this is still happening. Im a paying customer where is the support?

    in reply to: Taxonomy Advanced Values not saving correctly #6813
    thomassultanathomassultana
    Participant

    Meta Box 4.12.3
    MB Term Meta 1.2
    MB Columns 1.1
    Meta Box Updater 1.1.4

    in reply to: Taxonomy Advanced Values not saving correctly #6789
    thomassultanathomassultana
    Participant

    Any updates please?

    in reply to: Taxonomy Advanced Values not saving correctly #6746
    thomassultanathomassultana
    Participant

    i 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;
    
    }
    in reply to: Taxonomy Advanced Values not saving correctly #6724
    thomassultanathomassultana
    Participant

    Here is some screenshots:

    Before i save:
    Screen Shot 2017 08 22 at 19 03 48

    After i save:
    Screen Shot 2017 08 22 at 19 03 41

    in reply to: Text Fields dont save (MB Group 1.0.2) (Meta Box 4.7) #1767
    thomassultanathomassultana
    Participant

    Hi 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!

Viewing 13 posts - 1 through 13 (of 13 total)