Author: Stasyuk Eugene 164 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

Date range in WP_Query – output posts by meta_query wordpress

Date range in WP_Query – output posts by meta_query

Date range in WP_Query – output posts by meta_query

WP_Query class is one of the WordPress tools that helps to display posts according to the required parameters: categories, sorting, date range, etc. The list of parameters is pretty decent. You can read more about them in the documentation here: https://developer.wordpress.org/reference/classes/wp_query/ . Some parameters are quite extensive and sometimes it’s much easier to understand them […]

Page content navigation

Page content navigation

Page content navigation

What’s this? On some sites, you can periodically find something like this: This thing works like this: Each content item is an article heading h2, h3, h4… By clicking on any of these items, we move with the help of an anchor link to the area of the page we need. Also, when we scroll […]