<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: BIJAY KUMAR NAYAK</title>
    <description>The latest articles on DEV Community by BIJAY KUMAR NAYAK (@memebijay).</description>
    <link>https://dev.to/memebijay</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F841282%2F545d4a8a-ebf5-41fc-89be-58c6372705f5.jpg</url>
      <title>DEV Community: BIJAY KUMAR NAYAK</title>
      <link>https://dev.to/memebijay</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/memebijay"/>
    <language>en</language>
    <item>
      <title>How to Disable Coupons for COD Orders in WooCommerce</title>
      <dc:creator>BIJAY KUMAR NAYAK</dc:creator>
      <pubDate>Mon, 17 Apr 2023 05:03:04 +0000</pubDate>
      <link>https://dev.to/memebijay/how-to-disable-coupons-for-cod-orders-in-woocommerce-3mjg</link>
      <guid>https://dev.to/memebijay/how-to-disable-coupons-for-cod-orders-in-woocommerce-3mjg</guid>
      <description>&lt;p&gt;Coupon codes are a popular way to incentivize customers to make purchases on e-commerce platforms. However, for businesses that offer cash on delivery (COD) as a payment option, coupons can be a double-edged sword. While they can attract customers and boost sales, they can also lead to revenue loss and increased risk of fraud. That's why it's important to disable coupon codes for COD orders in WooCommerce.&lt;/p&gt;

&lt;p&gt;The good news is that disabling coupons for COD orders in WooCommerce is easy. You can do it by adding a simple code snippet to your functions.php file.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;add_filter( 'woocommerce_coupon_is_valid', 'disable_coupon_for_cod_orders', 10, 2 );

function disable_coupon_for_cod_orders( $is_valid, $coupon ) {
    // Check if COD is selected
    if ( isset( $_POST['payment_method'] ) &amp;amp;&amp;amp; $_POST['payment_method'] == 'cod' ) {
        $is_valid = false;
        wc_add_notice( __( 'Sorry, you cannot use a coupon for COD orders.' ), 'error' );
    }
    return $is_valid;
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This code snippet will check if the customer has selected COD as the payment option, and if so, it will disable the coupon codes for that order. This way, you can ensure that your business is protected from coupon code abuse, while still offering your customers the convenience of COD&lt;/p&gt;

&lt;p&gt;Disabling coupons for COD orders is an effective way to prevent revenue loss and reduce the risk of fraudulent activities. It also ensures that your business can continue to offer COD as a payment option without incurring any additional costs or risks.&lt;/p&gt;

&lt;p&gt;In addition to disabling coupons for COD orders, you can also consider implementing other fraud prevention measures, such as address verification and fraud detection tools. These measures can help you further reduce the risk of fraudulent activities and protect your business from revenue loss.&lt;/p&gt;

</description>
      <category>woocommerce</category>
      <category>wordpress</category>
      <category>webdev</category>
    </item>
    <item>
      <title>The Best Zapier Alternatives I Have Used So Far</title>
      <dc:creator>BIJAY KUMAR NAYAK</dc:creator>
      <pubDate>Fri, 15 Jul 2022 10:09:17 +0000</pubDate>
      <link>https://dev.to/memebijay/the-best-zapier-alternatives-i-have-used-so-far-3ll6</link>
      <guid>https://dev.to/memebijay/the-best-zapier-alternatives-i-have-used-so-far-3ll6</guid>
      <description>&lt;p&gt;Note: This is not a sponsored article. All views are from my personal experience&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyptmjppcvu1qxz54nqq8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyptmjppcvu1qxz54nqq8.png" alt="Pabbly Connect Vs Zapier" width="800" height="466"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;As a digital marketer and web developer, i have used many tools for many software automation. &lt;/p&gt;

&lt;p&gt;For automation i have used the following tools&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Zapier&lt;/li&gt;
&lt;li&gt;Integromat&lt;/li&gt;
&lt;li&gt;Integrately (used in last year)&lt;/li&gt;
&lt;li&gt;Automate.io&lt;/li&gt;
&lt;li&gt;IFTTT&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;But every platform gives some type of restriction at some point of time be it price wise or feature wise.&lt;/p&gt;

&lt;p&gt;I have stopped using Zapier for about 3 year and they switched to other provider. &lt;/p&gt;

&lt;p&gt;One week back I was searching for some alternatives to Integrately as integrately changing it's pricing model.&lt;/p&gt;

&lt;p&gt;I came across one FB ad regarding task automation. It was from &lt;a href="https://bit.ly/PabblyC" rel="noopener noreferrer"&gt;Pabbly Connect&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;After visiting their website I found out that they are charging nothing as compared to Zapier. &lt;/p&gt;

&lt;p&gt;I have found that they do not charge for internal task which other providers charge as one credit. Which saves a lot of credit utilization.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa75fnhsocky5erts8z5v.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa75fnhsocky5erts8z5v.png" alt="pabbly Connect Free task" width="800" height="433"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Their team has published a ton of tutorial videos about how to create different automation with step by step guides for all non-techy person.&lt;/p&gt;

&lt;p&gt;I have joined their FB group and noticed that they are quite aggressive towards adding new integration. They are taking user consideration and adding every requested integration platform in a responsive manner.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuy3vuhzp7fkz9amcwgx0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuy3vuhzp7fkz9amcwgx0.png" alt="Automation list" width="800" height="503"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Best thing is that any small business can use it as apart from recurring pricing that also provide one time plan.&lt;/p&gt;

&lt;p&gt;Coming to the pricing, So far Pabbly connect provides best pricing as compared to industry peers. And i hope they will continue to provide that unlike others.&lt;/p&gt;

&lt;p&gt;Apart from pabbly connect they do have other products but I have not used them. I will post my views once I have used those tools.&lt;/p&gt;

&lt;p&gt;You Can use &lt;a href="https://bit.ly/PabblyC" rel="noopener noreferrer"&gt;This Link&lt;/a&gt; To Signup or just check out the features&lt;/p&gt;

&lt;p&gt;Disclaimer: This article might have affiliate link which will enable me to get some extra income without affecting your purchase price.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>automation</category>
      <category>productivity</category>
      <category>news</category>
    </item>
  </channel>
</rss>
