Knowledge.ToString()

  • Redirect Shopify Customer to Specific Page After Logout

    By default, Shopify redirects the customers to home page after logout. If you want to redirect the customer to show a specific page, there is no built in way to do it. Here is a small script to achieve the same. Save this script at the end of Shopify Admin > Online Store > Themes…

    |

  • Customize Bootstrap 3 Nav Bar With Minimal CSS Code

    If you ever wanted to create a custom nav bar using Bootstrap 3.0, you would need to find out the exact css classes in order to customize per your need. Here is the minimal css snippet that I have used in one of my project to customize Bootstrap 3.0 menu. Add “navbar-custom” class to “nav”…

    |

  • Task Scheduler The operator or administrator has refused the request

    I have a scheduled task on my Windows 10 machine and some days I observed that it did not run. Once it missed the run, it would not run forever till I manually kick off the job again. On internet, I could not find the answer so after trial and error, I found that the…

    |

  • Move Outlook Emails of Specific Date Range to a Folder

    If you would like to move the Microsoft Outlook emails of specific date range to a specific folder, you may use the Outlook Rules feature to achieve it. You may either use the rule one time only or run this rule on a specific folder. Here is a simple tutorial in order to achieve it.

    |

  • Shopify: An Error Prevented Any Liquid File From Being Saved

    You wanted to save Shopify liquid file and all of a sudden you are getting “An error prevented any liquid file from being saved”. Even if you add a single space character, this error occurs shows up. You would have searched online and found out that people were experiencing the similar issue. They reported that…

    |

  • How to Find Shopify Theme Version?

    If you want to find the Shopify theme version that you are using, here are the steps to find out the theme version. Login to your account Go to Online Store > Themes Click on Actions > Edit Code Open up Config and click on “settings_schema.json” and you will see the “theme_version” within the file.

    |

  • Shopify Debut Theme Grid System Breakpoints

    Even though Shopify has given the free responsive Debut theme and contains some cool features, if you are a seasoned developer, you immediately run into a road blocks. By default, Shopify Debut 2.1.0 (If you don’t know the theme version, here are the steps to find Shopify theme version) theme grid system breakpoints supports only…

    |

  • How to Restore MySQL Database on Windows?

    I had to restore the MySQL InnoDB database on Windows machine which took quite a bit of time as I did not know what to do and required lot of research as I bumped into multiple issues. Here are the steps if you ever wanted to restore the MySQL database.

    |

  • Powershell Script to Copy Files at Multiple Destinations Using Regex

    Here is a parameterized Powershell script to copy the files from one location to multiple destinations. You can also rename the files and use various date formats to put the files in yearly/monthly folder. Once the files are successfully copied, you have an option to delete the file from source location. Usage Source Code

    |

  • SSIS – How to Find If Attunity 32 Bits or 64 Bits Drivers Are Used

    Here is a simple flowchart to find out if the Attunity 32-bit or 64-bit drivers are going to be used when executing SSIS package. Please note that the answer does not depend on the if the database engine is 32-bit or 64-bit. Are you running SSIS from Visual Studio? If yes, then check if SSIS…

    |