{"id":206,"date":"2023-08-18T08:42:20","date_gmt":"2023-08-18T12:42:20","guid":{"rendered":"https:\/\/www.gcc.mass.edu\/xpantry\/?page_id=206"},"modified":"2026-05-08T09:34:49","modified_gmt":"2026-05-08T13:34:49","slug":"visit","status":"publish","type":"page","link":"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/","title":{"rendered":"Visiting the Corner Market Food Pantry"},"content":{"rendered":"<p>You are welcome to come to the Corner Market Food Pantry in room N220 during our open hours to sign up, grab a snack or learn about additional community resources.<\/p>\n<p>You may also sign up in advance with <a href=\"https:\/\/app.pantrysoft.com\/login\/gccmass\" target=\"_blank\" rel=\"noopener\">PantrySoft<\/a> using your GCC credentials. Once you've joined, you can log your own snacks and check your remaining points\/items by logging into your PantrySoft account.<\/p>\n<p>Number of monthly goods are based on family size; you may pick up goods once a month or multiple times a month up to your limit according to household size (limit resets on the first of the month during the semester).<\/p>\n<p>If you are unable to visit during open hours, Grab &amp; Go Bags are available in the library or you can <a href=\"mailto:foodpantry@gcc.mass.edu\">email us<\/a> for an appointment or for alternative arrangements.<\/p>\n<div class=\"su-tabs su-tabs-style-default su-tabs-mobile-stack\" data-active=\"1\" data-scroll-offset=\"0\" data-anchor-in-url=\"yes\"><div class=\"su-tabs-nav\"><span class=\"\" data-url=\"\" data-target=\"blank\" tabindex=\"0\" role=\"button\">Join<\/span><span class=\"\" data-anchor=\"visit\" data-url=\"\" data-target=\"blank\" tabindex=\"0\" role=\"button\">Visit<\/span><\/div><div class=\"su-tabs-panes\"><div class=\"su-tabs-pane su-u-clearfix su-u-trim\" data-title=\"Join\">\n<p>You will need your GCC login credentials to register and add members of your household.<\/p>\n<p>If you are unable to visit during open hours, Grab &amp; Go Bags are available in the library or you can <a href=\"mailto:foodpantry@gcc.mass.edu\">email us<\/a> for an appointment or for alternative arrangements.<\/p>\n<a href=\"https:\/\/app.pantrysoft.com\/login\/gccmass\" class=\"gccbutton\">Register a Food Pantry Account <i class=\"fa-light fa-can-food\" aria-hidden=\"true\"><\/i><\/a>\n<\/div>\n<div class=\"su-tabs-pane su-u-clearfix su-u-trim\" data-title=\"Visit\">\n<p>Use this form as a back-up method when logging a visit in PantrySoft is not possible.<\/p>\n<script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 4.0 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n\n\/* ]]> *\/\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_4' style='display:none'>\n                        <div class='gform_heading'>\n                            <h2 class=\"gform_title\">Food Pantry Pick-Up<\/h2>\n                            <p class='gform_description'><\/p>\n\t\t\t\t\t\t\t<p class='gform_required_legend'>&quot;<span class=\"gfield_required gfield_required_asterisk\">*<\/span>&quot; indicates required fields<\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_4'  action='\/food-pantry\/wp-json\/wp\/v2\/pages\/206' data-formid='4' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_4' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_4_20\" class=\"gfield gfield--type-date gfield--input-type-date gfield--input-type-datepicker gfield--datepicker-no-icon gfield--width-third gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_20'>Pick-Up Date<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_date'>\n                            <input name='input_20' id='input_4_20' type='text' value='' class='datepicker gform-datepicker mdy datepicker_no_icon gdatepicker-no-icon' tabindex='1000'  placeholder='mm\/dd\/yyyy' aria-describedby=\"input_4_20_date_format\" aria-invalid=\"false\" aria-required=\"true\"\/>\n                            <span id='input_4_20_date_format' class='screen-reader-text'>MM slash DD slash YYYY<\/span>\n                        <\/div>\n                        <input type='hidden' id='gforms_calendar_icon_input_4_20' class='gform_hidden' value='https:\/\/www.gcc.mass.edu\/food-pantry\/wp-content\/plugins\/gravityforms\/images\/datepicker\/datepicker.svg'\/><\/div><div id=\"field_4_6\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-third field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_6'>Student ID #<\/label><div class='ginput_container ginput_container_text'><input name='input_6' id='input_4_6' type='text' value='' class='large'   tabindex='1001'   aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_4_27\" class=\"gfield gfield--type-date gfield--input-type-date gfield--input-type-datepicker gfield--datepicker-no-icon gfield--width-third gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_27'>Date of Birth<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_date'>\n                            <input name='input_27' id='input_4_27' type='text' value='' class='datepicker gform-datepicker mdy datepicker_no_icon gdatepicker-no-icon' tabindex='1002'  placeholder='mm\/dd\/yyyy' aria-describedby=\"input_4_27_date_format\" aria-invalid=\"false\" aria-required=\"true\"\/>\n                            <span id='input_4_27_date_format' class='screen-reader-text'>MM slash DD slash YYYY<\/span>\n                        <\/div>\n                        <input type='hidden' id='gforms_calendar_icon_input_4_27' class='gform_hidden' value='https:\/\/www.gcc.mass.edu\/food-pantry\/wp-content\/plugins\/gravityforms\/images\/datepicker\/datepicker.svg'\/><\/div><fieldset id=\"field_4_1\" class=\"gfield gfield--type-name gfield--input-type-name gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_complex ginput_container ginput_container--name no_prefix has_first_name no_middle_name has_last_name no_suffix gf_name_has_2 ginput_container_name gform-grid-row' id='input_4_1'>\n                            \n                            <span id='input_4_1_3_container' class='name_first gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_1.3' id='input_4_1_3' value='' tabindex='1004'  aria-required='true'     \/>\n                                                    <label for='input_4_1_3' class='gform-field-label gform-field-label--type-sub '>First<\/label>\n                                                <\/span>\n                            \n                            <span id='input_4_1_6_container' class='name_last gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_1.6' id='input_4_1_6' value='' tabindex='1006'  aria-required='true'     \/>\n                                                    <label for='input_4_1_6' class='gform-field-label gform-field-label--type-sub '>Last<\/label>\n                                                <\/span>\n                            \n                        <\/div><\/fieldset><fieldset id=\"field_4_21\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gfield--width-full gf_list_2col gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Type of Visit<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_4_21'><div class='gchoice gchoice_4_21_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_21.1' type='checkbox'  value='Daily Snack Station'  id='choice_4_21_1' tabindex='1008'  \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_21_1' id='label_4_21_1' class='gform-field-label gform-field-label--type-inline'>Daily Snack Station<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_4_21_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_21.2' type='checkbox'  value='Corner Market (Monthly)'  id='choice_4_21_2' tabindex='1009'  \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_21_2' id='label_4_21_2' class='gform-field-label gform-field-label--type-inline'>Corner Market (Monthly)<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_4_21_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_21.3' type='checkbox'  value='Grab &amp; Go'  id='choice_4_21_3' tabindex='1010'  \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_21_3' id='label_4_21_3' class='gform-field-label gform-field-label--type-inline'>Monthly Grab &amp; Go Bag<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_4_22\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_hidden\"  ><div class=\"admin-hidden-markup\"><i class=\"gform-icon gform-icon--hidden\" aria-hidden=\"true\" title=\"This field is hidden when viewing the form\"><\/i><span>This field is hidden when viewing the form<\/span><\/div><legend class='gfield_label gform-field-label' >Location<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_4_22'>\n\t\t\t<div class='gchoice gchoice_4_22_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_22' type='radio' value='Library'  id='choice_4_22_0' onchange='gformToggleRadioOther( this )'  tabindex='1011'  \/>\n\t\t\t\t\t<label for='choice_4_22_0' id='label_4_22_0' class='gform-field-label gform-field-label--type-inline'>Library<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_4_22_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_22' type='radio' value='East Building'  id='choice_4_22_1' onchange='gformToggleRadioOther( this )'  tabindex='1012'  \/>\n\t\t\t\t\t<label for='choice_4_22_1' id='label_4_22_1' class='gform-field-label gform-field-label--type-inline'>East Building<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_4_22_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_22' type='radio' value='Northampton'  id='choice_4_22_2' onchange='gformToggleRadioOther( this )'  tabindex='1013'  \/>\n\t\t\t\t\t<label for='choice_4_22_2' id='label_4_22_2' class='gform-field-label gform-field-label--type-inline'>Northampton<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_4_22_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_22' type='radio' value='gf_other_choice'  id='choice_4_22_3' onchange='gformToggleRadioOther( this )'  tabindex='1014'  \/>\n\t\t\t\t\t<label for='choice_4_22_3' id='label_4_22_3' class='gform-field-label gform-field-label--type-inline'>Other<\/label><br \/><input id='input_4_22_other' class='gchoice_other_control' name='input_22_other' type='text' value='Other' aria-label='Other Choice, please specify' tabindex='1014' disabled='disabled' \/>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_4_16\" class=\"gfield gfield--type-number gfield--input-type-number gfield--width-half gfield_contains_required field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_16'>Pounds of Food<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_number'><input name='input_16' id='input_4_16' type='number' step='any'   value='' class='medium' tabindex='1015'    aria-required=\"true\" aria-invalid=\"false\" aria-describedby=\"gfield_description_4_16\" \/><\/div><div class='gfield_description' id='gfield_description_4_16'>Round to the nearest whole number, e.g., for a bag weighing 8 lbs 10 oz. you would enter 9<\/div><\/div><div id=\"field_4_23\" class=\"gfield gfield--type-number gfield--input-type-number gfield--width-half gfield_contains_required field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_23'># of Items<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_number'><input name='input_23' id='input_4_23' type='number' step='any'   value='' class='medium' tabindex='1016'    aria-required=\"true\" aria-invalid=\"false\" aria-describedby=\"gfield_description_4_23\" \/><\/div><div class='gfield_description' id='gfield_description_4_23'>List the number of items you received at today's visit<\/div><\/div><div id=\"field_4_24\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-third gfield_contains_required field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_24'>Household Members Age 0-17<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_24' id='input_4_24' type='text' value='' class='large'  aria-describedby=\"gfield_description_4_24\" tabindex='1017'  aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><div class='gfield_description' id='gfield_description_4_24'>Provide the <strong>total number<\/strong> of people in your household between the ages of 0-17 (including yourself)<\/div><\/div><div id=\"field_4_25\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-third gfield_contains_required field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_25'>Household Members 18-64<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_25' id='input_4_25' type='text' value='' class='large'  aria-describedby=\"gfield_description_4_25\" tabindex='1018'  aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><div class='gfield_description' id='gfield_description_4_25'>Provide the <strong>total number<\/strong> of people in your household between the ages of 18-64 (including yourself)<\/div><\/div><div id=\"field_4_26\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-third gfield_contains_required field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_26'>Household Members Age 65+<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_26' id='input_4_26' type='text' value='' class='large'  aria-describedby=\"gfield_description_4_26\" tabindex='1019'  aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><div class='gfield_description' id='gfield_description_4_26'>Provide the <strong>total number<\/strong> of people in your household age 65 or older (including yourself)<\/div><\/div><div id=\"field_4_15\" class=\"gfield gfield--type-textarea gfield--input-type-textarea gfield--width-full field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_15'>Comments? Questions?<\/label><div class='gfield_description' id='gfield_description_4_15'>Do you have any feedback or suggestions to share?<\/div><div class='ginput_container ginput_container_textarea'><textarea name='input_15' id='input_4_15' class='textarea small' tabindex='1020' aria-describedby=\"gfield_description_4_15\"    aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_4' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Submit' tabindex='1021' \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_4' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_4' id='gform_theme_4' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_4' id='gform_style_settings_4' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_4' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='4' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='5aFOikfh4cmoRJSc0mI+tbB23NB3xVlHDj5x3LqvTGiia+xu3xEJXfVCBHLCzXNQmH5vh0mbxOVrgtPGBtwhySuugW3EGmOTGg9XJFinZXELuws=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_4' value='WyJ7XCIyMS4xXCI6XCJjODdkYTdlZjYwODcyYjlhNTAxOTMyZmM0NzNiMjRhN1wiLFwiMjEuMlwiOlwiZGVjMjE4YTBmYjdjMzFiYzY0ZTI2MGJhYTlhYzQwNWZcIixcIjIxLjNcIjpcImY2YzQxOWM4ZTc3ZmVlZTcxMjk1MzUxMjRjYTAxODZmXCIsXCIyMlwiOltcIjc0YTZiNTFjYWViZDMyOTIyNWEzMzdhOGYyNTM5ZDRlXCIsXCI4MGM0NDk5MzU1YzNmMWNlZDRkNDU2NTI2NmZjOTI2ZVwiLFwiNjI1NjRjMDY1N2FkODEyNGM0OTJlNjE2NGQ4ZTYzODlcIl0sXCIxNFwiOltcImM4N2RhN2VmNjA4NzJiOWE1MDE5MzJmYzQ3M2IyNGE3XCIsXCIxNjY3OTM0NjE0MzM5ODg3Y2ZkOTc0NDFjNjBlZTVkZFwiLFwiZGVjMjE4YTBmYjdjMzFiYzY0ZTI2MGJhYTlhYzQwNWZcIixcIjhjNTQwNzAzMzZjNWNkZWViNmIzMTkzMzllMGFjOTIxXCIsXCIwZWY5OGFhYWMyZGQ3ODU1OWNlZmE3YmQ0NGM2ODNmOFwiXSxcIjE3XCI6W1wiMjJjOGZmYTQyMDNmZWQ0MmQ0YWEyZmQwNWM1ZmQ0YjNcIixcImZlNThkNmVmOWE2ODQwNWJjOWMyMTQ0MTNiYzdiZDk3XCJdLFwiMTguMVwiOlwiZTVjNjUzZjQyZmM0NjIzYjUzNDBlNWJiOTU1MmE4ZjdcIixcIjE4LjJcIjpcIjllNWY2YmNjNDA4ZGFmYTUyMTdlMGI5MmYyZmNlZGM0XCIsXCIxOC4zXCI6XCI5YTYwMWQwYzU3MzExNjVkNjNhYTU3ZjYwYTBlMjA0MlwiLFwiMTguNFwiOlwiMTgzYTVkYTMzZGMwOWIwNWE1NGY2YzdlYzI1M2ZiMzlcIixcIjE4LjVcIjpcIjAyNjZlMjJjMDEwOWJmNjJmOTdiZTQzNGY5MGM1NTEwXCJ9IiwiYWRkYzhjMDA4MGE0YzgxYWE2MWFkM2I1ZDAzMDMxMGQiXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_4' id='gform_target_page_number_4' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_4' id='gform_source_page_number_4' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n gform.initializeOnLoaded( function() {gformInitSpinner( 4, 'https:\/\/www.gcc.mass.edu\/food-pantry\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_4').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_4');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_4').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_4').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_4').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_4').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_4').val();gformInitSpinner( 4, 'https:\/\/www.gcc.mass.edu\/food-pantry\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [4, current_page]);window['gf_submitting_4'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_4').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [4]);window['gf_submitting_4'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_4').text());}else{jQuery('#gform_4').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"4\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_4\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_4\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_4\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 4, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} ); \n\/* ]]> *\/\n<\/script>\n\n<\/div><\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>You are welcome to come to the Corner Market Food Pantry in room N220 during our open hours to sign up, grab a snack or learn about additional community resources. You may also sign up in advance with PantrySoft using your GCC credentials. Once you've joined, you can log your own snacks and check your [&hellip;]<\/p>\n","protected":false},"author":4253,"featured_media":4066,"parent":0,"menu_order":13,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":"","_links_to":"","_links_to_target":""},"class_list":["post-206","page","type-page","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Visiting the Corner Market Food Pantry - Corner Market<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Visiting the Corner Market Food Pantry - Corner Market\" \/>\n<meta property=\"og:description\" content=\"You are welcome to come to the Corner Market Food Pantry in room N220 during our open hours to sign up, grab a snack or learn about additional community resources. You may also sign up in advance with PantrySoft using your GCC credentials. Once you&#039;ve joined, you can log your own snacks and check your [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/\" \/>\n<meta property=\"og:site_name\" content=\"Corner Market\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-08T13:34:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.gcc.mass.edu\/food-pantry\/files\/2026\/05\/header-resources.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"333\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/\",\"url\":\"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/\",\"name\":\"Visiting the Corner Market Food Pantry - Corner Market\",\"isPartOf\":{\"@id\":\"https:\/\/www.gcc.mass.edu\/food-pantry\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.gcc.mass.edu\/food-pantry\/files\/2026\/05\/header-resources.jpg\",\"datePublished\":\"2023-08-18T12:42:20+00:00\",\"dateModified\":\"2026-05-08T13:34:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/#primaryimage\",\"url\":\"https:\/\/www.gcc.mass.edu\/food-pantry\/files\/2026\/05\/header-resources.jpg\",\"contentUrl\":\"https:\/\/www.gcc.mass.edu\/food-pantry\/files\/2026\/05\/header-resources.jpg\",\"width\":1000,\"height\":333},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.gcc.mass.edu\/food-pantry\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Visiting the Corner Market Food Pantry\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.gcc.mass.edu\/food-pantry\/#website\",\"url\":\"https:\/\/www.gcc.mass.edu\/food-pantry\/\",\"name\":\"Corner Market\",\"description\":\"GCC Food Pantry\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.gcc.mass.edu\/food-pantry\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Visiting the Corner Market Food Pantry - Corner Market","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/","og_locale":"en_US","og_type":"article","og_title":"Visiting the Corner Market Food Pantry - Corner Market","og_description":"You are welcome to come to the Corner Market Food Pantry in room N220 during our open hours to sign up, grab a snack or learn about additional community resources. You may also sign up in advance with PantrySoft using your GCC credentials. Once you've joined, you can log your own snacks and check your [&hellip;]","og_url":"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/","og_site_name":"Corner Market","article_modified_time":"2026-05-08T13:34:49+00:00","og_image":[{"width":1000,"height":333,"url":"https:\/\/www.gcc.mass.edu\/food-pantry\/files\/2026\/05\/header-resources.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/","url":"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/","name":"Visiting the Corner Market Food Pantry - Corner Market","isPartOf":{"@id":"https:\/\/www.gcc.mass.edu\/food-pantry\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/#primaryimage"},"image":{"@id":"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/#primaryimage"},"thumbnailUrl":"https:\/\/www.gcc.mass.edu\/food-pantry\/files\/2026\/05\/header-resources.jpg","datePublished":"2023-08-18T12:42:20+00:00","dateModified":"2026-05-08T13:34:49+00:00","breadcrumb":{"@id":"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/#primaryimage","url":"https:\/\/www.gcc.mass.edu\/food-pantry\/files\/2026\/05\/header-resources.jpg","contentUrl":"https:\/\/www.gcc.mass.edu\/food-pantry\/files\/2026\/05\/header-resources.jpg","width":1000,"height":333},{"@type":"BreadcrumbList","@id":"https:\/\/www.gcc.mass.edu\/food-pantry\/visit\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.gcc.mass.edu\/food-pantry\/"},{"@type":"ListItem","position":2,"name":"Visiting the Corner Market Food Pantry"}]},{"@type":"WebSite","@id":"https:\/\/www.gcc.mass.edu\/food-pantry\/#website","url":"https:\/\/www.gcc.mass.edu\/food-pantry\/","name":"Corner Market","description":"GCC Food Pantry","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.gcc.mass.edu\/food-pantry\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"publishpress_future_action":{"enabled":false,"date":"2026-07-18 10:41:26","action":"change-status","newStatus":"draft","terms":[],"taxonomy":"pp_notify_user","extraData":[]},"publishpress_future_workflow_manual_trigger":{"enabledWorkflows":[]},"_links":{"self":[{"href":"https:\/\/www.gcc.mass.edu\/food-pantry\/wp-json\/wp\/v2\/pages\/206","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.gcc.mass.edu\/food-pantry\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.gcc.mass.edu\/food-pantry\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.gcc.mass.edu\/food-pantry\/wp-json\/wp\/v2\/users\/4253"}],"replies":[{"embeddable":true,"href":"https:\/\/www.gcc.mass.edu\/food-pantry\/wp-json\/wp\/v2\/comments?post=206"}],"version-history":[{"count":12,"href":"https:\/\/www.gcc.mass.edu\/food-pantry\/wp-json\/wp\/v2\/pages\/206\/revisions"}],"predecessor-version":[{"id":4068,"href":"https:\/\/www.gcc.mass.edu\/food-pantry\/wp-json\/wp\/v2\/pages\/206\/revisions\/4068"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.gcc.mass.edu\/food-pantry\/wp-json\/wp\/v2\/media\/4066"}],"wp:attachment":[{"href":"https:\/\/www.gcc.mass.edu\/food-pantry\/wp-json\/wp\/v2\/media?parent=206"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}