1. Documentation /
  2. Klarna Checkout Hooks: Actions & Filters

Klarna Checkout Hooks: Actions & Filters

Hooks in WordPress essentially allow you to change or add code without editing core files. They are used extensively throughout WordPress and WooCommerce and are very useful for developers. Read more about action and filter hooks here: In Klarna Checkout for WooCommerce there are some action and filter hooks available, mainly for modifying the order data sent to Klarna and how the checkout page should be displayed.

Actions

↑ Back to top
The appearance of the Klarna Checkout page comes with a two-column layout. In this layout we have shopping cart, delivery options and customer order note in the left-hand column while Klarna’s checkout (where you enter personal information and choose payment method) is shown in the right-hand column. Sometimes you need to change the design of the checkout page and with Klarna Checkout for WooCommerce it is possible in a couple of different ways.

1. Simple CSS changes

↑ Back to top
If you only want to make minor design changes, CSS adjustments may be enough to get you where you want. For example, to create a checkout page with a single-column layout, add the following CSS to your theme:
#kco-wrapper #kco-order-review,
#kco-wrapper #kco-iframe {
width: 100%;
float: none;
clear: both;
}

2. Remove, add and move with action hooks

↑ Back to top
If you want to make some more extensive changes to the layout of the checkout page, it is recommended to work with action hooks.

The checkout template file

templates/klarna-checkout.php On the Klarna Checkout template page, there are several action hooks you can use to add code or content. These hooks have the following names:
  • kco_wc_before_checkout_form
  • kco_wc_before_order_review
  • kco_wc_after_order_review
  • kco_wc_before_snippet
  • kco_wc_after_snippet
  • kco_wc_after_checkout_form
You can find their location here: Through these action hooks, you can easily add information to different locations on the checkout page.

3. Create your own template file

↑ Back to top
If you need to make changes that can’t be accomplished via action hooks, then you are able to overwrite the checkout template file via your theme. The plugin supports WooCommerce’s way of handling template files. The template file used for displaying Klarna Checkout is called klarna-checkout.php and it is located in the templates folder in the plugin. To overwrite the file, copy it from the plugin, then paste it into the /woocommerce folder in your theme. Now you have the opportunity to make the changes you want. Keep in mind that the action hooks kco_wc_before_checkout_form and kco_wc_after_snippet must remain for the plugin to work properly.

Filters

↑ Back to top
Action filters are used to modify data before sending it to an external service, rendering it in the browser or storing it in a database. The most common occasion this might be used in the plugin is if you want to modify the order/cart data sent to Klarna before the KCO checkout is rendered.

Modify order data sent to Klarna

↑ Back to top
includes/class-klarna-checkout-for-woocommerce-api.php To modify the order data sent to Klarna (actually the cart data since the WooCommerce order isn’t created until after the purchase is finalized in Klarna Checkout), you use the filter kco_wc_api_request_args as described in the following example: Information about available parameters in Klarnas API can be found here.