I've tried to release a smart home action, but i didn't get a response.
I have smart home certification - that I've submitted and I saw that I have also a release section.
Where should I submit my action?
Thanks
You need to submit the action for production once you have self-certified.
Related
I'm new to the react web app, I trying to create cart payment checkout process. All the modules PayPal button open in same page with POPUP. I want to redirect from my site to the PayPal site and return back to my site. Currently i'm using the below example. Is there any module to create order and redirect.
https://www.npmjs.com/package/react-paypal-button-v2
Why do you want to redirect away from your site? That's how things were done 5+ years ago.
It's much better to keep your site loaded and present in the background and show payers an in-context approval experience, instead of redirecting them over to a new and possibly unfamiliar login page.
You are asking for how to do something you shouldn't even be trying to do, and which will result in an inferior buyer experience and fewer completed checkouts, which is the opposite of what you should want.
But since you ask, the way to do it is not not use the PayPal JavaScript SDK button. Just use the /v2/checkout/orders REST API to create an order and receive an approval_url, which you can redirect to with a static "Checkout with PayPal" button from, say, https://www.paypal.com/us/webapps/mpp/logos-buttons
Again, full page redirects are an old integration method that give a poor buyer experience and you shouldn't use this method.
I made some changes to Authorization URL and Token URL in Accounting Linking. After that when I enable Test l, the action with [test] prefix didn't appear under Home Control section in Google Home app. The app is logged in with the same account as the account which I used to create the action. To add up, the action is already being deployed in production. I'm facing this issue when I updated the Account Linking settings and enabled it for Testing. I've also tried undeploying the previous version of the action. But still it didn't appear in the Home Control. Due to this I can't submit my action for review.
Help me out to fix this . Thanks in advance.
Once your Action is deployed to production, the project will no longer reflect console changes to the test agent until those changes are submitted and reviewed. The recommended way to work around this constraint is to create a second project in the Actions console that you can use to test/validate your change.
When you're ready to submit the updates to production, you can follow the steps outlined to updating your existing production project in Launching your smart home Action.
Is it possible to customize or override the salesforce logout method in apex? I want to do some thing custom when user goes to logout salesforce account.
enter image description here
You screenshot shows the standard logout link which can not be customized.
You can customize the "logout" flow in a community using custom code by having a custom logout link which calls a controller action which wraps the standard logout function but this is only in a case where you are not using the standard header and can implement a custom link for logging out.
The logout flow of salesforce is a standard anchor tag call with a href to a link. If you inspect the element you can see that.
Logout
Unfortunately, there is no controller where the control comes after a click of the LogOut option. The only way you can get some control is, if you customize your logout URL and make salesforce redirect to it after it logs itself out. In that way, you can solve the branding issues but can not do anything related to the user as the user context is lost as soon as salesforce logs out itself.
Though in the idea forum there are ideas for doing that but looks like Salesforce is not doing anything in that front.
Hope this helps.
I've set up a Buy Now PayPal button on my site and everything works absolutely fine, including the PDT, etc.
However, on the mobile version of my site, the payment page is not at all mobile friendly. When the user clicks/taps "Buy Now", they are redirected to PayPal, but the screen that is displayed is not responsive.
I'm just using the standard code from the Buy Now button generated through PayPal. Am I missing something here?
Thanks in advance.
There are some feature that is not supported on mobile checkout page.
If you use these the checkout page will still be a PC page.
Please refer to the page below:
https://developer.paypal.com/webapps/developer/docs/classic/products/mobile-paypal-payments-standard/#usecases
DNN: 07.00.06
Using the standard DNN registration form, redirection does not take place. I have my registration page permission so that registered users cannot view it, so after a new user signs up, they're greeted with a "You do not have access to view this page within the website" message.
I turned off partial rendering and added javascript to search for this message and redirect to the homepage accordingly but it's a bit of a hack job.
I have set the redirect after registration to the home page specifically in the settings. Tried other pages, tried turning it off.
I do see this was a bug in the DNN tracker, but does anyone know of a cleaner workaround? I don't want to use a third party registration module for this purpose.
Thank you!
I seem to recall earlier versions of DNN7 had problems with redirect after registration. I would encourage you to try the latest DNN release.