Close

Profile: Deni

Avatar

User posts

Bugs
10 years ago

justinhof wrote:
We seem to have an issue with the Traction theme to where it pulls in weird IP addresses or URLs not related to our sites at all for images. In some cases it will be http://107.150.24.123:9005, other times it will be URLs for sites in the middle east.

You can go to the site below and see, where images are not getting loaded and look at the source:
http://dev.deepblueyachtsupply.com/

We have these same products and images running on two other sites without issue, so the image or product itself is not the problem:
https://www.propellerdepot.com/
https://www.lauderdaleprop.com/

What would be causing the theme to pull in a different URL when just using the Traction theme?

Thanks,
Justin


Hi, 

This is not the first time someone has this problem. It is not caused neither by the theme, plugins or nopCommerce. This is hosting issue and you can read more about it in the nopCommerce forum: article 1, article 2, article 3.

10 years ago

nonam wrote:
Hello:

For a reason I ignore, it now works today. I am using Internet Explorer 11. I had already cleared the browser cache but it did not work. I have not made any changes to the html content or web structure. Mystery... I am not sure if there is an issue with IE 11 but it's the first time it happened. It's working now, anyhow.

Thanks!


Hi, 

Yes, it is really strange behaviour, which I have never experienced. I guess it will not happen again.

raflebaron wrote:
Hello guys,  we have the smart theme, and i d like to add the SHARE button and ADD TO WHISHLIST to the results page or homepage for each product. How can i do that cleanly ? Thanks !


Hi, 

To achieve both functionalities you should follow these steps:

1. Go to this file: \Themes\Smart\Views\Shared\_ProductBox.cshtml.

2. Find the element with class "buttons".

3. In its end plave this code:

@if (!Model.ProductPrice.DisableWishlistButton)
{
  var addtowishlistlink = Url.RouteUrl("AddProductToCart-Catalog", new { productId = Model.Id, shoppingCartTypeId = (int)ShoppingCartType.Wishlist, quantity = 1 });
  <input type="button" value="@T("ShoppingCart.AddToWishlist")" title="@T("ShoppingCart.AddToWishlist")" class="button-2 add-to-wishlist-button" onclick="AjaxCart.addproducttocart_catalog('@addtowishlistlink');return false;" />
}

<!-- Facebook -->
@{
  var storeUrL = Nop.Core.Infrastructure.EngineContext.Current.Resolve<Nop.Core.IStoreContext>().CurrentStore.Url.TrimEnd('/');
  string realProductUrl = storeUrL + Url.RouteUrl("Product", new { SeName = Model.SeName });
}
<a class="fb-share-link" href="javascript:openProductsShareWindow('https://www.facebook.com/sharer.php?u=@realProductUrl')" target="_blank" style="font-size: 13px;">@T("SevenSpikes.FacebookShop.Public.ProductBox.ShareToFacebook")</a>


4. Go to this file: \Themes\Smart\Content\scripts\Smart.js.

5. Add this code to the end of the file: 

function openProductsShareWindow(url) {
    var winWidth = 520;
    var winHeight = 400;
    var winTop = (screen.height / 2) - (winHeight / 2);
    var winLeft = (screen.width / 2) - (winWidth / 2);

    window.open(url, 'sharer', 'top=' + winTop + ',left=' + winLeft + ',toolbar=0,status=0,width=' + winWidth + ',height=' + winHeight);
}


6. Now you have to style these buttons. I will leave this to you.

I hope everything is clear!

10 years ago

nonam wrote:
Hello:

I am unable to log out in this new version. I have removed the cache files, tried to close the whole website, reopen it and tried logging out again. It does not work. Any idea as to what the issue could be? Thanks

Manon :)


Hi, 

May we know what browser you are using? Also, have you tried clearing the browser cache. Have you tried logging in and then out on any other machine? Looking forward to your reply!

10 years ago

sakil.s wrote:
thanks for your reply....the issue was solved...i just wanted to change the image path when we click on thumbnail of cloud zoom. 


Hi, 

I am glad that you have found your solution. If you need any other help, feel free to ask!

10 years ago

nonam wrote:
Thank you! It worked, however, I can still see the text "Connect with us:"... which I thought would be deleted with the RSS logo. Can you assist with the code I need to add to remove this as well.

Another question: is there a way to simply have two columns in the footer rather than 3?


Hi, 

To achieve this functionality, remove the old code I have sent you and place this one on its place:

.footer-block.social-sharing {
  display: none;
}

@media (min-width: 769px){
  .footer-upper .footer-block {
    width: 45%;
  }
}


I hope this helps!

10 years ago

Hi, sakil.s,

Please explain further what you are trying to achieve.

P.S. Please do not duplicate forum posts.

10 years ago

realsum137 wrote:
So I'm experimenting with the classic theme and filters pro for an auto parts website. I have my filter setup this way, Manufacturer -> Model -> SubModel -> Year where model, submodel and year are specifications. This works great so far but I foresee the result page growing out of hand.For example there are hundreds parts for Honda -> Civic -> Si -> 2013, so is there a way to group the results into there categories? 


I currently have less the ten parts in the database so I am not sure if this will happen when I have more parts in the database.


Hi, 

I think we already have such topic - here. Let`s discuss it there.

Bugs
10 years ago

IvanSlater wrote:
Updated, but the last version still v3.5.855.15571 and the bug keeps alive.


Hi, 

I see that your license has expired in February. This is the reason why you can not download the latest version of the plugin. Please contact our sales department, referring this topic.

10 years ago

nonam wrote:
Hello:
In the footer of the template, I am trying to have my "Conditions of Use" show in the column 2 or 3. I did set it that way in the administrator login, and I can see it is active with an arrow showing in column 2, but on the website, it simply doesn't show.  How do I fix this?  As well, how do I remove the RSS logo from the footer, as well, the credit card images?


Hi, 

The theme is designed to have only social icons in the column 2 (middle column). You can place the "condition of use" in column 1 or 3.

To hide the RSS logo and the credit card images just go to your Artfactory theme administration and place this code in the Custom Head Styles:
.footer-block.social-sharing .rss,
.footer-lower .accepted-payment-methods {
display: none;
}


I hope this helped !