Home Blog
Shiba inu token review – forecast for 2024
Shiba inu (SHIB) is a token created by an anonymous team in August 2020. The developers positioned the new meme currency as a continuation...
Pepe coin (PEPE) cryptocurrency review
Pepe coin is a meme cryptocurrency created on the Ethereum blockchain that became popular in 2024. Currently, Pepe is among the top 50 most...
How to get main category by product id Yoast SEO
If in an online store written on the WooCommerce plugin, you need to get the main (main) category by product id (Yoast SEO), you...
Submitting an Ajax form in Laravel
Let's create a form without reloading the page on the Laravel framework using ajax technology. First, let's write the routes in web.php
// New page...
Find phone numbers in divs via JS and make them links
Suppose there is an html layout where you need to make all phone numbers links and add a class to each link:
<div>
<ul>
<li>+375007778899</li>
<li>+375007778822</li>
<li>+375007778811</li>
</ul>
</div>
Let's run the...
WooCommerce Price Filter – Trigger When Slider Changes
So that when filtering prices in the WooCommerce CMS online store of the WordPress standard filter system, automatic filtering occurs without clicking a button,...
A simple script for tabs in jQuery
Let's look at a simple tab script written in html, css and js (jQuery). You can implement this tab script into any CMS system...
Outputting information from ACF fields in WordPress shortcode
Let's look at how to display information from ACF (Advanced Custom Fields) fields via the Wordpress shortcode anywhere on the site. Let's display a...
Ajax requests in WordPress using jQuery
How to write Ajax requests in WordPress using php and js? To create an ajax request, you need to register an action handler (method)...
Custom api route for updating ACF fields in WordPress
Let's write our own custom api route to update ACF fields. The api request will have two handlers - POST and GET. GET -...