
Pinakin Patel
PHP Web Developer
Resetting your wordpress password using SQL
https://www.domain.com/help/article/wordpress-how-to-change-or-reset-your-admin-passwordhttps://www.domain.com/help/article/wordpress-how-to-change-or-reset-your-admin-password
Installing and using ApacheTop on centos
You can check if epel-release is installed on CentOS by running the following command in the terminal: rpm -qa | grep epel-release This will check if the epel-release package is installed and will display the package name if it is installed. If the package is not...
Create a link to Google Search Console for ranking data
In this example I am going to create a link to google search console to get history of keywords used and organic position in the last 3 months for a url in your xcart 4 store from the backend. In order to do this you must have your domain verified and setup in google...
How to use Open AI for your Marketing and Website content and product descriptions
In this video I use OpenAI to write product descriptions or meta data using a product name and bullet point of features. Also explain how to use this to rephrase text if you already have something to work from
Adding your own custom css file to shopify store
When working with shopify you will want to edit the css file for yours store theme. Editing the css file is not recommended as you will come into issues with theme updates which either remove your updates or change so much that you had not idea what your original...
Using XPath custom extractions in Screaming Frog to get store category and product ids
https://builtvisible.com/seo-guide-to-xpath/
How to create lighthouse reports in batch using linux and chrome cli headless
Learn how to run lighthouse reports using chrome headless using a linux laptop.
Creating a timelapse video from gopro timelapse images using ffmpeg
Creating thumbnails from video files
How to Create a CSS Grid Layout for Divi Modules
For those already familiar with building websites in Divi, creating custom grid layouts is a core aspect of the Divi Builder.
How to detect edge browser in x-cart 4
The useragent string for edge browsers used to contain the word Edge. But now you get Edg without the e.
Massing deleting customers except admins in x-cart for for a test server
When creating a test store for developers to work on you should clean down any customer data for privacy
Shell command to tar.gz directory excluding certain files/folders
This will allow you to tar.gz a folder and not add the blog and other folders into it.
Setting a session cookie based on an Admin logged in front end on X-Cart 4
In x-cart Admin can longin as customers and place orders on their behalf.
How to identify a customer that is not logged in on shopify
You can use this code snippet to display different content on the site based on whether the user is logged in or not. Great for wholesale customers. {%- if customer.id == null -%} <div class="product-retail-link"><a href="#">Your text...
Making the Logo larger than 250px in the Shopify Taste Theme
By default this theme only allows you to have a maximum logo size of 250px.
Discount Coupon Product Exceptions
In xcart 4 the dscount coupon will discount all products. But in some cases you want to stop it discounting some products and not be part of the offer. This can be done using the following instructions.
Sorting products so out of stock appear at the bottom in X-Cart 4
These instructions are for sorting products in xcart product listing pages what ever sort order is used but the out of stock items are always shown at the bottom. edit the /include/fun/func.product.php //find if ( stripos($query,...
Mass Delete all customers for test server purposes in xcart 4
Create a file in /admin/ called delete_all_customers.adhoc.php and add the following to it. define('IS_MULTILANGUAGE', 1); require './auth.php'; require $xcart_dir.'/include/security.php'; x_load('backoffice'); $customers_sql = "select id from $sql_tbl[customers]...
Commenting out code using liquid in Shopify
In order to comment out the needed part of the code, put the {% comment %} tag before needed code and {% endcomment %} tag after it.
Using An SVG File For Your Shopify Store Logo
How to replace the png image with an svg logo on shopify
How to reset a linux mint user password after you have forgotten it
Reset your linux password
How to reset a wordpress admin password when you server will not send out the password reset email
Need to reset the admin password on wordpress directly in SQL?
Linking to a page when clicking a row using Tabulator
How to link to a new page using the value return in a row when clicked using Tabulator
How to clear down a log file on linux
if you need to clear down a log file on linux as it is getting too big. Rather than delete and allow the application to re-create it. You can use the following command which will not interupt the program using it. cat /dev/null > /path/to/logfile # to empty all the...





















