Entries by admin

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 […]

How to use WordPress Shortcode in template

How to use WordPress Shortcode in template Shortcodes in WordPress are little bits of code that allow you to do various things with little effort. You can use in the content area to invoke some kind of function to accomplish certain tasks. But what if you want to use a shortcode from within a template […]

Web Setup Wizard 401 Unauthorised Access

Web Setup Wizard 401 Unauthorised Access Today I got issue on Magento2 site when try to open Web Setup Wizard section. System -> Tools -> Web Setup Wizard Here is the solution for fixing this issue. This one works for me so I thought it would be just posted for all of the world 🙂 […]

What is WordPress Permalink

WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. Permalinks are the permanent URLs of your individual blog post or page on your WordPress site. Permalinks are also referred to as pretty links. By default, […]