Niraj Singh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: ssl problemno there was nothing complete blank
Forum: Plugins
In reply to: [Contact Form 7] recaptcha contact form 7its now working on my devices too sorry
- This reply was modified 3 years, 9 months ago by Niraj Singh.
Forum: Fixing WordPress
In reply to: ssl problemRewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]Forum: Plugins
In reply to: [Contact Form 7] recaptcha contact form 7sorry,
i discovered this is happening only with my devices(desktop and smartphone)
still strange?Forum: Fixing WordPress
In reply to: ssl problemi edit .htaccess acording to my hosting provider (https://www.bluehost.com/help/article/force-ssl-on-all-pages) but didn’t work
Forum: Plugins
In reply to: [WooCommerce] How do I hide the order_review table in WooCommerce?hi,
any way to add link of product to that image
thanksForum: Plugins
In reply to: [WooCommerce] How do I hide the order_review table in WooCommerce?Thanks it worked perfectly
Forum: Plugins
In reply to: [WooCommerce] How do I hide the order_review table in WooCommerce?hi thanks for the reply
blow is the code i have increased only width and height little to make image larger you can see.add_filter( 'woocommerce_cart_item_name', 'ts_product_image_on_checkout', 10, 3 ); function ts_product_image_on_checkout( $name, $cart_item, $cart_item_key ) { /* Return if not checkout page */ if ( ! is_checkout() ) { return $name; } /* Get product object */ $_product = apply_filters( 'woocommerce_cart_item_product', $cart_item['data'], $cart_item, $cart_item_key ); /* Get product thumbnail */ $thumbnail = $_product->get_image(); /* Add wrapper to image and add some css */ $image = '<div class="ts-product-image" style="width: 283px; height: 226.4px; display: inline-block; padding-right: 7px; vertical-align: middle;">' . $thumbnail . '</div>'; /* Prepend image to name and return it */ return $image . $name; }