• Thanks Varun.

    this plugin works and works as said.

    Some suggestions:

      Please include some example documentation on how to change the look and feel of the button.
      Block the “Added to Cart” message when we are using Buy Now, as its useless.

    I just used css to hide the “product added to cart message” on checkout

    I had to google around and thankfully someone posted the suggestion on your youtube channel ??

    I am pasting the code here if anyone can find it useful.

    CSS in Child Themes Style.css file

    /** Quick Buy Button Placement Only in product name and buttons area **/
    .product-template-default .entry-summary .quick_buy_container {
    position: relative;
    left: 225px;
    top: 62px;
    }
    
    /* Quick buy button position on Homepage */
    .home .quick_buy_container {
    position: relative;
    left: 0px;
    top: .75em;
    }
    
    /* Quick buy button position on Product Single Page in Related Products Section */
    .product-template-default .related .product .quick_buy_container{
      position: relative;
      left: 0px;
      top: .75em;
    }
    
    /* Quick Buy Button Styling in Card View */
    .wcqb_button, .wc_quick_buy_button, .quick_buy_button, .quick_buy_simple{
      background-color: #333333;
      border-color: #333333;
      padding: .6180469716em 1.41575em;
      color: #ffffff;
      font-weight: 600;
    }
    
    .wcqb_button:hover, .wc_quick_buy_button:hover, .quick_buy_button:hover, .quick_buy_simple:hover {
    				background-color: #1a1a1a;
    				border-color: #1a1a1a;
    				color: #ffffff;
    			}
  • The topic ‘Works with some scope for improvement’ is closed to new replies.