Skip to Content
Menu
Dette spørgsmål er blevet anmeldt
1 Svar
6489 Visninger

Hello All,
I am facing a problem related to CSS load error pos_product.css defined in bundle 'point_of_sale.assets'

My Code Below:

<template id="assets" inherit_id="point_of_sale.assets">
<xpath
expr="." position="inside">
<link rel="stylesheet" href="/pos_product/static/src/css/pos_product.css" type="text/css"/> </xpath>
</template>

Thanks

Avatar
Kassér
Bedste svar

I hope you have already found a solution. For anyone facing a similar error, the xpath expression and position should be changed as shown below: ​​

<template id="assets" inherit_id="point_of_sale.assets">
  
  <xpath expr="//link[@id='pos-stylesheet']" position="after">        
        <link rel="stylesheet" href="/pos_product/static/src/css/pos_product.css" type="text/css"/>    
    </xpath>
</template>
Avatar
Kassér
Related Posts Besvarelser Visninger Aktivitet
0
okt. 20
2968
1
feb. 19
6519
3
jun. 21
10473
0
apr. 16
3762
0
jun. 15
6429