Web Developer Notes - Page 4
How to Remove the “Website” Field from the WordPress Comment Form
Last updated: 26.10.2025
Views: 1106
By default, WordPress includes a "Website" or "URL" field in its comment form. While this may be useful in some cases, it often attracts spammers who leave low-quality comments just to insert backlinks. If you're looking to reduce spam and keep your comments section clean, removing the URL field is a simple and effective step.
You can do this easily by adding a small PHP snippet to your theme’s...
Why Website Loading Speed Matters for SEO
Last updated: 21.02.2026
Views: 453
Website loading speed plays a crucial role in modern SEO strategies. Search engines like Google prioritize websites that offer fast and smooth user experiences. A slow-loading site can frustrate visitors, increase bounce rates, and ultimately affect your search engine rankings. Speed has become an official ranking factor for both desktop and mobile searches.
Google’s algorithm considers page ex...
How to Create a Drop Down Menu Using only HTML and CSS
Last updated: 10.04.2026
Views: 845
In one of the previous articles, we looked at creating a drop down menu using JavaScript (jQuery). In this article, we will look at how to make a drop down menu using only HTML and CSS. This implementation is not always suitable for everyone, but in some cases it can be useful. Our menu will be horizontal. The menu items will have a fixed width. Let's set position: relative for all list elements. ...
Internal Linking on Websites
Last updated: 07.04.2026
Views: 614
Internal linking refers to the practice of connecting pages within the same website using hyperlinks. This strategy plays a crucial role in both search engine optimization (SEO) and overall site usability. When implemented correctly, internal links help search engines understand the structure of your website and the relationships between individual pages.
One of the key benefits of internal lin...
Making a Query in Salesforce Using SSJS
Last updated: 09.04.2026
Views: 504
When working with Salesforce Marketing Cloud, you may need to send data to an external service or fetch content dynamically based on request parameters. Server-Side JavaScript (SSJS) gives you the flexibility to perform HTTP requests, handle responses, and manipulate JSON data directly within your cloud pages or emails. In the example below, we use Platform.Load to initialize the core library, ret...