Contact Us

DOOR NUMBER 3

80 Rockwood Pl.

Suite 114

Rochester NY, 14610

Call: 585.317.0671


google maps embed

Contact Us

8 + 4 =

/** * Change number of products that are displayed per page (shop page) */ add_filter( 'loop_shop_per_page', 'new_loop_shop_per_page', 20 ); function new_loop_shop_per_page( $cols ) { $cols = 24; return $cols; }