Skip to content

Commit

Permalink
version 2.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
it@coursestore.com committed Oct 30, 2023
1 parent 52a7efc commit f7966f5
Show file tree
Hide file tree
Showing 30 changed files with 2,528 additions and 1,857 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
.DS_Store
.github
.github
*.DS_Store
**.DS_Store
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

Binary file removed assets/cbk-logo.png
Binary file not shown.
39 changes: 0 additions & 39 deletions assets/cbk-logo.svg

This file was deleted.

Empty file added assets/css/wc.style.css
Empty file.
21 changes: 21 additions & 0 deletions assets/js/wc.script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
jQuery(document).ready(function () {
jQuery(".alnazer_knet_pay_fast").click(function (event) {
event.preventDefault();
let id = jQuery(this).val();
let quantity = jQuery(this).closest("form").find("input[name=quantity]").val();
if (quantity <= 0 || quantity == undefined) {
quantity = 1;
}
jQuery.post(ajax_object.ajax_url, {
'action': 'alnazer_knet_fast_pay_action',
'id': id,
'quantity': quantity
}, function (response) {
alert('Got this from the server: ' + response);
});
//console.log(id,quantity,ajax_object.ajax_url);
});



});
Binary file added assets/knet-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/knet-logo-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/knet-logo-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/knet-logo-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/knet-logo-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/knet-logo-50.png
Binary file not shown.
Binary file removed assets/tpay-logo-100.png
Binary file not shown.
Loading

0 comments on commit f7966f5

Please sign in to comment.