Home Forums WoodMart support forum Shop age page Category

Shop age page Category

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #606364

    shweta
    Participant

    Hello Team,

    I want to show the category after the title for better understanding please find the screenshoot attached.

    Attachments:
    You must be logged in to view attached files.
    #606450

    Hung Pham
    Keymaster

    Hello shweta,

    Thanks for reaching to us.

    Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:

    .wd-product :is(div.wd-product-cats){
    	width: 75%;
    }

    Regards,

    #606485

    shweta
    Participant

    On the mobile version its not show properly.

    #606487

    shweta
    Participant

    I have added this code but the price is shown on the slightly bottom.

    #606496

    shweta
    Participant

    Also, I want to hide a short description on the shop page.

    #606502

    shweta
    Participant

    I want category show on the line.

    #606728

    Hung Pham
    Keymaster

    Hello shweta,

    Please add above Custom CSS code to Theme Settings > Custom CSS > Custom CSS for Desktop and check again.

    Regards,

    #606759

    shweta
    Participant

    Hello Team,
    Thank you for this code, I have added this code to the theme setting but still this code not working.

    1. I want the category show on the line.
    2. I want to hide a short description on the shop page only.
    3. The price is shown on the slightly bottom you check see and fix this issue for me.

    Page Link: https://akshatraghava.website/shop/

    For a better understanding please find the screenshot attached below.

    Attachments:
    You must be logged in to view attached files.
    #606786

    Hung Pham
    Keymaster

    Hello shweta,

    To assist you in the best possible manner, I kindly ask that you please provide me temporary wp-admin info (wp-admin URL, username, password) to the Private Content area, this will allow me to thoroughly investigate and address your concerns more efficiently.

    Regards,

    #606815

    shweta
    Participant

    Sure, Kindly find wp-admin details in the private section

    #606978

    Bogdan Donovan
    Keymaster

    Hello,

    Unfortunately, your previous custom code created for the product does not fully allow the desired appearance to be achieved. To attempt to recreate the desired look, you need to:

    1. Remove all your current code related to “product-element-bottom,” “wd-entities-title,” “.wd-product-cats,” and “price.”
    2. Delete the custom code provided to you in previous messages (https://xtemos.com/forums/topic/shop-age-page-category/#post-606450).
    3. Add the following custom code to the Global Custom CSS area located in Theme Settings.

    .wd-product .product-element-bottom {
    	flex-direction: row;
    	flex-wrap: wrap;
    }
    
    .wd-product .product-element-bottom .wd-entities-title {
    	order: 0;
    }
    
    .wd-product .product-element-bottom .price {
    	order: 1;
    }
    
    .wd-product .product-element-bottom .wd-product-cats {
    	order: 2;
    	width: 100%;
    }
    
    .wd-product .product-element-bottom > * {
    	order: 3;
    }
    
    @media (max-width: 768px) {
    	.wd-product .product-element-bottom .price {
    		width: 100%;
    	}
    }

    If you follow all these steps, your product will look as follows on desktop (https://monosnap.com/file/pUx68y1qXJa1qcfSyBv5qiojua5Td5) and mobile (https://monosnap.com/file/hB99LWND0zKthgilibqBRpDBEpULRu).

    Kind Regards

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