• Resolved pontusespe95

    (@pontusespe95)


    Hey.

    Finns det n?got s?tt att s?tta priset till 0kr?
    S? slutkunden aldrig skall beh?va betala f?r frakt.

    Tack p? f?rhand!

    • This topic was modified 5 years, 5 months ago by pontusespe95.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Andrew

    (@yratof)

    @pontusespe95 There is a way, but you would need to activate the Pro features of the plugin.

    When you use Bring Fraktguiden Pro, you get the option to set the prices yourself and still use all of brings features within the store.

    You’re also able to set a minimum spend before free shipping, so it could be that you want to make sure postages is removed after 400kr, and below this, you can set it to a flat rate fo 50kr, just to cover the cost of small items being sent.

    The Free part of the plugin only allows you to pull the prices from your MyBring account.

    I would suggest upgrading to Bring Pro, it’d allow you to show pick up points and many more options.

    But if thats not an option, you could always not offer Bring on your checkout and manually process your orders and change the shipping option to Bring on the order page in the admin. This way, your customers pay 0kr for the shipping, but you still get to assign it as Bring after the fact.

    How does that sound?

    Plugin Author Eivin Landa

    (@forsvunnet)

    The easiest method is what Andrew suggest which is to upgrade to pro.

    An alternative is to use programming to force the shipping rate prices to 0 using the bring_shipping_rates filter. I would not recommend doing this unless you’re familiar with programming.

    add_filter('bring_shipping_rates', function( $rates ) {
    	foreach ( $rates as &$rate ) {
    		$rate['cost'] = 0;
    	}
    	return $rates;
    }, 999 );
    Thread Starter pontusespe95

    (@pontusespe95)

    @yratof Hey! Alright – thanks for that. I will see if the option @forsvunnet is working, due to I only need the pricing solved and not everything that the PRO version includes.

    Thanks for a fast response & have a great week both of you ??

    Plugin Author Andrew

    (@yratof)

    Great, I’ll mark this as resolved for now. If you encounter any more issues, please open a new support thread so we can organise everything by problem ??

    A great week we shall have ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Gratis Frakt’ is closed to new replies.