Get the current post parent category ID
How to get the current post parent category ID? Just copy the codes below and paste this your template.
global $post; $category = get_the_category( get_the_ID() ); $parent = $category[0]->term_id
Warning: rmdir( … ), No such file or directory Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes) in /home/username/public_html/wp-includes/meta.php on line 1078 You might interested to check this error master Gravity Forms Media Upload Field for BuddyPress Complete Tutorial Also offering hosting and domain registration, chep but trusted –…
How to hide Gravity Form field Label? I have 2 ways to solve the problem. Option 1: via CSS code. #gform_wrapper_1 label.gfield_label { display: none; } Option 2: via PHP code to be placed on your functions.php. add_filter( 'gform_enable_field_label_visibility_settings', '__return_true' ); Happy coding… 🙂
Get the sub category of the current product category page. This code is applied if you are viewing the product archive page. The codes below and a sample category hierarchy list. Example: Category Parent Category 1 Category 2 Category 3 Category 4 Category 1.1 Category 2.1 Category 3.1 Category 4.1 Here’s a code: $category_object =…
Remove subcategory count. add_filter( 'woocommerce_subcategory_count_html', function(){ return ''; }); Change the number of loop shop columns. add_filter( 'loop_shop_columns', function(){ $cat_obj = get_queried_object(); $cat_id = $cat_obj->term_id; if( get_woocommerce_term_meta( $cat_id, 'display_type', true )== 'subcategories' ){ return 3; }else{ return 4; } }); Change the number of loop shop columns css. Just add a class on the body…
I have a search form to add below page title using Visual Composer Fancy title (the7 WordPress theme) page editor. I look for alternative solutions that I can insert my additional HTML content. Lucky me to found it, and here’s the code on how to add additional content. Add this code on your functions.php, can…
EDUCATIONAL VIDEO PARA SA GUSTO TUMUKLAS NG MGA BAGONG KAALAMAN KUNG PANU GUMAWA NG WEBSITES. PAKI-SHARE PO VIDEO NG MARAMI TAYONG MATULUNGAN AT MABIGYAN NG ONLINE SKILLS. MARAMI PA TAYONG PWEDE IBAHAGI SA INYO. LINKS: PERSONAL WEBSITE: https://www.anthonypagaycarbon.com/ XAMP DOWNLOAD: https://www.apachefriends.org/download.html WORDPRESS DOWNLOAD: https://wordpress.org/download/ SUBLIME TEXT EDITOR DOWNLOAD: https://www.sublimetext.com/ YOUTUBE CHANNEL: https://www.youtube.com/@AnthonyCarbon TIKTOK ACCOUNT: https://www.tiktok.com/@anthonypagaycarbon…