Този уебсайт използва бисквитки, за да можем да ви предоставим възможно най-доброто потребителско изживяване. Информацията за бисквитките се съхранява във вашия браузър и изпълнява функции, като например да ви разпознае, когато се върнете на нашия уебсайт и да помогне на нашия екип да разбере кои раздели на уебсайта ви се струват най-интересни и полезни.
- Начало
- Публикации
Публикации
04.06.2021
04.03.2020
How to Add Open Graph Meta Tags in WordPress
If you want to add Open Graph Meta Tags on your WordPress website, you can manually add this functionality to your WordPress theme. This small code snippet, will help you to add Open Graph Meta Tags in your WordPress theme. /** * Add Open Graph Meta Tags */ function meta_og() { global $post; if ( [...]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 [...]15.05.2019
Как да покажем всички продукти, поръчани от даден потребител в неговия профил в WooCommerce
Искаш ли, когато даден потребител е влязъл в своя профил, той да може да вижда списък на всички закупени от него продукти, например в раздел "Моят профил"? Тогава си попаднал на правилното място, защото тук, ще ти покажем, как може да направиш точно това. Наслади се! ВАЖНО: винаги използвай child тема в WordPress! За да постигнеш [...]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 [...]08.12.2018
Как да изключим Gutenberg (Гутенберг) от WordPress 5.0 без плъгин?
Само преди няколко дни (на 06.12), официално бе пусната версия 5.0 на WordPress. Една от най-основните промени в нея е новият редактор Gutenberg (Гутенберг), като имаше доста мнения на специалисти, че заменянето на досегашния WordPress редактор с Gutenberg, би довело до редица проблеми, като препоръчваха да не се бърза с обновяването на сайтовете до версия 5.0 [...]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
Как да променим символ на валута в WooCommerce
Неочакваните изненади стимулират непрекъснатото учене. Всеки нов опит ни показва, че уеб разработката е море, което крие постоянни изпитания. Та какво се случва, когато валутата за e-commerce сайт се появява на местния език, а сайтът е на английски? Ами, търсим решение, за да преодолеем това. Слава Богу, това решение се намира съвсем лесно. Проблемът с [...]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 [...]- 1
- 2