Close

Profile: iliyan.tanev

Avatar

User posts

9 years ago

Hi,

It seems like a configuration problem with your shipping provider.
Could you confirm that without the plugin you don't have the errors ?

Layout Issues
9 years ago

Hi,

Could you open a ticket with more information about the issue ? 

9 years ago

Hi,

About the topics: You could restrict them per store from the administration, but you would need also to make some changes to the theme footer. It is located at Themes/Alure/Views/Common/Footer.cshtml. In there you will find the footer-menu section and the list of links. You would need to change them to be:


<li><a href="@Url.RouteUrl("Topic", new { SeName = Html.GetTopicSeName("aboutus") })">@T("AboutUs")</a></li>
<li><a href="@Url.RouteUrl("Topic", new { SeName = Html.GetTopicSeName("privacyinfo") })">@T("PrivacyNotice")</a></li>

@if (storeId != storeBId)
{
   
   <li><a href="@Url.RouteUrl("Topic", new { SeName = Html.GetTopicSeName("shippinginfo") })">@T("ShippingReturns")</a></li>
   <li><a href="@Url.RouteUrl("Topic", new { SeName = Html.GetTopicSeName("conditionsofUse") })">@T("ConditionsOfUse")</a></li>
}


You could find out the ids of your stores by going to administration -> configuration -> stores and by hovering or clicking the edit link you will see a number at the end of the url. This is the store id.

For the phones you could do something similar. Because the phone number is actually a resource you will have to create two new resources. One for store A and one for Store B. Then you will need to find and edit the phone section in the footer.
It should look something like this after the edit:


@if (storeId == storeAId)
{
    <li class="phone">@T("SevenSpikes.Themes.Allure.Common.Phone.ForStoreA")</li>
}
else if (storeId == storeBId)
{
    <li class="phone">@T("SevenSpikes.Themes.Allure.Common.Phone.ForStoreB")</li>
}

9 years ago

jakubz wrote:

2. Default unchecked - address form is hidden, but we have text: "Do you want a delivery to another address?" when client clicked "yes" new address forms is showing up for him.


Thanks for the feedback! You could change the Ship to same address resource ( SevenSpikes.RealOnePageCheckout.Public.ShipToSameAddress ) to the message above, but it will make sense when the ship to same address checked by default setting is added. I could not give you exact time frame, but the setting won't be added before next week.

jakubz wrote:

Can you tell me, when you want upgrade this plugin? I wanted deploy OnePageCheout to my shop this weekend, but "complete button" has disqualified this solution :/ and I need wait until you change it - or maybe you can tell me how i can to change it. ;)


Officially the permanent enabling of the complete button will probably be available next week. If you don't want to wait you could enable the button but you will have to count on server validation. You could do it by going to Plugins\SevenSpikes.Nop.Plugins.RealOnePageCheckout\Views\RealOnePageCheckout, open the RealOnePageCheckout.cshtml view, locate this "div" at the bottom of the form:


 <div class="buttons complete-button">
                            <button type="button" data-processing="@T("SevenSpikes.RealOnePageCheckout.Public.ProcessingButton")" data-complete="@T("SevenSpikes.RealOnePageCheckout.Public.CompleteButton")" ng-disabled="checkoutForm.$invalid" ng-click="vm.orderConfirmData.submitted = true">@T("SevenSpikes.RealOnePageCheckout.Public.CompleteButton")</button>
</div> 


and remove or comment the ng-disabled="checkoutForm.$invalid" attribute.

kevlingo wrote:
Anyone experience slow loading of the checkout page? I am running in Azure and the site itself is fast, but when the user goes to check out, the page takes quite a bit of time loading. Is there anything I can do to make this page snappier?


Hi,

Is you plugin updated to the latest version ?
Could you give us more information about the delay ? How much is the delay ? On what device do you test it ? 

9 years ago

Hi,

Could you check if you have any JavaScript errors ? 

9 years ago

Hi,

Thank you for your feedback!

The enabling of the complete button is planned and it will be added to the plugin soon.
Also about Ship to same address option: currently you could not make it checked by default, but we will consider creating a setting for this.
About the hiding of pick-up in store - why would you want pick-up in store to be visible when you will ship to some address. I mean when customer wants his product shipped to some address, doesn't this mean that he expects the product to be delivered there and not to the store ? 

9 years ago

Hi,

So you want when you click Products to go to page containing all categories ? 

9 years ago

Hi,

There is no easy way to make the products on two rows, it will require a lot of JS customizations. Maybe you could suggest this in our User Voice portal.

The random products also, will require customizations, but this time in the backend, so our advice, again is to suggest this to our User Voice portal.

9 years ago

Hi,

Is the culture of your working language set to Portuguese (Brazil) pt-BR

Bugs
9 years ago

Hi,

You should download it from 'My Downloads'.