Author: Stasyuk Eugene 120 Tags: 17.12.2022

How to remove the prefix “Category, Label …” from archive pages?

Place the filter in the functions.php file in our theme folder

/*
* Remove prefix in acrhive titles
*/
add_filter('get_the_archive_title_prefix', '__return_empty_string');

How to remove the scale of images when uploading to media?

Place the filter in the functions.php file in our theme folder

/*
* Remove image scaling
*/
add_filter( 'big_image_size_threshold', '__return_false' );

How to style scrollbar (css)?

body::-webkit-scrollbar {
  width: 8px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #fff;        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #000;    /* color of the scroll thumb */
  border-radius: 4px;       /* roundness of the scroll thumb */
  border: 1px solid #fff;  /* creates padding around scroll thumb */
}

Why doesn’t search work on a WordPress site in other languages?

Perhaps we should pay attention to the value of the action attribute in our search form. Using the example of my site, the main page in English is available at the following address: https://jecosjmecos.com.ua/en/main/ . If we use this address in an action, our page url will be https://jecosjmecos.com.ua/en/main/?s=favs . In this case, we will get to the 404 page, since the search page will only be available if we remove the main from the address. Therefore, in this case, the action should contain the address https://jecosjmecos.com.ua/en/ and the url of the search page will look like this https://jecosjmecos.com.ua/en/?s=favs.

Other articles

Anchor links and fixed header

Anchor links and fixed header

Anchor links and fixed header

Recently, I haven’t seen any websites that have a static header for a long time. Almost all of them fix it at the top of the window. At least it’s very convenient to have the site navigation at your fingertips. But there is one thing that can cause discomfort with this approach: anchor links. Usually, […]

How to pull svg content from img tag? Option 2 svg

How to pull svg content from img tag? Option 2

How to pull svg content from img tag? Option 2

If we use php in development, then extracting the svg content from the image becomes as easy as shelling pears. To do this, we just need to have a path to the image. In this case, the file_get_contents() function comes to our aid. You can read more about it here. Approximately using this function would […]