wordpress

How to Create Child-theme in WordPress Step by Step very easy

Video for who doesn’t like to read ;). And if you like the video then subscribe my channel and share this with others who has the same issue. Step – 1: Select any theme ( For ex. 2020 ). This will be called a parent theme. Step – 2: Create folder for child-theme at ​”wp-content/themes/parent_theme_folder_name-child“ […]

How to Create Child-theme in WordPress Step by Step very easy Read More »

Asking authentication when we try to access homepage on WP Engine

Recently, I migrated a site from the flywheel to WP Engine using Migrate Guru plugin. After migration, I was asked to add browser authentication when I try to access the homepage. It was not asking the authentication when I try to access wp-admin. Below is the screenshot what I was getting. So I connected WP

Asking authentication when we try to access homepage on WP Engine Read More »

Fix – ERROR 1031 Table storage engine for ‘table_name’ doesn’t have this option

Sometimes you get the below error while importing the database. ERROR 1031 (HY000) at line 5643 in file: ‘/Users/username/Downloads/database.sql’: Table storage engine for ‘table_name’ doesn’t have this option Now let’s fix this. Step – 1 Open your sql file in your favourite editor and go to SQL query of that table. You will see ROW_FORMAT=FIXED

Fix – ERROR 1031 Table storage engine for ‘table_name’ doesn’t have this option Read More »

BuddyPress Re-post Activity WordPress Plugin

Sometimes you like someone’s post in activity thread and you want to re-post that activity publically or on your group. So now you can re-post an activity from BuddyPress activity page with the help of this plugin. What this plugin does? It will provide a button for reposting activity. We can also enable/disable this functionality

BuddyPress Re-post Activity WordPress Plugin Read More »

User avatar in BuddyPress notification loop

BuddyPress by default doesn’t show user avatar in the notifications. But you can do that by simply adding couple of lines in notification loop. BuddyPress stores the other user id as secondary id. Here is the code to be used in notification loop. echo bp_activity_avatar( array( ‘user_id’ => bp_get_the_notification_secondary_item_id() ) ); That’s it…

User avatar in BuddyPress notification loop Read More »