Home Forums WoodMart support forum Change order of Regular Price and Sales Price on Product Loop

Change order of Regular Price and Sales Price on Product Loop

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #546353

    DanielI2U
    Participant

    Hello,

    I want to change the order of how the initial price is shown up on the product loop while no variation is selected.
    Now it’s: Prefix “ab” . Lowest Sales Price . Regular Price
    I want it to be: Regular Price . Prefix “ab” . Lowest Sales Price.

    Please see this Screenshot to clarify the issue: https://ibb.co/gR4gjzr

    Thanks for your help.

    Best regards,
    Daniel

    #546747

    Hung Pham
    Keymaster

    Hi DanielI2U,

    Thanks for your patience.

    Please add the following Custom CSS code to Theme Settings > Custom CSS > Custom CSS for desktop:

    .wd-product .product-element-bottom > span.price{
    	display: flex;
    	flex-flow: row wrap;
    }
    
    .wd-product .product-element-bottom > span.price del.price{
    	margin: 0 5px 0 5px;
    }
    
    .wd-product .product-element-bottom > span.price span.amount{
    	order: 3;
    }

    But you can re-order the text because it did not place in html tags https://prnt.sc/9DuX0DzVZ12Q

    Regards,

Viewing 2 posts - 1 through 2 (of 2 total)