haywyre
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Schedule Stock Manager] Cap StockI had the same need: to reset the stock, not add to it. I made an edit to the class-schedule.php file found in the Library folder.
About 18 lines down, look for:
$final_stock=$main_stock+$wssmgk_stock;
and change it to:
$final_stock=$wssmgk_stock;To test, I set the stock to update every minute. Seems to work.
Thanks, Stoyan. The JS file does not appear in the dropdown (woofunnels-aero-checkout/assets/js/checkout.min.js)
Forum: Plugins
In reply to: [Wallet for WooCommerce] Can find pageHi Subrata,
I found the problem. There was a line in the .htaccess file that caused the problem: SetEnv PHPRC /home/virginta/public_html/mydomain.com/php.ini.Forum: Plugins
In reply to: [Wallet for WooCommerce] Changing text on checkout pageThanks, Subrata. I don’t know much about PHP, but I managed to change the text AND show the wallet amount. On line 29, I changed:
<?php _e(‘Pay by wallet’, woo-wallet’)
to
?php _e(sprintf(__(‘Use %s wallet balance’, ‘woo-wallet’), wc_price($current_wallet_amount)))On the checkout page, it now displays “Use $25.00 wallet balance”
Forum: Plugins
In reply to: [Wallet for WooCommerce] Changing text on checkout pageThat’s correct. It would be nice to be able to show the wallet balance, too.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Changing text on checkout pageHi Subrata,
If wallet balance is greater than order total, the the text changes; however, if the wallet balance is less that the order total, it still says “Pay by wallet”. That’s the one I want to change (and show the balance if possible).Forum: Plugins
In reply to: [Wallet for WooCommerce] Changing text on checkout pageThanks Subrata. I changed the text in the settings, but it is not changing on the checkout screen. I flushed all caches, but still does not work.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Remove credits in admin panelhmmm I’m the site owner and administrator. I wonder why I can’t get access. I’ll try to find the problem on my end and report back.
As long as the wallet is credited if the order is processing, then it should be OK. In my test, it didn’t credit the wallet until I marked the order completed. I’ll continue to test.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Remove credits in admin panelHmmm…It won’t allow me to go to the settings page. I get a message “Sorry, you are not allowed to access this page”
As for my second query…The wallet funds are not added to the account until the ordered in marked as completed. Depending on when the top-up order is made, the admin may not mark it completed until the next day. I think the customer Wille expect to have access to the wallet funds immediately after the order has been placed.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Remove credits in admin panelAlmost almost there! There should be an option (or a lease a snippet) so when the customer adds to the wallet and successfully checks out, the order auto-completes. A typical scenario is that a customer will want to split payments when placing an order. If an admin isn’t available to complete the order the customer will have to wait, possibly leading to a lost sale. Once the customer adds to the wallet he/she will expect to see the funds immediately.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Remove credits in admin panelAlmost there! If a customer wants to add to their wallet, it should be non-taxable. In my test, I added $100, but at checkout, it added $8.75 in state tax.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Remove credits in admin panelThat works! Great job!
One more thing if it’s not too much trouble: I used your code snippet to hide the wallet from the main menu nav, but it hides it everywhere, including the My Account menu. Is there a code snippet that will hide it from the main menu, but leave it in the My Account menu?Forum: Plugins
In reply to: [Wallet for WooCommerce] Remove credits in admin panelI would like to use the plugin as a simple store credit system, so it’s important to be able to change the wallet amount in the admin. If one mistakenly enters $1000 instead of $100, there’s no way to change it. Or, please consider making a variation of this plugin so it only acts as a store credit system. I’ve been searching for this and have never found a simple, elegant solution. There are store credit coupon systems out there, but they’re too complex.