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

How to import a large MySQL database into OpenServer

How to import a large MySQL database into OpenServer

How to import a large MySQL database into OpenServer

Perhaps everyone is used to importing a database using phpMyAdmin. But this platform has a limit on the weight of the file that can be uploaded. So if the database dump exceeds this quota, you can’t do it through phpMyAdmin. Today I’m going to show an alternative way to load the database – through the […]

DOMSubtreeModified – event on element change action

DOMSubtreeModified – event on element change

DOMSubtreeModified – event on element change

Brief background I had a website in which the forms were configured on the Contact Form 7 plugin. These forms themselves were integrated with Mailchimp. The challenge was this: after a user fills out and submits a certain form, the message should go to the service with a certain tag (Mailchimp tags are the easiest […]