function create_consultant_logs_entry($log_content) { // Check if Pods is active if (!function_exists(‘pods’)) { error_log(‘Pods is not active.’); return false; } $logs_pod_name = ‘logs’; // The name of the Pod $log_entry_field = ‘log’; // The field in the Pod to store the…Continue reading
function create_consultant_logs_entry($log_content) { // Check if Pods is active if (!function_exists(‘pods’)) { error_log(‘Pods is not active.’); return false; } $logs_pod_name = ‘logs’; // The name of the Pod $log_entry_field = ‘log’; // The field in the Pod to store the…Continue reading
/** * Show the banner when a html element with class ‘cmplz-show-banner’ is clicked */ function cmplz_show_banner_on_click() { ?>Continue reading
#– Allow Shop Manager to Access Product Feed Menus –# function allow_feed_menus_to_shop_manager( $capability ) { if ( current_user_can( ‘manage_woocommerce’ ) ) { return ‘manage_woocommerce’; } return $capability; } add_filter( ‘adt_pfp_admin_capability’, ‘allow_feed_menus_to_shop_manager’ );Continue reading