janothemes
Forum Replies Created
-
Hi, Sorry for the late response.
I used mozilla firefox and chrome, i was copying the the whole code not a section of the code. yeah i used blocks eg: [php]</strong>[/php]
Yeah with double click it works well, But many users just copy it and paste the code to use it. so it will produce error and they will think that errors are in code.
Thanks for the explanation.
But if we still want to removed the filter.
I already tried with remove_filter and tried again after you mentioned .add_action( 'init', 'bc_woocommerce_coupon_is_valid', 5); function bc_woocommerce_coupon_is_valid() { remove_filter( 'woocommerce_coupon_is_valid', ['Hooks', 'ensure_vendor_coupon'], 10); }
Also tried this
remove_filter( 'woocommerce_coupon_is_valid', ['WeDevs\Dokan\Order\Hooks', 'ensure_vendor_coupon']);
But it is not working. Can you please tell me the correct code.
Thanks
- This reply was modified 2 years, 2 months ago by janothemes.
Hi,
No we did not setup any weight and dimensions, But still it should not create any error.
Hi André,
Any luck with with the error?
Forum: Plugins
In reply to: [Contact Form 7] Pipes not working in drop down selectHi,
Then can you explain this documentation on your website:
https://contactform7.com/selectable-recipient-with-pipes/It says that you can use pipes like this.
Forum: Plugins
In reply to: [shipcloud for WooCommerce] Fatal Error after activation pluginHi,
I already send you email. Please check and let me knowThank
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] ??Site down if activate this plugin??the issue was due to this plugin Sources for WooCommerce Stripe Gateway. it is not compatible with woocommerce Stripe.
- This reply was modified 6 years, 4 months ago by janothemes.
Forum: Plugins
In reply to: [WooCommerce] change product price in cartHi,
In the late version of woocommerce $value[‘data’]->price = $custom_price; this code is not updating the price in cart.
Can you please send me the late code to update price of product in cart programmatically?
Thanks
Hi,
It was working before but when i updated php to 5.6 it is not showing any report. i checked the ajax Request of GAD and it show 500 Internal Server Error.
So the plugin has the issue with PHP 5.6
Please fix it.
Forum: Plugins
In reply to: [jano wp and woocommerce advanced search] Problem with View allhi
Are you using woocommerce? if yes the woocommerce post type is product not products. so it should work with post type product.
by the way you can change in shortcode the posttype as products.
Thanks Julien.
That is what i was searching for.
Thanks again for the beautiful solution.
Hi anisjolly,
please show me the demonstration,
Thanks
Forum: Plugins
In reply to: [jano wp and woocommerce advanced search] View ALlThe problem is with you default wp product search page, as the plugin uses the default search page.
You should check it with default woocommerce search, if it show products on search page.
Forum: Plugins
In reply to: [WP-PageNavi] WP-PageNavi not working on 4.4.1 and U DesignIn the template file at the bottom.
Forum: Plugins
In reply to: [WP-PageNavi] Not working on home page with custom post typePut the below code after the page_navi function called.
<script> jQuery('.wp-pagenavi a').each(function() { var url = jQuery( this ).attr('href'); var array = url.split('/'); var lastsegment = array[array.length-2]; jQuery( this ).attr('href', '<?php echo site_url(); ?>?paged='+lastsegment); }); </script>
put page_slug <?php echo site_url(‘Page_slug’); ?> like this if pagination on other then home page.