Collection has images but all of them have status: Unpublished.

', 'abcfal-td'); break; case 16: $out = __('See Image Collections FAQ: How to Publish images.', 'abcfal-td'); break; case 17: $out = __('Image Collections plugin is missing. Please install the plugin.', 'abcfal-td'); break; case 30: $out = __('Grid Container - Width.', 'abcfal-td'); break; case 31: $out = __('Grid Container - Height.', 'abcfal-td'); break; case 32: $out = __('Leave it blank to have it expand with content.', 'abcfal-td'); break; case 33: $out = __('Grid Container - Left Margin', 'abcfal-td'); break; case 34: $out = __('Grid Container - Top Margin', 'abcfal-td'); break; case 35: $out = __('Grid Container', 'abcfal-td'); break; case 37: $out = __('Sample of valid entries: 15, 15px, 15%, 15em or blank. Number only = pixels (px). Blank = default value.', 'abcfal-td'); break; case 38: $out = __('Default value = 100% of the parent container. Leave it blank to keep the default value.', 'abcfal-td'); break; case 39: $out = __('Leave it blank to keep default value of 0 (zero pixels).', 'abcfal-td'); break; case 42: $out = __('Leave it blank to keep the default value of 20 pixels.', 'abcfal-td'); break; default: $out = ''; break; } return $out . $suffix; } //==Messages=========================================================== function abcfal_msgs_error($id, $suffix='') { echo '

' . abcfal_txtbldr($id, $suffix) . '

'; } function abcfal_msgs_info($id, $suffix='') { echo '

' . abcfal_txtbldr($id, $suffix) . '

' . "\n"; } function abcfal_msgs_ok() { echo '
'; } if ( !function_exists( 'abcf_err_2part_msg' ) ){ function abcf_err_2part_msg( $msgL1, $msgL2=' '){ if(!abcf_lib_html_isblank($msgL1)){ $msgL1 = '

' . $msgL1 . '

'; } if(!abcf_lib_html_isblank($msgL2)){ $msgL2 = '

' . $msgL2 . '

'; } $msg = $msgL1 . $msgL2; if(abcf_lib_html_isblank($msg)){ return; } echo ('
' . $msg . '
'); } }