• Resolved gurp34

    (@gurp34)


    Hi,
    1. On product category page, https://silvercustomjewellery.com/product-category/necklace/sterling-silver-necklaces/
    There are only 9 products showing on first page, then rest on 2nd , 3rd and so on. How do I incrase the no of products to be shown on the page ?

    2. Is there any free plugin to change the registration field or maybe if you can guide to add extra text filed registration page via files?

    3. I haven’t found to change blue colour of the radio button in the cart, This is the site: https://silvercustomjewellery.com/cart/

    4.I am using the Themeify plugin for the filter (sidebar). using woo-commerce default one as well, how do I show expand/collapse on the mobile version, if only using woocommerce sidebar?

    Thank you

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @gurp34 ,

    Thanks for reaching out.

    1. You can adjust the number of products in the archive page from wp-admin > Appearance > Customize > WooCommerce > Product Catalog – Number of products per row and rows per page.

    2. Yes, you can use plugins and custom code as well. Take a look at this example – https://rudrastyh.com/woocommerce/add-registration-form-field.html

    3. A radio button is a native element specific to each OS/browser. There is no way to change its color/style directly. An alternative solution can be like this –

    input[type='radio']:after {
            width: 15px;
            height: 15px;
            border-radius: 15px;
            top: -2px;
            left: -1px;
            position: relative;
            background-color: #d1d3d1;
            content: '';
            display: inline-block;
            visibility: visible;
            border: 2px solid white;
    }
    
    input[type='radio']:checked:after {
            width: 15px;
            height: 15px;
            border-radius: 15px;
            top: -2px;
            left: -1px;
            position: relative;
            background-color: #ffa500;
            content: '';
            display: inline-block;
            visibility: visible;
            border: 2px solid white;
    }

    You can see more about this discussion here.

    4. Out of the box, WooCommerce will not show the sidebars in expand/collapse view in the mobile version. If you want to implement the same feature as your theme for the WooCommerce sidebar, please get in touch with the theme developers to know how they have implemented it. Then you can use the same for other sidebars.

    Thank you ??

    laceyrod

    (@laceyrod)

    Automattic Happiness Engineer

    Hi @gurp34

    Since we haven’t heard back from you, and this thread has been inactive for a bit, I’m going to mark it as Resolved now for the overall health of the forums. Please feel free to open a new one if you have any further questions.

    Cheers!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘product-category limit ,Cart radio button colour, Registration page’ is closed to new replies.