lankaster
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] crawler_disabledDone
Forum: Plugins
In reply to: [LiteSpeed Cache] crawler_disabled?? check plz, on
Forum: Plugins
In reply to: [LiteSpeed Cache] crawler_disabledHow can i do this?
Hope someone will help us.
Forum: Plugins
In reply to: [WooCommerce] Cash on delivery payment always visableHi, i am back. I want it to work other way, all thoes plugins make payment enable/disable base on shipping. I want to make shipping enabe/disable base on payment.
Forum: Plugins
In reply to: [WooCommerce] Checkout custom class for inputSolved at wordpress forum by adding this class to all input, textarea fields.
function my_footer_script() { ?>
<script type=”text/javascript”>
jQuery(document).ready(function($) {
$(‘input, textarea’).addClass(‘data-hj-whitelist’);
});</script>
<?php }
add_action(‘wp_print_footer_scripts’, ‘my_footer_script’);Forum: Fixing WordPress
In reply to: Add class to input fieldsThank you very much. It worked, i have tried on woocommerce support but haven’t recived any help. Your solution worked well. I think it will don’t cause ant trouble.
Forum: Plugins
In reply to: [LiteSpeed Cache] Empty cart at mainpageIt doesn’t helped
Forum: Plugins
In reply to: [LiteSpeed Cache] Empty cart at mainpageOMFBSBIS
I turn off plugin for now.
Forum: Plugins
In reply to: [WooCommerce] Gift a product to someoneI would make it in mailing way, send them email with cupon for 100% discout of this product.
Forum: Plugins
In reply to: [WooCommerce] How do I align product images to the top?You can edit media at media liblary, you enter media you want to edit you click edit. And check SS for more.
It should work fine.
- This reply was modified 5 years, 3 months ago by lankaster.
I am sure they aren’t.
Yes i have very fast server so its just done fast.
i tried even to put filters that will exclude all product update and check if xml is empty but nothink changes.Processing is blinkingo processing (0%) and then it apear Ready. I tried to turn off plugins.
There is no any error msg i created feed and it doesn’t update manuale or automaticli, i have changed mapping and i try to refresh it but it doesnt work.
Forum: Plugins
In reply to: [WooCommerce] Add product to cart when coupon apliedThis is my last version and it dosnt work too
function iconic_add_to_cart() {
$coupon_code = KOBIETY-VX1;
if ( do_action( ‘woocommerce_applied_coupon’, $coupon_code )) {
return;
}
$product_id = 19145;WC()->cart->add_to_cart( $product_id );
}
add_action( ‘wp’, ‘iconic_add_to_cart’ );