TrendyShoes1.90.1 is updating products (WARNING: avoid www.osshop.com)

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
14 years ago
Computer store theme added
14 years ago
Your themes looks really good Larry, Great Job !!!
14 years ago
download handbag theme absolutely free:

http://www.osshop.biz/Products/1-luxury-handbag-storenopcommerce150-ready.aspx
14 years ago
any feedback please email me: [email protected] or post it here. ty
14 years ago
Hi larry, i downloaded the handbag theme.. but.. can you post what changes yo've made in order to get it ok? I would like to know which files are changed.

gracias!
14 years ago
Thanks for your feedback.

The RAR file includes three folders

Preview/Database/Nopcommerce

You need to do the following things, no worries, they're pretty easy.

Step1: restore the database backup file in Database folder in Sqlserver.

Step2: change the connection string in ConnectionStrings.config file (connect the database just restored)

Step3: Login to admin username: [email protected] password: admin
             And choose the handbag theme in global setting.

Any question please feel free to contact me.

Thanks.

Larry
14 years ago
Your themes are amazing, It is possible to disable the banner of your handbag theme?
14 years ago
sangie wrote:
Your themes are amazing, It is possible to disable the banner of your handbag theme?


find

<div class="bannerwrap1">
<div class="firstimage"><a href="#"></a></div>
<div class="secondimage"><a href="#"></a></div>
<div class="thirdimage"><a href="#"></a></div>
</div>
<div class="bannerwrap2">
<div class="firstimage"><a href="<%=Page.ResolveUrl("~/Products/67-juicy-handbag-pink-lady.aspx")%>"></a></div>
<div class="secondimage"><a href="<%=Page.ResolveUrl("~/Products/106-city.aspx")%>"></a></div>
<div class="thirdimage"><a href="<%=Page.ResolveUrl("~/Products/111-giant-hip.aspx")%>"></a></div>
</div>

in Modules/HeaderMenu.ascx

and comment the code out.

Cheers.
14 years ago
sangie wrote:
Your themes are amazing, It is possible to disable the banner of your handbag theme?


Or if you want to keep the banner in homepage but hide them in other page

You can do

put

<div class="bannerwrap1">
<div class="firstimage"><a href="#"></a></div>
<div class="secondimage"><a href="#"></a></div>
<div class="thirdimage"><a href="#"></a></div>
</div>
<div class="bannerwrap2">
<div class="firstimage"><a href="<%=Page.ResolveUrl("~/Products/67-juicy-handbag-pink-lady.aspx")%>"></a></div>
<div class="secondimage"><a href="<%=Page.ResolveUrl("~/Products/106-city.aspx")%>"></a></div>
<div class="thirdimage"><a href="<%=Page.ResolveUrl("~/Products/111-giant-hip.aspx")%>"></a></div>
</div>


in a placeholder

the result is

<asp:PlaceHolder ID="bannerPlaceholder" runat="server">
<div class="bannerwrap1">
<div class="firstimage"><a href="#"></a></div>
<div class="secondimage"><a href="#"></a></div>
<div class="thirdimage"><a href="#"></a></div>
</div>
<div class="bannerwrap2">
<div class="firstimage"><a href="<%=Page.ResolveUrl("~/Products/67-juicy-handbag-pink-lady.aspx")%>"></a></div>
<div class="secondimage"><a href="<%=Page.ResolveUrl("~/Products/106-city.aspx")%>"></a></div>
<div class="thirdimage"><a href="<%=Page.ResolveUrl("~/Products/111-giant-hip.aspx")%>"></a></div>
</div>
</asp:PlaceHolder>


in codebehind file HeaderMenu.ascx.cs

in Page_load Method

    public partial class HeaderMenuControl : BaseNopUserControl
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (Request.Url.AbsolutePath == "/default.aspx")
            {
                bannerPlaceholder.Visible = true;
            }
            else{
                bannerPlaceholder.Visible = false;
            }
        }
    }


Dont forget to check

in the HeaderMenu.ascx.designer.cs file

        /// <summary>
        /// bannerPlaceholder control.
        /// </summary>
        /// <remarks>
        /// Auto-generated field.
        /// To modify move field declaration from designer file to code-behind file.
        /// </remarks>
        protected global::System.Web.UI.WebControls.PlaceHolder bannerPlaceholder;


Hope it will work for you.

Cheers.
14 years ago
hi larry, i cant get it to work in any IE

cant load the css i guess.. .chrome and FF work ok

any idea?
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.