Showing ideas with status New.
Show all ideas
QuickBooks Payroll Support assists the customer to choose from the autonomous basic payroll and assisted payroll or Full service payroll where QuickBooks will be responsible to process the entire payroll and the user has to provide minimum the employee information and Working Hours. The complete process is done by QuickBooks Payroll Support from Pay check calculation to direct deposit, Tax deduction, Payroll Liability reports and Federal and State Tax filing.
... View more
Hi Authorize Team, We are adding the customer to the Customer Information Manager option, the details of the customer submitted via the API. After that we are getting the customer information from this API (https://test.authorize.net/customer/manage) So we wanted to customize the UI of the response template. Is it possible to customize the UI of the response template? Is there any other way to customize that UI?
... View more
Hi all. I'm using the new hosted form method via a full page redirect to the authorize.net form, not an iframe or modal. So in order to capture the results I'm using webhooks. This has been working fine. but when i changed to iframe, the webhook is not working. Can anybody help me in this. ? I have checked all events provided in the webhooks, Is that the reason? If so which one to be checked in the events so that i only get the transaction details.
... View more
any e-commerce stores have multiple store views because they want to reach a wider audience in languages that their audience is familiar with. When a customer gets information in a familiar language, it is easier for them to understand the product or service. This, in turn, makes it easier for them to make a purchase decision. A store in one’s own language also makes one feel like they can trust the store. They feel catered to. This increases their chance of coming back to your store, provided the overall experience is good. In this blog, we are going to talk about how you can enable multiple languages in Magento 2 or create a multi-language website in Magento 2. Here’s an extensive step-by-step guide to set up your own multilingual store from Magento 2 backend. How to Create a New Store View in Magento 2 - Log in to your Magento admin panel/backend. - From the Stores menu, click on All Stores under the Settings section. - Now you can see a Create Store view button, as below: As you can see in the image, we’ve already created some store views with the store name and code. Similarly, as per your preference, you can add store views with name, code and set status as enable/disable. Once you’ve set up your store views, you can fix a sort order for store views and select a default store view for your store. For more detailed guide you can refer this link : https://devdocs.magento.com/guides/v2.3/config-guide/multi-site/ms_websites.html How to Setup Locale Language for Your Store View: - From the admin panel, tap on the Stores menu, then under Settings, choose Configuration. - Now you should able to see a menu on the left. Under that, you can find the General tab. Choose General to open configuration. - To change configuration for a specific Store view, you need to switch the store from the top of the page. - From the Store view, list at the top of the page, choose one of the store views as shown in the following figure: - Now, you should be able to define the locale for the chosen store view in Magento 2. You will have to deploy your theme static content for multiple locales as you have configured set up for multiple languages. You can run the command given below to deploy static content for the multiple languages: PHP bin/Magento setup:static-content:deploy en_GB en_US ro_RO Here instead of en_GB en_US ro_RO, you need to add your own language code based on your local setup. If you will set your store mode as production at that time, it will automatically set up a store and deploy content with required locale. Now, you have set up a multiple language store view, so you can proceed with the translation. How to Translate Theme Static Content: There are two ways to translate the theme’s static content: Based on the language, you can map a word with the language-specific word that you want to translate it to or by installing a language pack. >> Translate Inline - To use this feature, your Magento store should be in developer mode because only then you can use the Inline translation. - Before enabling the inline translation for proper output, you have to disable the mentioned cache. >>How to Disable Output Caches: - In the admin section, go to System menu and choose Cache Management. - Mark the following checkboxes: - Page Cache - Blocks HTML output - Translations - Set the Actions to Disable. Then, click Submit. >>Now Enable the Inline Translation - In the Admin panel sidebar, click on Stores and choose Configuration. - To work with a specific store view, click on the name of one of your store view, from the store view list, that is to be updated. - On the left side of the page, under the Advanced tab, choose Developer mode. (If you are not able to see it, first enable the developer mode of you Magento 2 backend.) - Expand the Translate Inline group. Then if necessary, clear these Website checkboxes set Enabled for Storefront to Yes and save the configuration. >>Update the Text - Open the frontend/storefront in a browser, and go to the page that you want to edit. If necessary, use the language chooser to change the store view. The text of each string that can be translated will be outlined in red. When you hover over any text box, a book icon (</span) appears. - Click on to open the Translate window. Check the Store View Specific checkbox and provide your custom text for that store. Now you can refresh the page to see the updated store view. You can process that with the other elements. In order to disable the inline translation, just set value No to ‘Enabled for Frontend’ from the Translate inline group from the admin and save the configurations. >>Language Pack and CSV based Translation - For the CSV based translation, you have to create a CSV with the language code like en_US.csv or de_DE.csv which contains the original phrase and the translated phrase in the language you want to translate. You can place this file in the path given below: app/design/frontend/{Vendorname}/{themename}/i18n/en_US.csv You can also install ready-made translated language pack if you do not want to create a CSV with your own words and phrases. You can directly use any language pack and install that in your store. Install it with the command line using the composer. You can go to this link and find available language packs : https://packagist.org/?query=language%20pack%20magento%202 In some cases, some words are not translated using this. For that, static content should be added in a way that it can be detected by the i18n tool of Magento. This way you’ll be able to add the strings in the dictionary for the translation. >>String Added In the phtml file: - Should use the __('<your_string>') method while adding a custom string, so it is able to translate. For example: php echo __('Translation Original Phrase') php echo __('Hello %s , How are you' , $name) >>String Added for the Email template: - When string will be added, need to use the following {{trans “string text of the printing ”}} For example: {{trans "text of the printing"}} When a string is added with a variable value in the email template: {{trans "%variable string" variable="value"}} >>String Added for the UI component template html file: Here, you need to implement the data-bind attribute with the i18n For Example: <span data-bind="i18n: 'String'"></span> To add a string with no binding to an HTML element: <!-- ko i18n: 'Your String Message' --><!-- /ko --> While string is added on attribute of an HTML element: <input type="text" data-bind="attr: {placeholder: $t('String for translation')}" /> >>String Added for the UI component configuration XML files: You will have to implement the translate attribute and set this as true for the translation. For example: <item name="label" xsi:type="string" translate="true">Delete</item> While fetching the data programmatically from the XML, you will have to use the method __(“variable”) to display translated text. Example : __($this->config->getData('label')) >>String Added for the .js files: In the js file, you should implement the mage/translate library to be able to translate the text. You can add translate library as below: define (['jquery', 'mage/translate'], function ($) {...}); You have to use the $.mage.__('')function when adding your string: $.mage.__('<string>'); Whereas, have to use the below method for adding string with a variable: $.mage.__('Hello %1').replace('%1', yourVariable); For the translation of dynamic content like the category, product, CMS page and block, you will have to define the translated value for the Store view. In case, all this went above your head or you want to save your time from this tedious task of translating, you can go for a Magento language translation extension. You can also opt for AppJetty’s Magento 2 language translator which uses the Google Translate API and is equipped with features like: - Mass Translation of CMS pages, product category pages, etc. in a matter of minutes using console/cron. - WYSIWYG Editor - Database Search & Translate
... View more
Whether Authorized.net patch MD5 to SHA512 provide support or a separate patch for PHP 5.6 version website to avoid payment failure without any error. Moreover, the same Patch will work for PHP 7.0.1 version website.
... View more
I was advised to submit an idea here. When printing a receipt in Google Chrome, clicking on "Print using system dialog" closes the window. This happens in production as well as the sandbox. STR Create a transaction. Search for the unsettled transaction. Click on the transaction ID to bring up the Transaction Detail. Click on Print to open the transaction in a new window. Click on Print Receipt in the upper right corner. Click on Print using system dialog... (Ctrl+Shift+P) The system dialog does not appear and the window closes. Hitting Ctrl+Shift+P does the same thing and causes the window to close If I do not click on Print Receipt, I'm able to get to the Chrome print dialog as well as the system print dialog. If I click on Print Receipt and stay within the Chrome print dialog, it works. Note This happens in incognito. This happens in the guest window. This does not happen when printing from other web pages. This does not happen in Firefox. This does not happen on the Mac or Linux. Environment Windows 10 Pro, Build 17134.765 Google Chrome Version 74.0.3729.169 (Official Build) (64-bit) The default printer is a network printer that is online and available.
... View more
There needs to be a way to quickly get any "returned" eChecks. By law, a consumer has 60 days to dispute a charge, and normal ACH transactions can take several business days to return NSF (or any other number of errors). I can think of two ways to solve this 1) Include the Original Transaction ID in the new Transcation. When you get a batch through API, and the batch shows that is has returned amounts, performing a getTransactionList() on that batch provides different transaction numbers than the original. If you look through the web interface, the original transaction IDs are listed. Doing a getTransactionDetailRequest() on each one that "returned" has a returnedItems array that shows the new transaction ID. Update the server code to include the original transaction in the newly settled transaction the same way it includes the new transaction in the original transaction details 2) create new API getReturnedTransactions(startDate, endDate) This new API MUST return the original transaction IDs As it stand currently, I have to put transactions in a temporary database with the date performed, and then check every transaction in the temp database every day for a "returnedItems" array in the getTransactionDetailRequest() call, and once it is day 61 after the original transaction, I can delete it from the temporary database. As you can imagine, this leads to thousands of useless calls. A single transaction, perfomed on 1-Dec 2018 has to be checked 60 times through 29-Jan 2019 to know for sure it never came back disputed. If 10 Transactions are processed every day, for 60 days, 600 API calls are performed to charge the accounts, and then 35,400 api calls are performed to check each of the 600 transactions (Days 60 has to be checked through day 120). These figures are assuming the charge, settlement, and ACH withdrawel fromt the customer account happen almost instantaneously, which they don't). Example can be provided to Authorize.net Staff from our production account.
... View more
Currently, eCheck deposits to the merchant have the fees taken out. This makes it much more difficult to reconcile on the accounting side. Anything that adds to the daily/monthly grind is something I want to avoid. I'm considering leaving Authorize.Net for this one reason. What would it take to have eCheck deposits be the full amount of revenue received, and take out the fees as a separate transaction?
... View more
Hi, First, thank you for your amazing products and solutions. The more I use this the more I like it. This may not be the precise purpose of this forum, but I have a suggestion related to your sample apps- The common theme I notice is that the sample apps often have the maxed out best possible that can be obtained for a given solution i.e. the Accept Hosted Iframe app. I fully appreciate the need to show and the benefit of showing what is truly possible with your products, but in helping others here and also in doing online searches during my own development process I have found that your sample apps are confusing quite a few people, for whom the fully decked out implementation may be an aspirational goal and not what they are immediately looking to acheive. I would suggest making maybe a few sample apps, with one being a minimal integration that the developer can build on to suit their needs, and then your fully decked out showcase model for the advanced users. I think this would help many developers speed up their development process. Thank you again. I cannot say enough how great your service is, from your API to the awesome people on the phone and the people on the forum.
... View more
Hi, I have tried to refund amount using ONLY trasaction ID, but i unable to succeed. I have using following code Please clink on below link. https://github.com/AuthorizeNet/sample-code-php/blob/master/PaymentTransactions/refund-transaction.p... Please make api for refund only and only using transaction ID. There are no need of any card nunber, customer profile ID, Customer Payment Profile ID etc. How you think about this IDEA to make refund using ONLY TRANSACTION ID? Thank you. Kalpesh
... View more
It would be nice to have proration invocing feature. It would be useful in following scenario (which is common in any subscription based payment): Suppose I've ARB subscriptions that charges for every 3 months and has a trial period of one month. I need to charge for anything(can be features or devices) added in subscription after trial period. For example, if some feature is added to a plan during second month then I need to charge them for remaining days of that billing cycle (so, charge amount = 30 + extracharge). I know, I can update subscription in ARB to charge them from next billing cycle and I can do one time charge on customer profile for that extra charge. But for this, I need to get unit price(charge per day) and since number of days in month varies the unit price also changes. It would be nice if this calculation is done by authorize.net.
... View more
The identifying information that's included in Silent Posts (x_cust_id, x_subscription_id, etc) should always be in webhook transactions, if not just everything in Silent Posts. I know about refId but that's of no use to companies using ARB for recurring billing, which is 99% of our transactions. This is making my migration to Webhooks difficult. Your support staff has obviously been instructed to push everyone to webhooks if they're using Silent Post right now but the glaring omissions of functionality in webhooks is just absurd. The only solution is to query the Authnet API for information on the transaction ("getTransactionDetailsRequest"). The response that comes back from that query is very detailed. That detailed response should just be webhook. Why the heck not? Come on now.
... View more
My eCheck account has limits for Monthly Transaction Volume as well as Largest Transaction Size. It would be nice to be able to retrieve those limitations via your API.
... View more
It would be convenient if Authorize.net would create and support an npm package that contained the production and sandbox versions of Accept.js. I am implementing a solution in Angular and currently have copied and pasted the file contents and put them in my application.
... View more
One of the items we used frequently in the AIM integration was the “x_test_request” toggle for the production server. We're updating our integration for the new API and unfortunately, I am not seeing that option. In the forums as well as through the Sandbox support, I've just been told to use an “authenticateTestRequest", which simply does an "authenticate credentials". However, this is insufficient for onboarding and provisioning of new clients and I would like to see an actual "test mode" flag brought forward to the new API. The use of this flag to change into test mode on the production server does several things for us: 1. It allows us to do full end-to-end testing of our setup (outside of the actual API integration). While we can use sandbox credentials for this, this becomes a QA issue for setup/provisioning. Using this flag allows us to set up everything exactly as needed and then simply flip a switch to "go live" on our end, as a service provider. 2. Having the ability to use live server credentials in test mode for our customers is important for those who are transitioning their service to us and may not be able to set their whole account into test mode. There are other customers with which we may just not be able to control the test mode status of their account for various reasons, so having this control at the API level (for individual transactions) is very important. 3. It is important even in test mode to be able to get the same “accept/decline” responses as we formerly could in AIM, and not just do “authenticate credentials”. How a given merchant may use the transaction data with us will vary based on their application and we need to be able to do full QA testing. By the way, even if it did what we needed, I do not see an option in your API to just do an “authenticateTestRequest”. There is no code sample in that section of the API reference, so I’m guessing it’s not included as a formal part of the API?
... View more
Would it please be possible to support EMV transactions without UI components in a background service on Android devices? It would make it so much easier to integrate EMV transactions in solutions that already support AIM transactions and provide e.g. signature capture, if simply the required information (authentication credentials, amount, invoice #) had to be provided to that background service which would just return the result of the transaction. Thanks for considering!
... View more
Currently only 3 tablets are supported by the In-Person SDK for Android: Samsung Galaxy Tab 4 10.1 Samsung Galaxy Tab 2 10.1 Samsung Galaxy Tab S2 1. and 2. seem not to be in production any more, and 3. is fairly expensive. The Samsung Galaxy Tab A 10.1 seems to provide very good value for its price but is not completely supported by the In-Person SDK for Android. When using the currently only supported chip card reader (BBPOS Chipper 2X) e.g. the standard EMV transaction is very slow (15-20s), the VISA Quick Chip transaction doesn't work (with or without UI), and the stripe reader is not supported. Would it be possible to support this tablet fully for EMV transactions, please? Thanks much for considering!
... View more