wcml-adventure-tours.js
5 years ago
wcml-adventure-tours.min.js
5 years ago
wcml-bookings.js
5 years ago
wcml-bookings.min.js
5 years ago
wcml-composite.js
5 years ago
wcml-composite.min.js
5 years ago
wcml-members.js
5 years ago
wcml-members.min.js
5 years ago
wcml-product-addons.js
1 year ago
wcml-product-addons.min.js
1 year ago
wcml-members.js
18 lines
| 1 | jQuery(function ($) { |
| 2 | |
| 3 | if (typeof wc_memberships_memebers_area_endpoint != 'undefined') { |
| 4 | |
| 5 | var tabs = ['my-membership-content', 'my-membership-products', 'my-membership-discounts', 'my-membership-notes']; |
| 6 | |
| 7 | for (var i = 0; i < tabs.length; i++) { |
| 8 | $('.' + tabs[i] + ' a').each(function () { |
| 9 | var href = $(this).attr('href'); |
| 10 | if (href) { |
| 11 | $(this).attr('href', href.replace(wc_memberships_memebers_area_endpoint.original, wc_memberships_memebers_area_endpoint.translated)); |
| 12 | } |
| 13 | }); |
| 14 | } |
| 15 | |
| 16 | } |
| 17 | |
| 18 | }); |