• Resolved Jonas Ingebretsen

    (@jonasingebretsen)


    Ny versjon av BRING plugin bruker ikke FRAKTGUIDEN_PLUGIN_PATH, men dirname(). Dette gir derfor FEIL bane for Woocommerce til ? cart-shipping.php.

    Siste versjon:

    public function get_enhanced_shipping_information_template( $template, $template_name ) {
    	if ( 'cart/cart-shipping.php' !== $template_name ) {
    		return $template;
    	}
    
    	return dirname( __DIR__ ) . 'templates/woocommerce/cart-shipping.php';
    }

    Eldre versjon:

    public function get_enhanced_shipping_information_template( $template, $template_name ) {
    		if ( 'cart/cart-shipping.php' !== $template_name ) {
    			return $template;
    		}
    
    		return FRAKTGUIDEN_PLUGIN_PATH . 'templates/woocommerce/cart-shipping.php';
    	}
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Andrew

    (@yratof)

    Hei Jonas,

    This was picked up this morning by @forsvunnet and will be resolved shortly in 1.7.2

    Thanks for chasing us up on this ??

    Thread Starter Jonas Ingebretsen

    (@jonasingebretsen)

    My pleasure ??

    Plugin Author Andrew

    (@yratof)

    Hey, 1.7.2 was released yesterday fixing up that issue you experienced. If you notice anything else, I appreciate you letting me know ??

    Thread Starter Jonas Ingebretsen

    (@jonasingebretsen)

    Issue has been resolved. Well done with the quick push.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘(BUG) Finner ikke malfil pga. feil bane (L?sning)’ is closed to new replies.