Are you seeing a message like, “Make Sure The Value of Authorization Header Is Formed…” and not sure what do to about it.
Sal April 6th, 2024
Posted In: Web Development
If you are faced with a “multiple URL encoding detected” or “multiple encoding detected” error, it can be somewhat confusing to troubleshoot, but this is a very fixable error. Let’s dig into to some likely causes and solutions.
Sal April 6th, 2024
Posted In: Web Development
Tags: WAF
If you are using Squarespace for your website or blog then you might be linking to affiliate partners from time to time. The current SEO guidance from Google is that monetized links like these carry either rel=nofollow or rel=sponsored tags in order to qualify these outbounds links as being of a commercial nature.
Unfortunately Squarespace doesn’t natively support rel=nofollow or rel=sponsored additions to an <a href=
tag. So how do you fix this in order to save your site from a possible SEO penalty?
Sal February 25th, 2024
Posted In: Web Development
Tags: Squarespace
Are you getting a 431 error on a page that you suspect should be working properly? There is a good chance that it’s a local issue and it’s an easy fix.
Sal November 4th, 2022
Posted In: Web Development
Content management systems tend to ignore URL parameters, but sometimes you don’t want this to happen. Here is how you fix that with WordPress.
Sal September 21st, 2022
Posted In: Web Development, Wordpress
The United Nations location code identifier system (UN/LOCODE) has an interesting system for noting the function of a specific location. Basically there is an 8-digit “classifier” which changes based on the function of the space. While logically interesting, it’ll require some custom work to parse this classifier and get written values from it.
Sal September 16th, 2022
Posted In: Web Development
Tags: Location Data
If you are writing a typical WordPress wp query you might not even mention the “post_type” filter, where you limit the post types returned in your query.
If you are looking for a specific post type, or possibly a custom post type, then you will use
'post_type' => 'yourCustomPostTypeName'
in order to only get results from that custom post type (CPT).
But what if you want you want to run a query to get the names of the post types, not the posts themselves?
Sal December 31st, 2021
Posted In: Web Development
Tags: Wordpress
If you are doing custom work on WordPress, you probably are using WP query. These is basically a database, essentially SQL, inside the WordPress template in order to deliver a highly customizable set of posts. With the ability to customize comes a bit of complexity.
One of the weird things that can happen is that a WP query that should yield no results will sometimes return many results. How do you fix this?
Sal December 31st, 2021
Posted In: Web Development
If you want to add structured data (via Schema.org spec) to your WordPress site, there are lots of options. There are so many options in fact that it’s hard to figure out which is right for you.
Sal November 9th, 2019
Posted In: Web Development
Tags: Schema, Structured Data
One of the best things (OK, the best thing) about development with WordPress is piggybacking on the available plugins. If you are doing custom development chances are that a plugin probably wasn’t made with your specific use case in mind, so it’s often necessary to some work to get the plugin’s functionality and your goal to match. With that in mind, you have probably recently asked yourself, “Can I use a WordPress shortcode in my theme, as opposed to just inserting it into the text body?”
Good news,: you definitely can.
Sal May 3rd, 2019
Posted In: Web Development
Tags: Wordpress