I want to add my custom shipping rates at checkout rates which is coming from third party api.
I want to create my own app custom real time shipping quotes,which is used to display the real time shipping rates at the time of inserting the shipping address at checkout page.
Or there is any other way which i can to display rates
Thanx in advance !
I see you've mentioned BigCommerce, so this is probably the API you're looking for:
https://developer.bigcommerce.com/api-docs/store-management/shipping/shipping-provider-api
Related
I am trying to integrate a PayPal buy button into my website, and I am using the built-in inventory feature. I am trying to find a way to display how many units are left for inventory, as it will be small group tickets I am selling and I want my customers to know if an event is full or not. how would I display that?
The basic HTML hosted buttons generated by PayPal will not display remaining inventory.
To do so, essentially you need your own database that tracks inventory and displays this value on page load. When processing a transaction, before capturing a payment you should verify that there is enough remaining inventory, and decrement the inventory when the capture is successful.
There are third party solutions that implement such functionality (stock/inventory management), if you are unfamiliar with how to program such a site your self. PayPal's partner directory may be a place to start, and you can also search the web.
I have recently created a list on our team's SharePoint site for tracking the list of action items for the team on a real-time basis and subsequently working to connect it with Excel for report generation. I wanted to add a few more functionalities but, am unable to understand how to go about it. The list of functionalities is as shared below -
Send auto-notification to assigned people in the action item list for all items overdue on a weekly basis.
Send auto-notification to assigned people in the action item list once the deadline for closure (as indicated in the list) is within 15 calendar days on a weekly basis.
Send a auto-summary report to the designated team managers on a weekly basis indicating the list of items overdue and pending for closure in next 7 calendar days.
Any help and guidance on how to add these functionalities to our existing SharePoint list will be highly appreciated.
Thanks in advance.
Note: I am not a SharePoint Developer but, have interest in the topic. I do not have any coding experience. I have been trying to experiment with the tool to reduce some of our mundane activities and hence, wanted to check with the experts if the above functionalities are actually possible.
For these functionalities, I would suggest you build scheduled flow to send notifications evety week.
I am trying to checkout a product and it is not showing- what could be the possible causes as to why the product is not available for checkout?
It could be possible due to couple of reasons as mentioned following:
1- Live Stock isn't available from the backend (SAP/Microsoft NAV/ or any other ERP that is used in your application where all the products are actually managed.)
2- FrontEnd issue.
3- Basket/Cart issue
If you tell us more log stack trace then I could help more in this.
Many Thanks
Hopefully some one will know the answer.
I've been the developing a 3d modelling win-10 universal app which is going to include in app purchases.
What I'd preferably like to happen is that the customer can purchase models, textures, new tools etc via the in-app purchase mechanism.
What I need to know does everything have to be included in the original app or does the in app purchase actually add new code,models etc to the original app.?
If so where is the in-app purchase package uploaded to?
I haven't been able to find anything in the documentation that answers this question
Cheers.
Information on user's in-app purchases will be available to you through the
LicenseInformation.ProductLicenses property as a collection of ProductLicense objects. Each object contains basic information about the purchase like ID and expiration date. It means that it cannot contain any data related to your app.
You should include everting in the original app or you may put purchase related data (lets say your models and textures) on a web server and allow the app to download it after purchasing each in-app product. You can also very the receipt of purchases on the web server before providing data to clients.
I would like to create a small Xpages application that can show the calendar of our conference room. My idea is to have a web browser open on the Conference Room TVs so when somebody wants to get in the conference room they will see really quick that there is a meeting scheduled in 10 min.
I have tried using this template from OpenNTF - Link but I couldn't figure out how to pull the data from my Conference room resource into the calendar.
Any other idea how I can accomplish this?
Note: Having the user check the conference room schedule on LN is not an option. They already don't like LN.
Thanks,
Extension Library has a calendar control. It's basically the (8.5) iNotes calendar control, so data is loaded via a REST service. There are two methods of getting the data into a REST service, depending on whether or not the view you're picking up has columns with the programmatic names that are found in a Notes Mail calendar. The documentation in the XPages Extension Library book should cover the basics but, if you need clarification on any of the content, I wrote it.
Modifying the look and feel is not likely to be easy, because it's an XPage version of an IBM-specific Dojo-based control, which is possibly also why no version has been released to use the R9 look and feel.
Alternatively, it would be feasible to build a repeat control layout. Creating a ViewEntryCollection based on a DateRange is key to getting all entries between dates.