Този уебсайт използва бисквитки, за да можем да ви предоставим възможно най-доброто потребителско изживяване. Информацията за бисквитките се съхранява във вашия браузър и изпълнява функции, като например да ви разпознае, когато се върнете на нашия уебсайт и да помогне на нашия екип да разбере кои раздели на уебсайта ви се струват най-интересни и полезни.
- Начало
- Публикации
- English
English
04.03.2020
04.03.2020
How to Remove Specific Product Tabs in WooCommerce
If you want to remove some of the product tabs on your WooCommerce website, you can manually add this functionality to your WordPress theme. This small code snippet, will help you to remove specific product tabs in WooCommerce. function wc_remove_product_tabs( $tabs ) { // remove the description tab unset( $tabs['description'] ); // remove the reviews [...]14.12.2018
How to disable Gutenberg from WordPress 5.0 without a plugin?
Just a few days ago (on 06.12), WordPress version 5.0 was officially released. One of the major changes to it is the new editor Gutenberg, and there were many expert reviews that replacing the current WordPress editor with Gutenberg would have led to a number of problems, recommending not to be in a hurry to [...]28.01.2018
How to display related posts in WordPress without plugins
If you are not interested in installing a related posts plugin on your website, you can manually add related posts functionality to your WordPress theme. To add the functionality manually, you will have to create related-posts.php file in your WordPress child theme and add the following code: IMPORTANT: Aways use a child theme in WordPress! <div [...]15.01.2018
Change the appearance of a foreign currency in WooCommerce
When you dive into web development there's always surprises. Every new experience shows us how much more there is to learn. As if it is never going to end. So... what happens when you change the currency and it appears in the native language - not in English. Well, you search for solutions. Thank God, [...]12.06.2017
Create a message for remaining amount of a purchase for free delivery in WooCommerce
Every online store owner aims at making things easier for his clients. This naturally leads to the second aim - developing the need and willingness within the costumer’s mind to shop even more from the store. There is a very easy but effective psychological trick that makes your customers increase the amount spent in your [...]12.06.2017