• ???? ?? ????

    (@socialgamesforeveryhour)


    .woobt-qty-num{
    display: none;
    }
    remove qty num only in pc and not in mobile how can I remove its from every where and also remove (number) in add add to cart button

Viewing 5 replies - 16 through 20 (of 20 total)
  • Plugin Author WPClever

    (@wpclever)

    As I said, please remove the old code and add the below code to the end of all.

    .woobt-qty-num {
        display: none
    }

    DONT’T place this code in:

    @media only screen and (max-width: 767px) {
        ...
    }
    Thread Starter ???? ?? ????

    (@socialgamesforeveryhour)

    yes its works there is an option to replace 1x to other text in css?

    Plugin Author WPClever

    (@wpclever)

    You can use below snippet (How to add custom code?):

    add_filter( 'woobt_product_qty', 'woobt_custom_product_qty', 10, 3 );
    function woobt_custom_product_qty( $item_product_qty, $item_qty, $item_product ) {
    	return 'Your custom text here!';
    }
    Thread Starter ???? ?? ????

    (@socialgamesforeveryhour)

    not worked

    Plugin Author WPClever

    (@wpclever)

    Maybe you hide it by using the above CSS code, so you don’t see it. Please also remove the CSS code.

Viewing 5 replies - 16 through 20 (of 20 total)
  • The topic ‘remove “this product:”’ is closed to new replies.