Forum Replies Created

Viewing 44 posts - 101 through 144 (of 144 total)
  • Author
    Posts
  • in reply to: Email questions #18023
    Arvid Viderberg
    Participant

    Not sure how good you are at swedish, but here’s the screenshot..

    in reply to: International Shipping issue #18022
    Arvid Viderberg
    Participant

    Hm, did not work as expected. I tried using the following below, but it doesn’t hide the input-form on vendor dashboard. Maybe I’m trying to filter the wrong function? πŸ™‚

    add_filter( 'wcv_product_shipping_fee_international', 'custom_wcv_product_shipping_fee_international', 1 );
    function custom_wcv_product_shipping_fee_international() {
        $show_them_nothing = '';
        return $show_them_nothing;
    }
    in reply to: Orders get instantly marked as shipped #18007
    Arvid Viderberg
    Participant

    When my vendors marks their orders as shipped (in vendor dashboard) they doesn’t get marked as shipped in admin dashboard or under orders in vendor dashboard.. Any ideas why?

    in reply to: International Shipping issue #17997
    Arvid Viderberg
    Participant

    Hm, not sure how to use this. When I add it to functions.php it shows below attachment. I’m not very good at filters. πŸ™‚

    in reply to: [The great thread of language support] #17880
    Arvid Viderberg
    Participant

    Aotch, I’ll just let it slip then. πŸ™‚
    What about the Coupon Code mention earlier?

    in reply to: [The great thread of language support] #17869
    Arvid Viderberg
    Participant

    The “Sold by” in practically all emails are not translatable. Print below πŸ™‚

    in reply to: Orders get instantly marked as shipped #17866
    Arvid Viderberg
    Participant

    Great support as always! Thank you very much Ben! πŸ™‚

    in reply to: International Shipping issue #17865
    Arvid Viderberg
    Participant

    I mean to hide it completly from my vendors. πŸ™‚

    in reply to: International Shipping issue #17863
    Arvid Viderberg
    Participant

    Great, but is there a way to disable the international shipping? πŸ™‚

    in reply to: Orders get instantly marked as shipped #17861
    Arvid Viderberg
    Participant

    Thanks Ben! Is there a way to remove the current ones? I only need the ones I’ve submitted by myself. πŸ™‚

    in reply to: Orders get instantly marked as shipped #17773
    Arvid Viderberg
    Participant

    Ahh, this was an obvious mistake by me. Problem kind of solved itself.

    However, how do I add new tracking service to the shipping system? I want to use the ones in Sweden but there is not an option for those πŸ™‚

    in reply to: Menu Translate #17736
    Arvid Viderberg
    Participant

    Hi @suri. Have you tried editing the template file as well?
    This is described in the Knowledgebase.

    in reply to: Orders get instantly marked as shipped #17729
    Arvid Viderberg
    Participant

    Print below, this is the order screen in the admin panel right after the order is made. It says that the shop has marked it as shipped, yet I haven’t.

    in reply to: Vendor Store page not configuring properly #17696
    Arvid Viderberg
    Participant

    What theme are you using?

    The update will be mid-january.

    in reply to: Remove email-restriction when vendors enter PayPal-address #17693
    Arvid Viderberg
    Participant

    @ben Thanks, I figured that would be a bit harder to do since according to your reply in this thread it is not possible to see the custom field in the admin backend, which is kind of a dealbreaker.
    Any ideas when the script will be updated? πŸ™‚

    Arvid Viderberg
    Participant

    @Joyloli, be sure to delete the Social Tab when people apply to become vendors in the /front/vednor-signup-form-php file as well. πŸ™‚
    This will do the trick:

    <?php
    /**
     * The template for displaying the vendor application form 
     *
     * Override this template by copying it to yourtheme/wc-vendors/front
     *
     * @package    WCVendors_Pro
     * @version    1.0.2
     */
    ?>
    <form method="post" action="" class="wcv-form"> 
    
    	<h3><?php __( 'Vendor Application', 'wcvendors-pro'); ?></h3>
    
    	<div class="wcv-tabs top" data-prevent-url-change="true">
    		<ul class="tabs-nav" style="padding:0; margin:0;">
    	  		<li><a class="tabs-tab" href="#storesettings"><?php _e( 'General Store Information', 'wcvendors-pro'); ?></a></li>
    	  		<li><a class="tabs-tab" href="#payment"><?php _e( 'Payment', 'wcvendors-pro'); ?></a></li>
    	  		<!--<li><a class="tabs-tab" href="#social"><?php _e( 'Social', 'wcvendors-pro'); ?></a></li> -->
    		</ul>
    
    		<!-- Store Settings Form -->
    		<div class="tabs-content" id="storesettings">
    
    				<!-- Store Name -->
    				<?php WCVendors_Pro_Store_Form::store_name( '' ); ?>
    
    				<!-- Store Description -->
    				<label><?php _e( 'Store Description', 'wcvendors-pro'); ?></label>
    				<?php WCVendors_Pro_Store_Form::store_description( '' ); ?>	
    				
    				<br />
    
    				<!-- Seller Info -->
    				<label><?php _e( 'Single product page store description', 'wcvendors-pro'); ?></label>
    				<?php WCVendors_Pro_Store_Form::seller_info( ); ?>	
    				
    
    				<br />
    
    				<!-- Store Phone -->
    				<?php WCVendors_Pro_Store_Form::store_phone( ); ?>
    
    				<?php WCVendors_Pro_Store_Form::store_address( ); ?>
    
    		</div>
    
    		<div class="tabs-content" id="payment">
    			<!-- Paypal address -->
    			<?php WCVendors_Pro_Store_Form::paypal_address( ); ?>
    		</div>
    
    		<div class="tabs-content" id="social">
    			<!-- Twitter -->
    			<?php WCVendors_Pro_Store_Form::twitter_username( ); ?>
    			<!-- Instagram -->
    			<?php WCVendors_Pro_Store_Form::instagram_username( ); ?>
    			<!-- Facebook -->
    			<?php WCVendors_Pro_Store_Form::facebook_url( ); ?>
    			<!-- Linked in -->
    			<?php WCVendors_Pro_Store_Form::linkedin_url( ); ?>
    			<!-- Youtube URL -->
    			<?php WCVendors_Pro_Store_Form::youtube_url( ); ?>
    
    			<!-- Google+ URL -->
    			<?php WCVendors_Pro_Store_Form::googleplus_url( ); ?>
    		</div>
    
    	</div>
    		<!-- Submit Button -->
    		<!-- DO NOT REMOVE THE FOLLOWING TWO LINES -->
    		<?php WCVendors_Pro_Store_Form::sign_up_form_data(); ?>
    		<?php WCVendors_Pro_Store_Form::save_button( __( 'Apply to be Vendor', 'wcvendors-pro') ); ?>
    
    	</form>
    
    in reply to: [The great thread of language support] #17602
    Arvid Viderberg
    Participant

    Works like a charm, thanks Ben!

    Another question: when looking at the cart, the coupon code isn’t translated. Not sure if this is WC-Vendors though?
    Printscreen below.

    in reply to: [The great thread of language support] #17594
    Arvid Viderberg
    Participant

    Thanks Ben πŸ™‚

    I would like to add that I’ve not managed to translate the vendor-new-order.php file. I tried changing the “You have received an order from XXXX. Their order is as follows:” in the template file and then put it in /wp-content/themes/flatsome/wc-vendors/emails but that doesn’t seem to cut it. Any ideas? πŸ™‚

    in reply to: WCVendors Pro with Flatsome problems #17592
    Arvid Viderberg
    Participant

    Not sure if this is what you’re looking for, but I overrode it with:

    .wcv-button:hover{
    color: #ffffff !important;
    text-decoration: none !important;
    }
    in reply to: Product: Remove handling fee + change tabs title #17585
    Arvid Viderberg
    Participant

    Hi Karen.
    For the translation issue, try to make a new translation of the tabs using translation software instead of changing the template files. You can find a guide in the Knowledgebase.

    in reply to: [The great thread of language support] #17513
    Arvid Viderberg
    Participant

    So here is what I’ve found so far that I’ve not been able to translate with either Poedit or template files. I’m using v1.1.1 and Flatsome as theme.

    1. Uploading images to products.

    2. Tags and Categories when viewing you products.

    3. The calendar Close and Clear buttons.

    4. Using Flatsome theme and Jamies hack on the single vendor page.

    in reply to: WCVendors Pro with Flatsome problems #17511
    Arvid Viderberg
    Participant

    Bump again, any news reagrding this? πŸ™‚

    in reply to: Products not saving shipping class #17509
    Arvid Viderberg
    Participant

    I see. But still it is not possible to use shipping classes from the front end? πŸ™‚

    in reply to: Products not saving shipping class #17420
    Arvid Viderberg
    Participant

    I think you misunderstood. I just want to use flat rate and I need my vendors to able to set the shipping clas. This was possible in 1.1.0(although not saving the class). But now vendors can’t fins the dropdown menu to choose shipping class.

    You’re telling me that I either have to use your shipping module, or no shipping at all? πŸ™
    There is no possibility for vendors to set a shipping class?

    in reply to: Products not saving shipping class #17216
    Arvid Viderberg
    Participant

    Hi, the dropdown menu showing which shipping class to choose when adding a new product. Print below.

    in reply to: Products not saving shipping class #17132
    Arvid Viderberg
    Participant

    Still no news regarding this?

    in reply to: Products not saving shipping class #16752
    Arvid Viderberg
    Participant

    Hello again, I’ve disabled the WC Vendors PRO module and only activated Flat rate, but the dropdown menu isn’t showing.
    Any ideas? :/

    in reply to: WCVendors Pro with Flatsome problems #16745
    Arvid Viderberg
    Participant

    @digitalchild Bump, some buttons still get that awful blue color when hovering though..

    in reply to: WCVendors Pro with Flatsome problems #16619
    Arvid Viderberg
    Participant

    Hi Jamie, removing the template files except the ones located in the /store folder makes the dashboard look like it should(and the vendor store page also). (y)

    However, if I only keep single-vendor-store.php in the store folder, nothing is displayed. Printscreen attached.

    in reply to: WCVendors Pro with Flatsome problems #16537
    Arvid Viderberg
    Participant

    Upgrading to 1.1.1 solves the store problem. Also you need to copy all of the templates files to yourtheme/wc-vendors, even if you haven’t modified them.


    @digitalchild
    v1.1.1 solves the problem with dashboard menu and store showing properly in flatsome, however, now the dashboard looks a bit off. Please see image.

    in reply to: Products not saving shipping class #16396
    Arvid Viderberg
    Participant

    Ah, I see, thanks for clarification Ben! πŸ™‚

    in reply to: Products not saving shipping class #16317
    Arvid Viderberg
    Participant

    Thanks Jamie,
    I will still be able to use them with flat rate, instead of your module, right? πŸ™‚

    in reply to: WCVendors Pro with Flatsome problems #16237
    Arvid Viderberg
    Participant

    Thanks Jamie, turnes out you need all the templates in orders for everything to work. Still can’t get that header to display properly though.. Please attached picture.

    You also said “I’ve gone ahead and renamed all our column classes so that they don’t clash and this has fixed pretty much all the layout issues.
    Is this something that will be included in the next update?

    in reply to: WCVendors Pro with Flatsome problems #15999
    Arvid Viderberg
    Participant

    Hi Jamie and thanks for the update!

    However, when I copy over the code you supplied to the template (in /mytheme/wc-vendors/store) I still doesn’t show properly. Please see attached file.

    Regarding the dashboard, is that update available somewhere? πŸ™‚

    in reply to: WCVendors Pro with Flatsome problems #15484
    Arvid Viderberg
    Participant

    Bumping as I’m also interested in this. πŸ™‚

    in reply to: Translate Dashboard nav #15311
    Arvid Viderberg
    Participant

    If you search the forum you’ll find that this has already been posted.
    This is a bug that will be fixed in version 1.1.0 πŸ™‚ Stay tuned.

    in reply to: Editing Vendor Application #15304
    Arvid Viderberg
    Participant

    Bumping this one again. I can’t get variable product to show up as a Product Type.. Tried changing settings multiple times but it does not show up.
    Using version 1.0.5

    in reply to: Product Add Page #15182
    Arvid Viderberg
    Participant

    Oh, why am I still on 1.0.2 then πŸ˜‰
    Thanks Ben!

    in reply to: Product Add Page #15135
    Arvid Viderberg
    Participant

    Sorry to bump the thread but the link is broken, Ben. πŸ™‚

    in reply to: Editing Vendor Application #15129
    Arvid Viderberg
    Participant

    I’m also interested in add custom fields in application form. I would like to know if my vendors are registered tax payers or not.
    The best thing would be a radiobutton that enables tax or not for them, but that seems kinda hardcore for me..

    But maybe it is at least possible to add one custom field that I can see when I approve the vendors?

    in reply to: Clarification regarding payment to vendors #14054
    Arvid Viderberg
    Participant

    I see, thanks for clarification Ben! πŸ™‚

    in reply to: Freight class for each vendor #12530
    Arvid Viderberg
    Participant

    Super fast answer! πŸ˜€

    Alright, I’ll stay tuned for that then! πŸ™‚

    in reply to: Vendors to create their own user accounts #11848
    Arvid Viderberg
    Participant

    Aaaah of course! Thanks guys!!

    in reply to: Vendors to create their own user accounts #11817
    Arvid Viderberg
    Participant

    Hi, I’m having quite the same problem. I use the [woocommerce_my_account] on my page but when a user isn’t signed in, there is no registration-form.

    Thanks in advance πŸ™‚

Viewing 44 posts - 101 through 144 (of 144 total)