Protected: How to figure out right sizing of image on website?
There is no excerpt because this is a protected post.
There is no excerpt because this is a protected post.
Sometimes we need to change host files in windows because the domain name is not publicly pointing to the correct server. So how does it work? When we type and go to a domain name in browser, let’s say codinghelphq.com, your browser does not reach the server right away. There are the (simplified) steps: the…
Method 1: DevTools network – the 100% working method Control+Shift+J, devtools Go to Network In the table columns, right click, make sure “Domain” is checked off Reload the page Try to find google-analytics or similar in domain request If you see it, it means analytics is installed This works 100% of time, because browsers need…
Go to https://technicalseo.com/tools/schema-markup-generator/ Select Local Business for the schema markup Add business details Copy schema script once adding of the business details is done To add schema for service area that doesnt have address we need to Go to https://technicalseo.com/tools/schema-markup-generator/ Select Local Business for the schema markup Add business details Copy the schema code generated on the…
Situation: This is after you turn SSL on for your website. And your browser address is already showing https:// But for some reason, Chrome is not showing a secure padlock on the address bar. It is showing red, warning. Do the following to find out why On Chrome, press Control+Shift+J to open the…
Go into the brand account On the top right, click on the circle icon of profile, then click Youtube Studio Click Bottom left: Add email address of the person you want to invite Click Invite
Add Plugins, install WP Super Cache Activate WP Super Cache Plugin Go to WP Super Cache Settings then turn caching on Click Update Status Go to Advanced tab, Cache Timeout 1800000 seconds Timer 60000 seconds Click Change expiration Go to Preload tab Turn on preload mode (check off) Update refresh pre-leoaded cache every files every…
Below are common htaccess redirects for wordpress. #Block a certain domain from being accessed RewriteEngine On RewriteCond %{HTTP_HOST} ^www.somedomainexample.com$ RewriteRule .* – [F] PHP Alternative for same: if($_SERVER[‘HTTP_HOST’] == ‘www.gooddomain1.com’ || $_SERVER[‘HTTP_HOST’] == ‘gooddomain1.com’){ //run some codes 1; }else{ exit; } Redirection www and non www: By default, wordpress + plugins handle these automatically.…
For some strange reason, some CSS files are not loaded on certain pages, resulting in Font awesome characters not processing properly. Use below to force through JS as a fallback. function missing_css_fix() { ?> <script> function missing_css_fix () { var ss = document.styleSheets; for (var i = 0, max = ss.length; i < max; i++)…
Add this to the functions.php function function_name() { ?> whatever you want to print <?php } add_action( ‘wp_footer’, ‘function_name’ ); function function_name() { ?> whatever you want to print <?php } add_action( ‘wp_head’, ‘function_name’ );