Close

Profile: Deni

Avatar

User posts

Bugs
9 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.

9 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!

9 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!

9 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!

9 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!

JesseM wrote:
Hello all,
When  browsing on a mobile device and attempting to add an item to your cart which possesses attributes and individual sku's, the customer gets an out of stock message, even when we have plenty of stock in all color options. On computer, I notice it pops up a window which allows you to select the color there, but on the mobile we just get an error. Has anyone experienced the same issues? Please let me know if I can provide any further information.


Hi, 

This is strange behaviour, which we have not seen so far. Please raise a ticket in our ticketing system, describing your case or/and providing link to your site, so we can test it.

9 years ago

Hi, sakil.s,

Please explain further what you are trying to achieve.

P.S. Please do not duplicate forum posts.

9 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.

Hi, 

After browsing many sites for cars and car parts (because I am a "car guy"), I found that this is the easiest way, as I have described before and you have found it too - to combine the model and the year of the part.

So, this really saves you a lot of work and keeps everything tight and clear.