I added a hook_menu function (see below) to my product_type custom module but when I go to &quot;<a href="https://mydomain/">https://mydomain/</a><b>cart/refreshcart</b><div style="visibility: hidden; display: inline;" id="avg_ls_inline_popup">
</div><style type="text/css">#avg_ls_inline_popup {  position:absolute;  z-index:9999;  padding: 0px 0px;  margin-left: 0px;  margin-top: 0px;  width: 240px;  overflow: hidden;  word-wrap: break-word;  color: black;  font-size: 10px;  text-align: left;  line-height: 13px;}</style>&quot;<br>
it says &quot;The requested page could not be found.&quot;.  I have directly called other urls that were defined within the hook_menu function for the ubercart/uc_cart/uc_cart.module file and they came back fine like &quot;<a href="https://mydomain/admin/store/settings/cart">https://mydomain/admin/store/settings/cart</a>&quot;.  <br>
<br>Any idea why this would not work? <br><br>Thanks,<br><br>John<br><br>/**<br> * Implementation of hook_menu().<br> */<br><br>function product_type_menu() {<br>  $items = array();<br><br>  $items[&#39;<b><i>cart/refreshcart</i></b>&#39;] = array(<br>
    &#39;title&#39; =&gt; &#39;Refresh Shopping Cart&#39;,<br>    &#39;description&#39; =&gt; &#39;Refresh Shopping Cart&#39;,<br>    &#39;page callback&#39; =&gt; &#39;uc_cart_block&#39;,<br>    &#39;access callback&#39; =&gt; TRUE, <br>
    &#39;type&#39; =&gt; MENU_CALLBACK,<br>    &#39;file&#39; =&gt; &#39;ubercart/uc_cart/uc_cart.module&#39;,<br>  );<br><br>  return $items;<br>}<br>