Forum Replies Created
-
AuthorPosts
-
admin
KeymasterShould be able to use something like the following CSS tweak to make that field wider:
.eStore_cart_item_qty{ width: 100px !important; }
admin
KeymasterI am going to reply all your license manager related questions in this one post (The other post will be deleted).
If you have the following option enabled in the “Manual Checkout” settings, then yes it will trigger that hook also:
Automatically Update Customer & Products Database
The manual checkout also triggers the following action hook:
do_action('eStore_manual_checkout_form_data', $payment_data, $cart_items);
The above mentioned action hook will also pass the customer input (from the collect input addon). The following example code shows how you can read it from the custom field.
$custom_field = $payment_data['custom']; parse_str($custom_field); eStore_payment_debug("Collect input addon - field 1 value: " . $cci_val, true); eStore_payment_debug("Collect input addon - field 2 value: " . $cci_val2, true);
This custom license manager integration related question is actually beyond the scope of our standard support. Please review our terms (which you had to agree before purchasing anything from our site).
You need to use the following option for this kind of custom coding related stuff:
admin
KeymasterI will take a look inside your site to see what I can find. I have sent you an email for it.
admin
KeymasterYou can try the following feature to create gateway specific buy now type buttons (if that is helpful):
admin
KeymasterYou can post the payment data to another script by using the following feature:
Go to the following settings area to enable the IPN forwarding:
WP eStore Settings -> 3rd Party Integration -> POST IPN to a 3rd party application
Alternatively, we have a WordPress action hook that you can use too (if you want to handle this via another custom plugin). Here is an example of how to use this hook:
add_action ('eStore_product_database_updated_after_payment', 'my_custom_tweak', 10, 2); function my_custom_tweak ($payment_data, $cart_items) { //Do your custom stuff here }
The $payment_data array will contain information that you can use to also query the customers database of eStore and get additional data for that transaction.
admin
KeymasterI have manually reset your key. Please try to activate it now.
November 5, 2020 at 6:43 pm in reply to: Is member level in rego form the same as the ref text in estore settings product #81841admin
KeymasterThe reference text for the eMember membership is the “membership level ID”:
Read the following documentation to learn how the registration process works with our plugin:
You don’t need to enable the free membership option for a subscription payment. Trial subscription is part of the standard subscription payment (so it is still a paid subscription model).
admin
KeymasterThat lock customer addon will still work since it does the locking on the first commission awarding. So when the commission is awarded (via coupon code application), the binding happens then.
admin
KeymasterA feature of that plugin must be conflicting for some reason. Did you try uploading the photos and creating a new gallery while that SSL plugin is active (so the photos are uploaded using “HTTPS” protocol from the start)? Does that gallery work if you upload new photos with the SSL plugin active?
November 3, 2020 at 6:17 pm in reply to: some problems some questions ! php error, transactions don’t show up … #81815admin
KeymasterI have sent you an email so I can take a look at your configuration. That will be easier.
admin
KeymasterIf you are using an external system to sell, then you need to use product listing from them. Our plugin’s listing is going to have the buy option from our plugin.
One option you can try is to use is the “Button Redirect Target URL” field in the product configuration. That will redirect the customer to the specified URL (instead of adding the item to the cart). So it can be used to send the user to an external site or page.
admin
KeymasterSomething is going wrong on this site. Do you have any caching plugin on this site?
November 2, 2020 at 5:26 pm in reply to: some problems some questions ! php error, transactions don’t show up … #81804admin
KeymasterThis topic was set to resolved by you. If you are still having an issue please reply here.
admin
Keymaster@Juan, that message in the admin is only for the admin user (so it won’t impact anything else). If all the gateway options are unchecked, then the plugin shows that message.
Go to the “Gateway Settings” tab in the payment gateway bundle settings. Do you have the following checkbox enabled?
Use Stripe Checkout SCA
admin
KeymasterWordPress 5.5.2 was released on October 29, 2020. All plugins remain compatible.
-
AuthorPosts