Home Forums WoodMart support forum From price for variation product Reply To: From price for variation product

#563843

thomas-8605
Participant

Hello,

but you can see this text (in germany “ab”) is already included and woocommerce css is setup this element to unvisible.

First solution:
.amount:before {
content: “from”;
margin-right: 5px;
}

-> You can see in the attached screenshot from my initial post here the wording “ab” (which means “from”) is already in html code. But woodmart is making this element unvisible via css. So woodmart hide this element and in next step we need to add it again to make it visible?! This is not a clean work flow in general and will make design shifts.

Second solution:
Adding this css to make it visible after woodmart make it unvisible
.hide-larger-price .price {
word-spacing: inherit;
visibility: visible;
}
-> With that custom css code we do not need to add the word again. We only need to make it visible back again after woodmart set it to unvisible. But also this flow is not clean: Why first make it unvisible via woodmart css and after that we need custom css to make it visible again.

Please fix it and share an patch.

BR
Tommy