Entries by admin

What is Shopify and how does it work?

What is Shopify and How Does It Work? If you’re planning to start an online store, you’ve probably heard of Shopify. It’s one of the most popular eCommerce platforms in the world, powering millions of businesses across different industries. But what exactly is Shopify, and how does it work? Let’s break it down in simple […]

How to replace add to cart button text for specific category

To replace the “Add to Cart” button text for a specific category in WooCommerce, a custom PHP code snippet is typically used. This code needs to be added to your theme’s functions.php file or, preferably, using a code snippets plugin like “Code Snippets.” Steps to replace the “Add to Cart” button text for a specific category:  Access your […]

Top 5 GST Billing Apps for Small Businesses in India 

🧾 Top 5 GST Billing Apps for Small Businesses in India Running a small business in India means keeping up with the ever-changing GST regulations — and that’s not easy without the right tools. GST billing software helps you simplify invoicing, track expenses, and file returns without errors or delays. Here’s a look at the […]

Google Custom Search WordPress Plugin

With wordpress Google custom search plugin, wordpress user can boost the search functionality for his websites/blogs. WordPress has a relatively good search functionality but doesn’t match keywords that well. WordPress search functionality display results ordered by date and not by its relevance to the keywords. Here is a very good Google custom search plugin I […]

How to customize email template in Magento2

How to customize email template in Magento2 To customize an email template in Magento 2, navigate to the Admin Panel and go to Marketing > Communications > Email Templates. Click Add New Template, then select a default template as a base and click Load Template. Modify the template content using HTML and Magento’s built-in variables […]

How to Create New Admin User in Magento 2

How to Create New Admin User in Magento 2 To create a new admin user in Magento 2, log in to the Magento Admin Panel and navigate to System > Permissions > All Users. Click on “Add New User”, then fill in the required details, including User Name, First Name, Last Name, and Email. Set […]

Shopify dawn theme filters to show always open

Shopify dawn theme filters to show always open You can try this code by following these steps: Step 1: Go to Online Store->Theme->Edit code Step 2: Search file theme.liquid Step 3: Paste the below code before </body> of the file -> Save <script> window.addEventListener(‘DOMContentLoaded’,(event)=>{ document.querySelectorAll(‘facet-filters-form details.facets__disclosure-vertical’).forEach(item=>{ if(!item.hasAttribute(‘open’)){ item.querySelector(‘summary’).click() } }) }); </script>

WordPress: get author info / user details from post id

Some times we needed to pull out the author data from a post id. It is very easy do it in wordpress. It can be accomplished by the_author_meta() function or get_the_author_meta() function. You will need call this function in your theme or plugin, through a hook. the_author_meta() –> Outputs the data, just like echo get_the_author_meta() -> holds the […]

Get Google To Remove The Blacklist Warning

After fully cleaning up your site infection, you must inform Google to remove the blacklist warning. To do this, you must have a Google Search Console account (formerly Webmaster Tools). This way, the malware warning can quickly be removed. To verify ownership of your website in Google Search Console: Open Google Webmaster Central. Click Search […]

CORS policy: No ‘Access-Control-Allow-Origin’

CORS policy No ‘Access-Control-Allow-Origin’ error Font from origin domain.dev has been blocked… (CORS and browsersync) If you are getting issue fonts are blocked in web client CORS then below code will help you. Use the code in .htaccess file and problem will be resolved 🙂 # Allow access from all domains for webfonts. <IfModule mod_headers.c> <FilesMatch […]