Hello,
1. Yes it is possible for you to change make the Shopping Cart Icon of the MiniCart to function as the "View Cart" button and hide the original button by making the following changes to the MiniCart.ascx file located in the DesktopModules/MiniCart folder:
Orginal Code:
<asp:Image ID="Image2" runat="server" ImageUrl="~/DesktopModules/Smith.MiniCart/Images/minicart.png" />
<%= Localization.GetString("item.Text", LocalResourceFile)%>
<asp:Label ID="lblQty" runat="server" Text="0" CssClass="SmithProdText" /><br />
Modified Code:
<asp:LinkButton ID="IbCheckout" runat="server" onclick="IbCheckout_Click" >
<asp:Image ID="Image2" runat="server" ImageUrl="~/DesktopModules/Smith.MiniCart/Images/minicart.png" />
<%= Localization.GetString("item.Text", LocalResourceFile)%>
<asp:Label ID="lblQty" runat="server" Text="0" CssClass="SmithProdText" />
</asp:LinkButton><br />
Comment the following:
<div class="viewcartbox">
<div class="b_left"> </div>
<div class="b_center"> <asp:LinkButton ID="IbCheckout" runat="server" onclick="IbCheckout_Click" Text="CHECKOUT" CssClass="b_link" resourcekey="IbCheckout.Text" Font-Size="12px"/> </div>
<div class="b_right"> </div>
2. In regards to setting the number of products displayed on the ProductListing page, in Cart v.4.36 we added a feature called "Show Records Dropdown" in the Cart Settings. I understand that you are running an earlier version of the Cart and we are hosting your site so our developers will coordinate an upgrade of your store so that you can take advantage of the new features.
Thanks,