Ние създаваме уебсайтове за теб и твоят бизнес. За информация и запитвания: +359 876 700 417

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 ( [...]
English
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 [...]
English
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 [...]
English
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 [...]
English
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, [...]
English
12.06.2017

How to create a quick order form in our WooCommerce online store

Do you often wonder what tool to apply in your WooCommerce online store in order to help your clients shop easily and also increase your sales? Well, we have good news for you! You are at the right place for receiving this crucial information. Generally WordPress (in particular WooCommerce) offers limitless ways expanding their functionalities. [...]
English