Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • in reply to: Vendor payment methods #68493
    George Patsias
    Participant

    Hey,
    I just speak too PayPal right now. They say that my country is not supported (Cyprus).

    What can i do about that?

    in reply to: Vendor payment methods #67700
    George Patsias
    Participant

    Thanks for the replies and help!

    Ok there is another problem now…

    Do my vendors have to have Stripe account?
    Or they can directly get paid to their Visa account??

    In my country (Cyprus) Stripe is not so popular and if they have to make a Stripe account it would be difficult to get their trust and make an account in Stripe.

    in reply to: Sign Up page missing #66932
    George Patsias
    Participant

    Ok, thank you, i did that, but now what?

    When i click to apply to become a vendor nothing happens. It still uses the woocommerce sign up form for that.
    I need a form with the shipping/billing address to be filled up and paypal account.

    You dont have that?

    in reply to: vendor sign up form #66821
    George Patsias
    Participant

    Hello,

    I have the same problems too,
    i want to make some fields in the Vendors Details to be required like paypal account and shipping details and dont allow the vendor to add a product if he doesnt fills that up.

    Any ways to do that?

    in reply to: Customize Category Selection on Add new Product #66727
    George Patsias
    Participant

    Any answer on how can i do that?

    the code i can find is this:

    /**
    	 * DEPRECATED This function has been replaced - Output a woocommerce attribute selects 
    	 *
    	 * @since      1.0.0
    	 * @param      array     $field      Array defining all field attributes 
    	 * @todo       add filters to allow the field to be hooked into this should not echo html but return it. 
    	 */
    	public static function attributes( $post_id, $multiple = false ) { 
    
    		if ( ! self::$basic_options[ 'attributes' ] ) { 
    
    			// Array of defined attribute taxonomies
    			$attribute_taxonomies = wc_get_attribute_taxonomies();
    
    			// If there are any defined attributes display them 
    			if ( !empty( $attribute_taxonomies ) ) { 
    
    				$i = 0; 
    				// Get any set attributes for the product 
    				$attributes  = maybe_unserialize( get_post_meta( $post_id, '_product_attributes', true ) );
    
    				foreach ( $attribute_taxonomies as $product_attribute ) {
    
    					if ( in_array( $product_attribute->attribute_id, explode( ',', self::$hide_attributes_list ) ) ) continue;  
    
    					$current_attribute = '';
    					$is_variation = 'no';
    					// $custom_attributes 	= ( $multiple ) ? array( 'multiple' => 'multiple' ) : array(); 
    
    					// If the attributes aren't empty, extract the attribute value for the current product 
    					if ( ! empty( $attributes ) && array_key_exists( wc_attribute_taxonomy_name( $product_attribute->attribute_name ), $attributes ) ) { 
    						// get all terms 
    						$current_attribute = wp_get_post_terms( $post_id, wc_attribute_taxonomy_name( $product_attribute->attribute_name ) );
    						$is_variation = $attributes[ wc_attribute_taxonomy_name($product_attribute->attribute_name) ]['is_variation'] ? 'yes' : 'no' ; 
    						$current_attribute = reset ( $current_attribute ); 
    						$current_attribute = $current_attribute->slug;
    					}
    
    					// Output attribute select 
    					WCVendors_Pro_Form_Helper::select( array( 
    						'id' 				=> 'attribute_values[' . $i . '][]', 
    						'post_id'			=> $post_id, 
    						'label' 			=> ucfirst( $product_attribute->attribute_label ),
    						'value' 			=> $current_attribute, 
    						'show_option_none'  => __( 'Select a ', 'wcvendors-pro' ) . ucfirst( $product_attribute->attribute_label ),
    						'taxonomy'			=> wc_attribute_taxonomy_name( $product_attribute->attribute_name ), 
    						'is_attribute'		=> true, 
    						'taxonomy_args'		=> array( 
    												'hide_empty'	=> 0, 
    												'orderby'		=> 'order' 
    											), 
    						// 'custom_attributes' => $custom_attributes, 
    						)
    					);
    
    					// Output attribute name hidden 
    					WCVendors_Pro_Form_Helper::input( array( 
    										'post_id'				=> $post_id, 
    										'id' 					=> 'attribute_names['.$i.']', 
    										'type' 					=> 'hidden', 
    										'show_label'			=> false, 
    										'value'					=> wc_attribute_taxonomy_name( $product_attribute->attribute_name ), 
    										)	
    					);
    					$i++; 
    				}
    			}
    
    			// Support other plugins hooking into attributes 
    			// Not sure if this will work ? 
    			do_action( 'wcv_product_options_attributes' );
    
    		} 
    
    	} //attribute()

    I cannot find any HTML code where i can change to show it differently.

    Any ideas?

    in reply to: Customize Category Selection on Add new Product #66164
    George Patsias
    Participant

    Ok Thank you!

    Is it possible to make the Category Display in the Product Form option to open up the list in a more bigger way?

    I have lots of categories and i want them to be easily seen.

    Actually the thing i want to do is the following:

    1) Click on the category input box
    2) Display only Main Categories, NOT subcategories
    3) If you Select a Main category save it
    4) And then show only the subcategories of that Main category

    in reply to: Customize Category Selection on Add new Product #66120
    George Patsias
    Participant

    I dont want them to be all messy inside that box, as show on the attached picture…

    I want to change the way they show and make them more easy and more clear to be seen.

    How can i edit them so i can show them one by one for example with their thumbnail pictures?

    Or display them as tabs… I mean i need the code that i can control each category request and present them as i want

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