{"id":60866,"date":"2016-09-30T07:42:35","date_gmt":"2016-09-30T07:42:35","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=60866"},"modified":"2025-05-20T08:31:57","modified_gmt":"2025-05-20T08:31:57","slug":"using-ajax-wordpress","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/","title":{"rendered":"Using AJAX in WordPress"},"content":{"rendered":"\n<p>In this article will demonstrate that how you can use <strong>ajax in wordpress<\/strong>. There is a different proccess of using ajax in wordpress as ajax request first goes to admin-ajax.php file and then proccess it.if there is no function created then admin-ajax.php will return -1.<br>Here is sample code of using ajax in wordPress in front end<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php \nadd_action( &#039;wp_enqueue_scripts&#039;, &#039;my_enqueue&#039; );\nfunction my_enqueue() {\n wp_enqueue_script(&#039;like_post&#039;, get_template_directory_uri().&#039;\/js\/post-like.js&#039;, &#039;1.0&#039;, 1 );\n wp_localize_script(&#039;like_post&#039;, &#039;ajax_var&#039;, array(\n &#039;url&#039; =&gt; admin_url(&#039;admin-ajax.php&#039;),\n &#039;nonce&#039; =&gt; wp_create_nonce(&#039;ajaxnonce&#039;)\n ));\n}\n\n?&gt;<\/pre>\n\n\n\n<p>In above Code we have used wp_localize_script() function which&nbsp;<strong>Localizes a registered script with data for a JavaScript variable.&nbsp;<\/strong> Inside which we have used an array for <strong>url<\/strong> and <strong>nonce.<\/strong><\/p>\n\n\n\n<p>now we can use <strong>url&nbsp;<\/strong>and <strong>nonce<\/strong> variables in our javascript code easily.<\/p>\n\n\n\n<p>if you want execute the script&nbsp;&nbsp;to fire on the front-end for both visitors and logged-in users, then you need to use these hooks:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\nadd_action( &#039;wp_ajax_my_post_like&#039;, &#039;my_post_like&#039; );\nadd_action( &#039;wp_ajax_nopriv_my_post_like&#039;, &#039;my_post_like&#039; );\n\n ?&gt;<\/pre>\n\n\n\n<p>where <strong>my_post_like()&nbsp;<\/strong>is our defined function which will be invoked once ajax request is fired .<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">var $wk_jq=jQuery.noConflict();\n (function($wk_jq){ \n \t$wk_jq(window).bind(&quot;load&quot;,function(){\n\t$wk_jq(&quot;.post-like a&quot;).click(function(eve){ \n\t\theart = $wk_jq(this);\n\t\tpost_id = heart.data(&quot;post_id&quot;); \n\t\t$wk_jq.ajax({\n\t\t\ttype: &quot;post&quot;,\n\t\t\turl: ajax_var.url,   \/\/ variable defined above with an array for url and nonce \n\t\t\tdata: &quot;action=my_post_like&amp;nonce=&quot;+ajax_var.nonce+&quot;&amp;post_id=&quot;+post_id,  \/\/ Action variable defines the name of the php function which proceess ajax request based on the variable we have passed   \n\t\t\tsuccess: function(count){\n\t\t\t\t \/\/ Do your stuff here once ajax response is returned\n\t\t\t}\n\t\t});\n\t\teve.preventDefault();\n\t\t\t\t\n\t\treturn false;\n\t\t});\n\t});\n})($wk_jq);<\/pre>\n\n\n\n<p>In our above code we also passing a nonce variable along with the post id for security reasons<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\nfunction my_post_like()\n{\n  $nonce = $_POST&#091;&#039;nonce&#039;]; \n \/\/ Verify nonce field passed from javascript code\n    if ( ! wp_verify_nonce( $nonce, &#039;ajaxnonce&#039; ) )\n        die ( &#039;Busted!&#039;);\n   \n  if(isset($_POST&#091;&#039;post_like&#039;]))\n  {\n    \/\/ do your stuff and return count;\n    echo $count;\n    }\n    else\n      echo &quot;default text&quot;;\n  }\n  exit;\n}\n?&gt;<\/pre>\n\n\n\n<p>If you have noticed, in above code we have used <strong>exit&nbsp;<\/strong>ajax in wordPress returns 0&nbsp;for any function, so we must use exit at the end of the function<\/p>\n\n\n\n<p>That\u2019s all for how to use <strong>Ajax in wordPress<\/strong>.<\/p>\n\n\n\n<p><a href=\"https:\/\/wordpressdemo.webkul.com\/woocommerce-marketplace-stripe-connector\/\" target=\"_blank\" rel=\"noreferrer noopener\"><br>Live Demo<\/a>&nbsp;<a href=\"https:\/\/codecanyon.net\/item\/woocommerce-marketplace-stripe-connect-plugin\/19214558\" target=\"_blank\" rel=\"noreferrer noopener\">Buy Now<\/a><\/p>\n\n\n\n<h1 class=\"wp-block-heading\">WordPress WooCommerce Marketplace Stripe Connect<\/h1>\n\n\n\n<p>Updated&nbsp;1 April 2024<\/p>\n\n\n\n<p><a href=\"https:\/\/wordpressdemo.webkul.com\/woocommerce-marketplace-stripe-connector\/\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><a href=\"https:\/\/codecanyon.net\/item\/woocommerce-marketplace-stripe-connect-plugin\/19214558\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n\n\n\n<p>Revisions<\/p>\n\n\n\n<p>Array<\/p>\n\n\n\n<p><a href=\"javascript:void(0)\">GENERATE PDF<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">&nbsp;<\/h3>\n\n\n\n<p><a href=\"https:\/\/webkul.com\/blog\/wordpress-woocommerce-marketplace-stripe-connect\/_wp_link_placeholder\">WordPress WooCommerce Marketplace Stripe<\/a>&nbsp;Connect plugin, which works as a payment gateway. Thus, allowing users to can accept payments from all around the world for their e-commerce store.<\/p>\n\n\n\n<p>This plugin can run in both tests and live modes. Hence, in addition, it facilitates the sellers to connect using stripe connect.<\/p>\n\n\n\n<p>Using<a href=\"https:\/\/webkul.com\/blog\/woocommerce-multi-vendor-subscription-documentation\/\">&nbsp;WooCommerce Multi Vendor Subscription<\/a>, sellers can add subscription products and customer can subscribe to them on a daily, weekly, monthly, or yearly basis.<\/p>\n\n\n\n<p><strong>Note:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>WordPress WooCommerce Marketplace Stripe Connect Plugin<\/strong>&nbsp;is an add-on to&nbsp;<strong>WordPress WooCommerce Multi-Vendor Marketplace Plugin<\/strong>.<\/li>\n\n\n\n<li>To use this plugin you must first install&nbsp;<a href=\"https:\/\/codecanyon.net\/item\/wordpress-woocommerce-marketplace-plugin\/19214408\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>WordPress WooCommerce Multi-Vendor Marketplace Plugin<\/strong>.<\/a><\/li>\n\n\n\n<li>This plugin only supports&nbsp;<strong>Standard<\/strong>&nbsp;connect integration.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Watch the video to understand the extension workflow:-<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"features-of-wordpress-woocommerce-marketplace-stripe-connect\">Features of WordPress WooCommerce Marketplace Stripe Connect<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Working with currencies that Stripe supports<\/li>\n\n\n\n<li>It supports a 3D secure payment method.<\/li>\n\n\n\n<li>Better Security as given by Oauth (Open standard for authorization). For creating tokens when receiving card details, so that no information about the card could be received by our own server.<\/li>\n\n\n\n<li>Email notification of the transaction.<\/li>\n\n\n\n<li>Support for almost all kinds of cards including Visa, Mastercard, American Express &amp; Discover.<\/li>\n\n\n\n<li>Works well with WordPress WooCommerce Marketplace.<\/li>\n\n\n\n<li>The customer makes a payment for the product\/s, the payment is automatically split amongst the admin and the sellers involved.<\/li>\n\n\n\n<li>The customer can save the billing address for future use.<\/li>\n\n\n\n<li>Check both Test and Live server modes on the payment gateway.<\/li>\n\n\n\n<li>The Stripe Separate Charge and Transfer API can be used for the Strip transaction(only for USD and Euro Currency types).<\/li>\n\n\n\n<li>Both the admin and the sellers can process a refund for the orders from their respective panels.&nbsp;<\/li>\n\n\n\n<li>Both the admin and the seller can perform the auto refund process from their panel via Stripe connect.<\/li>\n\n\n\n<li>The admin can process transfer reversal manually and it will work automatically on the seller\u2019s end.<\/li>\n<\/ul>\n\n\n\n<p><strong>NOTE:-<\/strong><\/p>\n\n\n\n<p>Searching for an experienced<br>Woocommerce Company ?<a href=\"https:\/\/webkul.com\/woocommerce-development\/\" rel=\"noreferrer noopener\" target=\"_blank\">Find out More<\/a><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If you are transferring money with the help strip payment method then it is mandatory that both accounts should be from the same country (for example, both in Australia).<\/li>\n\n\n\n<li>Stripe supports separate charges and transfers in the following regions: Australia, Brazil, Canada, Europe, Japan, Malaysia, New Zealand, Singapore, and the US.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"installation-of-wordpress-woocommerce-marketplace-stripe-connect\">Installation of WordPress WooCommerce Marketplace Stripe Connect<\/h3>\n\n\n\n<p>The user will get a zip file that needs to be uploaded in the&nbsp;<strong>\u201cAdd New\u201d<\/strong>&nbsp;menu option in the WordPress admin panel.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-add-new.png\"><img decoding=\"async\" width=\"1200\" height=\"180\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-add-new.png\" alt=\"installation -1\" class=\"wp-image-129022\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-add-new.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-add-new-250x38.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-add-new-300x45.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-add-new-768x115.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>So, for this login to WordPress Admin Panel and in the Dashboard hover your mouse over the&nbsp;<strong>\u201cPlugins\u201d<\/strong>&nbsp;menu option select the&nbsp;<strong>\u201cAdd New\u201d<\/strong>&nbsp;option.<\/p>\n\n\n\n<p>After this, the user will see an option on the top of the page that is&nbsp;<strong>\u201cUpload Plugin\u201d<\/strong>, click the option to upload the zip file.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-upload-plugin.png\"><img decoding=\"async\" width=\"1200\" height=\"180\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-upload-plugin.png\" alt=\"installation -2\" class=\"wp-image-129023\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-upload-plugin.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-upload-plugin-250x38.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-upload-plugin-300x45.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-upload-plugin-768x115.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>On clicking the&nbsp;<strong>\u201cUpload Plugin\u201d<\/strong>&nbsp;option, the user will see a&nbsp;<strong>\u201cChoose File\u201d<\/strong>&nbsp;button. Thus, click on the button to browse for the zip file as per the image below.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-choose-file.png\"><img decoding=\"async\" width=\"1200\" height=\"180\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-choose-file.png\" alt=\"installation -3\" class=\"wp-image-129024\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-choose-file.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-choose-file-250x38.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-choose-file-300x45.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-choose-file-768x115.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/a><\/figure>\n<\/div>\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-install-now.png\"><img decoding=\"async\" width=\"1200\" height=\"180\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-install-now.png\" alt=\"installation -4\" class=\"wp-image-129026\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-install-now.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-install-now-250x38.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-install-now-300x45.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-install-now-768x115.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>After browsing the file, click on the&nbsp;<strong>\u201cInstall Now\u201d<\/strong>&nbsp;button so as to install the plugin as per the snapshot.<\/p>\n\n\n\n<p>Once the user installs the plugin, a message \u201cPlugin installed successfully\u201d displays and an \u201cActivate Plugin\u201d is visible to activate the plugin.<\/p>\n\n\n\n<p>So, the user needs to click on the&nbsp;<strong>\u201cActivate Plugin\u201d<\/strong>&nbsp;button to activate the plugin.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-activate-plugin.png\"><img decoding=\"async\" width=\"1200\" height=\"180\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-activate-plugin.png\" alt=\"installation -5\" class=\"wp-image-129027\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-activate-plugin.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-activate-plugin-250x38.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-activate-plugin-300x45.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-installation-activate-plugin-768x115.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/a><\/figure>\n<\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"wordpress-woocommerce-marketplace-stripe-connect\">WordPress WooCommerce Marketplace Stripe Connect<\/h3>\n\n\n\n<p><strong>First Step:<\/strong>&nbsp;Go to&nbsp;<a href=\"https:\/\/dashboard.stripe.com\/login\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/dashboard.stripe.com\/login<\/a>&nbsp;and enter your&nbsp;<strong>login<\/strong>&nbsp;details.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" width=\"1292\" height=\"640\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Stripe-Sign-in.png\" alt=\"Stripe-Sign-in\" class=\"wp-image-242608\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Stripe-Sign-in.png 1292w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Stripe-Sign-in-300x149.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Stripe-Sign-in-1200x594.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Stripe-Sign-in-250x124.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Stripe-Sign-in-768x380.png 768w\" sizes=\"(max-width: 1292px) 100vw, 1292px\" loading=\"lazy\" \/><\/figure>\n<\/div>\n\n\n<p><strong>Second Step:<\/strong>&nbsp;Now,&nbsp;<strong>enable<\/strong>&nbsp;the option&nbsp;<strong>\u201cView test data\u201d<\/strong>&nbsp;on the side panel if not set to enable already.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Dashboard-%E2%80%93-Nik-%E2%80%93-Stripe-Test-.png\" alt=\"Dashboard-\u2013-Nik-\u2013-Stripe-Test-\" class=\"wp-image-242577\" loading=\"lazy\" \/><\/figure>\n<\/div>\n\n\n<p><strong>Third Step:&nbsp;<\/strong>Click the&nbsp;<strong>API<\/strong><strong>&nbsp;Keys<\/strong>&nbsp;menu option on the side panel to see the Publishable key(<strong>API Publishable Key<\/strong>).<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Dashboard-%E2%80%93-Nik-%E2%80%93-Stripe-Test-1.png\" alt=\"Dashboard-\u2013-Nik-\u2013-Stripe-Test-1\" class=\"wp-image-242581\" loading=\"lazy\" \/><\/figure>\n<\/div>\n\n\n<p>Now, click the&nbsp;<strong>\u201cReveal test key token\u201d<\/strong>&nbsp;to get your Secret Key(<strong>API Key<\/strong>).&nbsp;Clicking the&nbsp;<strong>\u201cReveal test key token\u201d<\/strong>&nbsp;will bring up the \u2013 Secret Key(<strong>API Key<\/strong>).<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Dashboard-%E2%80%93-Nik-%E2%80%93-Stripe-Test-2.png\" alt=\"Dashboard-\u2013-Nik-\u2013-Stripe-Test-2\" class=\"wp-image-242584\" loading=\"lazy\" \/><\/figure>\n<\/div>\n\n\n<p><strong>Fourth Step:<\/strong>&nbsp;To get the&nbsp;<strong>Client Secret<\/strong>&nbsp;key, click on the&nbsp;<strong>\u201cSettings\u201d<\/strong>&nbsp;option &amp; navigate to the product settings &amp;&nbsp; to the \u201c<strong>Connect Settings<\/strong>\u201d option.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Dashboard-%E2%80%93-Nik-%E2%80%93-Stripe-Test-5.png\" alt=\"Dashboard-\u2013-Nik-\u2013-Stripe-Test-5\" class=\"wp-image-242590\" loading=\"lazy\" \/><\/figure>\n<\/div>\n\n\n<p>Fifth Step:- Under Connect settings scroll down to the Integration page &amp; here you can find the&nbsp;<strong>Client ID.<\/strong><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Connect-settings-%E2%80%93-Nik-%E2%80%93-Stripe-Test-.png\" alt=\"Connect-settings-\u2013-Nik-\u2013-Stripe-Test-\" class=\"wp-image-242604\" loading=\"lazy\" \/><\/figure>\n<\/div>\n\n\n<p>For redirection, you need to click on&nbsp;<strong>+ Add URL<\/strong>.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Connect-settings-%E2%80%93-Nik-%E2%80%93-Stripe-Test-1.png\" alt=\"Connect-settings-\u2013-Nik-\u2013-Stripe-Test-1\" class=\"wp-image-242607\" loading=\"lazy\" \/><\/figure>\n<\/div>\n\n\n<p>Set the&nbsp;<strong>Website URL<\/strong>&nbsp;as \u2013 www.example.com\/seller\/profile\/edit<br>Set the&nbsp;<strong>Redirect URL<\/strong>&nbsp;as \u2013 www.example.com\/seller\/profile\/edit<\/p>\n\n\n\n<p>Here, you have two keys for the&nbsp;<strong>client_Id<\/strong>&nbsp;that are to be used according to the mode \u2013<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Development mode<\/strong>&nbsp;\u2013 This client_id is to be used when your site is in testing mode.<\/li>\n\n\n\n<li><strong>Product mode<\/strong>&nbsp;\u2013 This client_id is to be used when your site is in live mode.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"administrator-management-of-wordpress-woocommerce-marketplace-stripe-connect\">Administrator Management of WordPress WooCommerce Marketplace Stripe Connect<\/h3>\n\n\n\n<p>After successfully installing Stripe Connect the admin can configure this under&nbsp;<strong>\u201cWooCommerce &gt; Settings &gt; Payments\u201d<\/strong>.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1118\" height=\"759\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_wp-admin_admin.php_pagewc-settingstabcheckoutWebkul-store-2.png\" alt=\"wordpressdemo.webkul.com_marketplace-addon_wp-admin_admin.php_pagewc-settingstabcheckoutWebkul-store-2\" class=\"wp-image-302455\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_wp-admin_admin.php_pagewc-settingstabcheckoutWebkul-store-2.png 1118w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_wp-admin_admin.php_pagewc-settingstabcheckoutWebkul-store-2-300x204.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_wp-admin_admin.php_pagewc-settingstabcheckoutWebkul-store-2-250x170.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_wp-admin_admin.php_pagewc-settingstabcheckoutWebkul-store-2-768x521.png 768w\" sizes=\"(max-width: 1118px) 100vw, 1118px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Stripe Connect Configuration<\/h4>\n\n\n\n<p>Here admin can enable the Credit Cart (Stripe Connect) payment method and can configure it by clicking&nbsp;<strong>\u201cManage\u201d<\/strong>.<\/p>\n\n\n\n<p><strong>Configuration Images<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1120\" height=\"1520\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_woocommerce-marketplace-stripe-connector_wp-admin_admin.php_pagewc-settingstabcheckoutsectionstripe-connectsnapshots-1.png\" alt=\"wordpressdemo.webkul.com_woocommerce-marketplace-stripe-connector_wp-admin_admin.php_pagewc-settingstabcheckoutsectionstripe-connectsnapshots-1\" class=\"wp-image-400719\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_woocommerce-marketplace-stripe-connector_wp-admin_admin.php_pagewc-settingstabcheckoutsectionstripe-connectsnapshots-1.png 1120w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_woocommerce-marketplace-stripe-connector_wp-admin_admin.php_pagewc-settingstabcheckoutsectionstripe-connectsnapshots-1-221x300.png 221w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_woocommerce-marketplace-stripe-connector_wp-admin_admin.php_pagewc-settingstabcheckoutsectionstripe-connectsnapshots-1-755x1024.png 755w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_woocommerce-marketplace-stripe-connector_wp-admin_admin.php_pagewc-settingstabcheckoutsectionstripe-connectsnapshots-1-183x249.png 183w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_woocommerce-marketplace-stripe-connector_wp-admin_admin.php_pagewc-settingstabcheckoutsectionstripe-connectsnapshots-1-768x1042.png 768w\" sizes=\"(max-width: 1120px) 100vw, 1120px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>The admin can set the configurations as under:<\/p>\n\n\n\n<p><strong>Enable\/Disable \u2013<\/strong>&nbsp;With the help of this option, the admin can enable or disable this plugin.<\/p>\n\n\n\n<p><strong>Title \u2013<\/strong>&nbsp;Enter the title that the customer will see at the time of checkout.<\/p>\n\n\n\n<p><strong>Description \u2013&nbsp;<\/strong>The admin will specify the description which the customer can see on the checkout page.<\/p>\n\n\n\n<p><strong>Test\/Live-&nbsp;<\/strong>Here the admin can opt for the test or the live mode of this payment method.<\/p>\n\n\n\n<p><strong>The Stripe Connect-&nbsp;<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Test client_id \u2013&nbsp;<\/strong>Enter Stripe Connect Test Client Id.<\/li>\n\n\n\n<li><strong>Live client_id \u2013&nbsp;<\/strong>Enter Stripe Connect Live Client Id.<\/li>\n<\/ul>\n\n\n\n<p><strong>Stripe Test-<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Secret Key \u2013&nbsp;<\/strong>Enter the API Stripe Test Secret Key generated within the Stripe Payment gateway.<\/li>\n\n\n\n<li><strong>Publishable Key \u2013&nbsp;<\/strong>Enter the API Stripe Test Publishable Key generated within the Stripe Payment gateway.<\/li>\n<\/ul>\n\n\n\n<p><strong>Stripe&nbsp;<\/strong><strong>Live-<\/strong><\/p>\n\n\n\n<p><strong>Secret Key \u2013&nbsp;<\/strong>Enter the API Stripe Live Secret Key generated within the Stripe Payment gateway.<\/p>\n\n\n\n<p><strong>Publishable Key \u2013&nbsp;<\/strong>Enter the API Stripe Live Publishable Key generated within the Stripe Payment gateway.<\/p>\n\n\n\n<p><strong>Sale Method \u2013&nbsp;<\/strong>Select which sale method to use. Authorize Only will authorize the customer\u2019s card for the purchase amount only. Authorize &amp; Capture will authorize the customer\u2019s card and collect funds.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"stripe-charge-type\">Stripe Charge Type<\/h3>\n\n\n\n<p>The admin can select the stripe charge type from the options given in the dropdown list that&nbsp;<strong>Use Separate Transfer<\/strong>&nbsp;and<strong>&nbsp;Use Destination Charge.<\/strong>&nbsp;<\/p>\n\n\n\n<p><strong>While Using Separate Transfer&nbsp; \u2013&nbsp;<\/strong>When using separate charges and transfers, the platform can collect fees on a charge by reducing the amount it transfers to the destination accounts. For example, consider a restaurant delivery service transaction that involves payments to the restaurant and to the driver:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The customer pays a 100 USD charge.<\/li>\n\n\n\n<li>Stripe collects a 3.20 USD fee and adds the remaining 96.80 USD to the platform account\u2019s pending balance.<\/li>\n\n\n\n<li>The platform transfers 70 USD to the restaurant\u2019s connected account and 20 USD to the driver\u2019s connected account.<\/li>\n\n\n\n<li>A platform fee of 6.80 USD remains in the platform account.<\/li>\n<\/ul>\n\n\n\n<p><strong>Note-<\/strong>&nbsp;Creating separate charges and transfers is only supported when both your platform and the connected account are in the same region: both in Europe or both in the U.S. And, the 3D secure payment is only supported with separate transfers.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/b.stripecdn.com\/docs-statics-srv\/assets\/charges_transfers.a95f5bf398651fba0fb303e32a742546.svg\" alt=\"How a charge is divided into fees for the platform account and transfers for the connected accounts\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p><strong>While Using Destination Charge<\/strong><\/p>\n\n\n\n<p>The full charge amount (10.00 USD) is added to the connected account\u2019s pending balance. The&nbsp;<code>application_fee_amount<\/code>&nbsp;(1.23 USD) is subtracted from the charge amount and is transferred to your platform. Then, Stripe fees (0.59 USD) are subtracted from the&nbsp;<code>application_fee_amount<\/code>&nbsp;and the remaining funds (0.64 USD) are added to your platform account\u2019s balance.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/b.stripecdn.com\/docs-statics-srv\/assets\/application_fee_amount.837aa2339469b3c1a4319672971c1367.svg\" alt=\"Flow of funds for destination charges\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>After entering all the required details click&nbsp;<strong>\u201cSave Changes\u201d&nbsp;<\/strong>to save the details.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"refund-process-admin-end\">Refund Process: Admin End<\/h3>\n\n\n\n<p>In the admin panel, the admin can process a refund. The admin needs to navigate to WooCommerce &gt; Orders and find the order listing.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1120\" height=\"880\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_wp-admin_edit.php_post_typeshop_orderWebkul-store.png\" alt=\"wordpressdemo.webkul.com_marketplace-addon_wp-admin_edit.php_post_typeshop_orderWebkul-store\" class=\"wp-image-302456\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_wp-admin_edit.php_post_typeshop_orderWebkul-store.png 1120w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_wp-admin_edit.php_post_typeshop_orderWebkul-store-300x236.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_wp-admin_edit.php_post_typeshop_orderWebkul-store-250x196.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_wp-admin_edit.php_post_typeshop_orderWebkul-store-768x603.png 768w\" sizes=\"(max-width: 1120px) 100vw, 1120px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Thereafter, the admin needs to choose the order for which the amount is to be refunded on the order details page.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1120\" height=\"880\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_wp-admin_post.php_post405actioneditWebkul-store.png\" alt=\"wordpressdemo.webkul.com_marketplace-addon_wp-admin_post.php_post405actioneditWebkul-store\" class=\"wp-image-302459\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_wp-admin_post.php_post405actioneditWebkul-store.png 1120w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_wp-admin_post.php_post405actioneditWebkul-store-300x236.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_wp-admin_post.php_post405actioneditWebkul-store-250x196.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_wp-admin_post.php_post405actioneditWebkul-store-768x603.png 768w\" sizes=\"(max-width: 1120px) 100vw, 1120px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>On clicking the&nbsp;<strong>Refund<\/strong>&nbsp;button, two more tabs will be visible&nbsp;<strong>Refund Manually<\/strong>&nbsp;and&nbsp;<strong>Refund via Stripe Connect&nbsp;<\/strong>as shown in the image.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"801\" height=\"378\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-from-2021-08-24-15-17-19-1.png\" alt=\"Screenshot-from-2021-08-24-15-17-19-1\" class=\"wp-image-302466\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-from-2021-08-24-15-17-19-1.png 801w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-from-2021-08-24-15-17-19-1-300x142.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-from-2021-08-24-15-17-19-1-250x118.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-from-2021-08-24-15-17-19-1-768x362.png 768w\" sizes=\"(max-width: 801px) 100vw, 801px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Auto Refund Process-<\/h3>\n\n\n\n<p>The admin can process the auto refund via Stripe Connect to the customers from the transaction section.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1274\" height=\"637\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-from-2022-09-16-18-29-20.png\" alt=\"Screenshot-from-2022-09-16-18-29-20\" class=\"wp-image-352806\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-from-2022-09-16-18-29-20.png 1274w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-from-2022-09-16-18-29-20-300x150.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-from-2022-09-16-18-29-20-1200x600.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-from-2022-09-16-18-29-20-250x125.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-from-2022-09-16-18-29-20-768x384.png 768w\" sizes=\"(max-width: 1274px) 100vw, 1274px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Furthermore, they can check this on the stripe end as well in all transactions.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1280\" height=\"620\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-4.png\" alt=\"Screenshot-4\" class=\"wp-image-352809\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-4.png 1280w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-4-300x145.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-4-1200x581.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-4-250x121.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-4-768x372.png 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Transfer Reversal<\/h3>\n\n\n\n<p>The admin can reverse the amount transferred to the seller from&nbsp;<strong>Marketplace&gt; select seller&gt; manage&gt; open order&gt; transaction<\/strong>&nbsp;then click on reverse Stripe Transfer to proceed with the transaction.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1275\" height=\"634\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-6.png\" alt=\"Screenshot-6\" class=\"wp-image-352892\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-6.png 1275w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-6-300x149.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-6-1200x597.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-6-250x124.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-6-768x382.png 768w\" sizes=\"(max-width: 1275px) 100vw, 1275px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"seller-end-workflow\">Seller End Workflow<\/h3>\n\n\n\n<p>In the Seller End, the sellers can log in using their login credentials. This shall redirect the sellers to their profile page.<\/p>\n\n\n\n<p>Thereafter, the sellers can simply tap on the&nbsp;<strong>Seller Profile<\/strong>&nbsp;tab and add or edit any details as per requirement.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1116\" height=\"604\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_seller_profile_edit_Webkul-store-1.png\" alt=\"wordpressdemo.webkul.com_marketplace-addon_seller_profile_edit_Webkul-store-1\" class=\"wp-image-302470\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_seller_profile_edit_Webkul-store-1.png 1116w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_seller_profile_edit_Webkul-store-1-300x162.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_seller_profile_edit_Webkul-store-1-250x135.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_seller_profile_edit_Webkul-store-1-768x416.png 768w\" sizes=\"(max-width: 1116px) 100vw, 1116px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>However, the sellers will have to add the Social Profile information as well along with the Personal information under the Seller Profile tab.&nbsp;&nbsp;<\/p>\n\n\n\n<p>The&nbsp;<strong>\u201cPayment Information\u201d<\/strong>&nbsp;section has the \u201c<strong>Connect With Stripe<\/strong>\u201d button for the sellers to easily connect with stripe.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-payment-information.png\"><img decoding=\"async\" width=\"844\" height=\"381\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-payment-information.png\" alt=\"webkul-woocommerce-marketplace-stripe-connect-payment-information\" class=\"wp-image-179553\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-payment-information.png 844w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-payment-information-250x113.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-payment-information-300x135.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-payment-information-768x347.png 768w\" sizes=\"(max-width: 844px) 100vw, 844px\" loading=\"lazy\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>As the seller clicks on the \u201c<strong>Connect With Stripe<\/strong>\u201d button, it redirects the seller to another page. Thus, the seller requires to add the details as shown in the image below.<\/p>\n\n\n\n<p>After filling in the details the seller needs to click on the \u201c<strong>Authorize Access To This Account<\/strong>\u201d button. Henceforth, the seller can get \u201c<strong>Payment Description Or Payment Id<\/strong>\u201c.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1084\" height=\"3282\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Stripe-Connect-2.png\" alt=\"webkul-woocommerce-marketplace-stripe-authorize-access\" class=\"wp-image-115466\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Stripe-Connect-2.png 1084w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Stripe-Connect-2-82x249.png 82w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Stripe-Connect-2-99x300.png 99w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Stripe-Connect-2-768x2325.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Stripe-Connect-2-338x1024.png 338w\" sizes=\"(max-width: 1084px) 100vw, 1084px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>This redirects the seller to the \u201c<strong>My profile<\/strong>\u201d page where the seller can view a message \u201c<strong>Connected successfully<\/strong>\u201d in place of the \u201c<strong>Connect With Stripe<\/strong>\u201d button under<strong>&nbsp;Payment Information<\/strong>&nbsp;as shown in the image below.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-connection-established.png\"><img decoding=\"async\" width=\"839\" height=\"380\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-connection-established.png\" alt=\"webkul-woocommerce-marketplace-stripe-connect-connection-established\" class=\"wp-image-179554\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-connection-established.png 839w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-connection-established-250x113.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-connection-established-300x136.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-connection-established-768x348.png 768w\" sizes=\"(max-width: 839px) 100vw, 839px\" loading=\"lazy\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>The \u201c<strong>Connected Successfully<\/strong>\u201d message, thereafter, is replaced with the \u201c<strong>Connect With Stripe<\/strong>\u201d button for the sellers to login to multiple Stripe Accounts.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"846\" height=\"396\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-reconnect-to-other-accounts.png\" alt=\"webkul-woocommerce-marketplace-stripe-connect-reconnect-to-other-accounts\" class=\"wp-image-179555\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-reconnect-to-other-accounts.png 846w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-reconnect-to-other-accounts-250x117.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-reconnect-to-other-accounts-300x140.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-reconnect-to-other-accounts-768x359.png 768w\" sizes=\"(max-width: 846px) 100vw, 846px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"refund-process-seller-end\">Refund Process: Seller End<\/h3>\n\n\n\n<p>The sellers as well can process a refund from their respective panels. The sellers need to navigate to the&nbsp;<strong>Order History<\/strong>&nbsp;tab. The admin needs to navigate to the Order History and find the order listing.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1120\" height=\"809\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_seller_order-history_Webkul-store-1.png\" alt=\"wordpressdemo.webkul.com_marketplace-addon_seller_order-history_Webkul-store-1\" class=\"wp-image-302494\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_seller_order-history_Webkul-store-1.png 1120w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_seller_order-history_Webkul-store-1-300x217.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_seller_order-history_Webkul-store-1-250x181.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_seller_order-history_Webkul-store-1-768x555.png 768w\" sizes=\"(max-width: 1120px) 100vw, 1120px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Then the seller must tap on the order and view its details on the order details page as shown in the image.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1116\" height=\"805\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_seller_order-history_328_Webkul-store-1.png\" alt=\"wordpressdemo.webkul.com_marketplace-addon_seller_order-history_328_Webkul-store-1\" class=\"wp-image-302496\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_seller_order-history_328_Webkul-store-1.png 1116w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_seller_order-history_328_Webkul-store-1-300x216.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_seller_order-history_328_Webkul-store-1-250x180.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_seller_order-history_328_Webkul-store-1-768x554.png 768w\" sizes=\"(max-width: 1116px) 100vw, 1116px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Then the seller must click on the&nbsp;<strong>Refund<\/strong>&nbsp;tab. The&nbsp;<strong>Refund Manually<\/strong>&nbsp;and&nbsp;<strong>Refund via Stripe Connect<\/strong>&nbsp;tab shall be visible as shown in the image below.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"821\" height=\"574\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul.com_blog_wp-admin_post.php_post24591actioneditWebkul-store-3-1.png\" alt=\"webkul.com_blog_wp-admin_post.php_post24591actioneditWebkul-store-3-1\" class=\"wp-image-302499\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul.com_blog_wp-admin_post.php_post24591actioneditWebkul-store-3-1.png 821w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul.com_blog_wp-admin_post.php_post24591actioneditWebkul-store-3-1-300x210.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul.com_blog_wp-admin_post.php_post24591actioneditWebkul-store-3-1-250x175.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul.com_blog_wp-admin_post.php_post24591actioneditWebkul-store-3-1-768x537.png 768w\" sizes=\"(max-width: 821px) 100vw, 821px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Auto Refund Process-<\/h3>\n\n\n\n<p>The seller can process the auto refund from their panel to the customer\u2019s requested order refund.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1124\" height=\"601\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-from-2022-09-16-18-39-10.png\" alt=\"Screenshot-from-2022-09-16-18-39-10\" class=\"wp-image-352826\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-from-2022-09-16-18-39-10.png 1124w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-from-2022-09-16-18-39-10-300x160.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-from-2022-09-16-18-39-10-250x134.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-from-2022-09-16-18-39-10-768x411.png 768w\" sizes=\"(max-width: 1124px) 100vw, 1124px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Furthermore, when the seller clicks on refund via Strip Connect the amount will be directly transferred to the customer.&nbsp; This transaction will display on the Stripe Connect page.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1268\" height=\"630\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-5-1.png\" alt=\"Screenshot-5-1\" class=\"wp-image-352827\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-5-1.png 1268w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-5-1-300x149.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-5-1-1200x596.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-5-1-250x124.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/Screenshot-5-1-768x382.png 768w\" sizes=\"(max-width: 1268px) 100vw, 1268px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p><strong>Note<\/strong>: The transfer reversal process will perform automatically at the seller\u2019s end while processing the refund.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"front-end-workflow\">Front end Workflow<\/h3>\n\n\n\n<p>On the&nbsp;<strong>checkout page<\/strong>, the&nbsp;<strong>Stripe Connect<\/strong>&nbsp;payment method option is visible on the checkout page to the customers.<\/p>\n\n\n\n<p>The customers select the&nbsp;<strong>Stripe Connect<\/strong>&nbsp;option so as to make the payment for the purchase.<\/p>\n\n\n\n<p>The customers will have to add the card details such as card number, choose a card type as \u2013 Master, Visa, or American Express from the dropdown list, Expiration Date, and the CVV details and simply tap on&nbsp;<strong>Place Order<\/strong>.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1088\" height=\"1077\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_checkout_Webkul-store-1-1.png\" alt=\"wordpressdemo.webkul.com_marketplace-addon_checkout_Webkul-store-1-1\" class=\"wp-image-302509\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_checkout_Webkul-store-1-1.png 1088w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_checkout_Webkul-store-1-1-300x297.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_checkout_Webkul-store-1-1-1034x1024.png 1034w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_checkout_Webkul-store-1-1-250x247.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_checkout_Webkul-store-1-1-768x760.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/wordpressdemo.webkul.com_marketplace-addon_checkout_Webkul-store-1-1-120x120.png 120w\" sizes=\"(max-width: 1088px) 100vw, 1088px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3D secure payment method<\/strong><\/h3>\n\n\n\n<p>The customer can also be done this checkout with the 3D secure payment method, at the time of the 3D payment method the customer can get a pop-up before the payment is done as shown in the image below.<\/p>\n\n\n\n<p>If the customer can complete the authentication by clicking on the&nbsp;<strong>\u201cComplete Authentication\u201d<\/strong>&nbsp;button. The order will be placed.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1288\" height=\"661\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/screenshot_from_2021_08_19_16_46_27-1.png\" alt=\"screenshot_from_2021_08_19_16_46_27-1\" class=\"wp-image-301961\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/screenshot_from_2021_08_19_16_46_27-1.png 1288w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/screenshot_from_2021_08_19_16_46_27-1-300x154.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/screenshot_from_2021_08_19_16_46_27-1-1200x616.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/screenshot_from_2021_08_19_16_46_27-1-250x128.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/screenshot_from_2021_08_19_16_46_27-1-768x394.png 768w\" sizes=\"(max-width: 1288px) 100vw, 1288px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Moreover, once the customer places the order, a confirmation message shall display under the&nbsp;<strong>Order Received&nbsp;<\/strong>along with the details of the order as shown in the image below.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"749\" height=\"1190\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-order-received.png\" alt=\"webkul-woocommerce-marketplace-stripe-connect-order-received\" class=\"wp-image-179557\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-order-received.png 749w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-order-received-157x249.png 157w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-order-received-189x300.png 189w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-order-received-645x1024.png 645w\" sizes=\"(max-width: 749px) 100vw, 749px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"stripe-money-transfer\">Stripe Money Transfer<\/h3>\n\n\n\n<p>The admin and the sellers can log in to the Stripe accounts using their respective login credentials. Therein both can view the details of their payment (commission) which displays under the&nbsp;<strong>Payments<\/strong>&nbsp;option as shown in the image below.<\/p>\n\n\n\n<p>The seller\u2019s commission details will be present in the admin\u2019s Stripe Account.<\/p>\n\n\n\n<p>For instance, in the image below, the amount of USD 524 (including shipping) is the seller\u2019s amount and the amount of USD 709 (including shipping) is the admin\u2019s amount which displays under the admin\u2019s Stripe account.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-admins-payment.png\"><img decoding=\"async\" width=\"1286\" height=\"628\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-admins-payment.png\" alt=\"webkul-woocommerce-marketplace-stripe-connect-admins-payment\" class=\"wp-image-179558\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-admins-payment.png 1286w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-admins-payment-250x122.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-admins-payment-300x147.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-admins-payment-768x375.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-admins-payment-1200x586.png 1200w\" sizes=\"(max-width: 1286px) 100vw, 1286px\" loading=\"lazy\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>In order to view the complete details, the admin needs to click on the amount, for instance, USD 709 which is the admin\u2019s amount.<\/p>\n\n\n\n<p>As the admin clicks on the amount, it redirects the admin to the Payment details page as shown in the image below.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-admin-commission-details.png\"><img decoding=\"async\" width=\"1298\" height=\"921\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-admin-commission-details.png\" alt=\"webkul-woocommerce-marketplace-stripe-connect-admin-commission-details\" class=\"wp-image-179560\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-admin-commission-details.png 1298w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-admin-commission-details-250x177.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-admin-commission-details-300x213.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-admin-commission-details-768x545.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-admin-commission-details-1200x851.png 1200w\" sizes=\"(max-width: 1298px) 100vw, 1298px\" loading=\"lazy\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>Similarly, the sellers can also view their payments by simply logging in to their Stripe Accounts using their respective login credentials.<\/p>\n\n\n\n<p>As the seller logs in, the seller can view the payment (commission) under the Payments option as shown in the image below.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-seller-payment.png\"><img decoding=\"async\" width=\"1286\" height=\"531\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-seller-payment.png\" alt=\"webkul-woocommerce-marketplace-stripe-connect-seller-payment\" class=\"wp-image-179561\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-seller-payment.png 1286w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-seller-payment-250x103.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-seller-payment-300x124.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-seller-payment-768x317.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-seller-payment-1200x495.png 1200w\" sizes=\"(max-width: 1286px) 100vw, 1286px\" loading=\"lazy\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>Furthermore, In order to view the details of the order, the seller needs to click on the amount, for instance, USD 524, and it redirects the seller to the payment details page as shown in the image below.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-seller-payment-details-1.png\"><img decoding=\"async\" width=\"1280\" height=\"494\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-seller-payment-details-1.png\" alt=\"webkul-woocommerce-marketplace-stripe-connect-seller-payment-details-1\" class=\"wp-image-179614\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-seller-payment-details-1.png 1280w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-seller-payment-details-1-250x96.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-seller-payment-details-1-300x116.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-seller-payment-details-1-768x296.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/webkul-woocommerce-marketplace-stripe-connect-seller-payment-details-1-1200x463.png 1200w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" loading=\"lazy\" \/><\/a><\/figure>\n<\/div>\n\n\n<p><strong>When \u2018<em>Use Stripe Separate Charge and Transfer API for Stripe Payment Gateway\u2019-<\/em><\/strong><\/p>\n\n\n\n<p>Now, if in the admin configuration the above-mentioned field checks the amount will initially added to the admin account.&nbsp;<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/transactions.png\"><img decoding=\"async\" width=\"1258\" height=\"342\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/transactions.png\" alt=\"transactions\" class=\"wp-image-204272\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/transactions.png 1258w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/transactions.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/transactions.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/transactions.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/transactions.png 1200w\" sizes=\"(max-width: 1258px) 100vw, 1258px\" loading=\"lazy\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>Then the seller will receive the amount post deduction of the commission, taxes, and another additional amount in the payment. The admin can check the same by navigating to<strong>&nbsp;Connect&gt; Transfers.<\/strong><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/seller-transaction.png\"><img decoding=\"async\" width=\"1254\" height=\"358\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/seller-transaction.png\" alt=\"seller transaction\" class=\"wp-image-204282\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/seller-transaction.png 1254w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/seller-transaction.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/seller-transaction.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/seller-transaction.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2015\/05\/seller-transaction.png 1200w\" sizes=\"(max-width: 1254px) 100vw, 1254px\" loading=\"lazy\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>Hence, here, in this section, the admin can visualize the amount paid to the seller for the order.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><\/h3>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"woocommerce-support\">Support<\/h3>\n\n\n\n<p>For any technical assistance, please&nbsp;<a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\">raise a ticket<\/a>&nbsp;or reach us by mail at&nbsp;<a href=\"mailto:support@webkul.com\" target=\"_blank\" rel=\"noreferrer noopener\">support@webkul.com<\/a>Thanks for Your Time! Have a Good Day!<\/p>\n\n\n\n<p>Also,&nbsp;Hire WooCommerce Developers&nbsp;for all kinds of services for web and mobile development, plugin development, mobile app, design services, and much more. If you need custom&nbsp;<a href=\"https:\/\/webkul.com\/website-development\/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress Development services<\/a>&nbsp;then feel free to&nbsp;<a href=\"https:\/\/webkul.com\/contacts\" target=\"_blank\" rel=\"noreferrer noopener\">reach us<\/a>&nbsp;and also explore our exclusive range of WordPress&nbsp;<a href=\"https:\/\/store.webkul.com\/woocommerce-plugins.html\">WooCommerce Extensions<\/a>.<\/p>\n\n\n\n<p>Thanks for Your Time! Have a Good Day!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article will demonstrate that how you can use ajax in wordpress. There is a different proccess of using ajax in wordpress as ajax request first goes to admin-ajax.php file and then proccess it.if there is no function created then admin-ajax.php will return -1.Here is sample code of using ajax in wordPress in front <a href=\"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":67,"featured_media":46190,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1808,7966,1260],"tags":[3694,3695,3696],"class_list":["post-60866","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ajax","category-wordpress-woocommerce","category-wordpress","tag-ajax-in-wordpress","tag-ajaxify-wordpress","tag-jquery-ajax-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>how to use ajax in wordpress with javascript or jquery<\/title>\n<meta name=\"description\" content=\"This article will demonstrate that how you can use ajax in wordpress. There is a different proccess of using ajax in wordpress.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"how to use ajax in wordpress with javascript or jquery\" \/>\n<meta property=\"og:description\" content=\"This article will demonstrate that how you can use ajax in wordpress. There is a different proccess of using ajax in wordpress.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2016-09-30T07:42:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-20T08:31:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/WordPress-Code-Snippet.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Webkul\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Webkul\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"20 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/\"},\"author\":{\"name\":\"Webkul\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/14f2bcf2d2b044589b35c23a46036b02\"},\"headline\":\"Using AJAX in WordPress\",\"datePublished\":\"2016-09-30T07:42:35+00:00\",\"dateModified\":\"2025-05-20T08:31:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/\"},\"wordCount\":2637,\"commentCount\":8,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/WordPress-Code-Snippet.png\",\"keywords\":[\"ajax in wordpress\",\"ajaxify wordpress\",\"jquery ajax wordpress\"],\"articleSection\":[\"Ajax\",\"WooCommerce\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/\",\"url\":\"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/\",\"name\":\"how to use ajax in wordpress with javascript or jquery\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/WordPress-Code-Snippet.png\",\"datePublished\":\"2016-09-30T07:42:35+00:00\",\"dateModified\":\"2025-05-20T08:31:57+00:00\",\"description\":\"This article will demonstrate that how you can use ajax in wordpress. There is a different proccess of using ajax in wordpress.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/WordPress-Code-Snippet.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/WordPress-Code-Snippet.png\",\"width\":825,\"height\":260,\"caption\":\"Create Custom Role WordPress\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using AJAX in WordPress\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/14f2bcf2d2b044589b35c23a46036b02\",\"name\":\"Webkul\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b95a9889faa1ac8c620c762d0101c3a62e439d100e083ee7257caad54fa5305a?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b95a9889faa1ac8c620c762d0101c3a62e439d100e083ee7257caad54fa5305a?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Webkul\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/amit098\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"how to use ajax in wordpress with javascript or jquery","description":"This article will demonstrate that how you can use ajax in wordpress. There is a different proccess of using ajax in wordpress.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/","og_locale":"en_US","og_type":"article","og_title":"how to use ajax in wordpress with javascript or jquery","og_description":"This article will demonstrate that how you can use ajax in wordpress. There is a different proccess of using ajax in wordpress.","og_url":"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-09-30T07:42:35+00:00","article_modified_time":"2025-05-20T08:31:57+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/WordPress-Code-Snippet.png","type":"image\/png"}],"author":"Webkul","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Webkul","Est. reading time":"20 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/"},"author":{"name":"Webkul","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/14f2bcf2d2b044589b35c23a46036b02"},"headline":"Using AJAX in WordPress","datePublished":"2016-09-30T07:42:35+00:00","dateModified":"2025-05-20T08:31:57+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/"},"wordCount":2637,"commentCount":8,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/WordPress-Code-Snippet.png","keywords":["ajax in wordpress","ajaxify wordpress","jquery ajax wordpress"],"articleSection":["Ajax","WooCommerce","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/using-ajax-wordpress\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/","url":"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/","name":"how to use ajax in wordpress with javascript or jquery","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/WordPress-Code-Snippet.png","datePublished":"2016-09-30T07:42:35+00:00","dateModified":"2025-05-20T08:31:57+00:00","description":"This article will demonstrate that how you can use ajax in wordpress. There is a different proccess of using ajax in wordpress.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/using-ajax-wordpress\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/WordPress-Code-Snippet.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/WordPress-Code-Snippet.png","width":825,"height":260,"caption":"Create Custom Role WordPress"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/using-ajax-wordpress\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Using AJAX in WordPress"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/14f2bcf2d2b044589b35c23a46036b02","name":"Webkul","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b95a9889faa1ac8c620c762d0101c3a62e439d100e083ee7257caad54fa5305a?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b95a9889faa1ac8c620c762d0101c3a62e439d100e083ee7257caad54fa5305a?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Webkul"},"url":"https:\/\/webkul.com\/blog\/author\/amit098\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/60866","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/67"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=60866"}],"version-history":[{"count":14,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/60866\/revisions"}],"predecessor-version":[{"id":492708,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/60866\/revisions\/492708"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/46190"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=60866"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=60866"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=60866"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}