This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Add WooCommerce Conditional Logic | |
function jm_acf_woo_product_filter($choices) | |
{ | |
if (!isset($choices['WooCommerce'])) { | |
$new_choices = array(); | |
foreach ($choices as $key => $value) { | |
$new_choices[$key] = $value; | |
if ($key == 'Post') { // position in the drop down in thios case after Post |