Jump to content
thirty bees forum

SLiCK_303

Trusted Members
  • Posts

    1,202
  • Joined

  • Last visited

  • Days Won

    18

Everything posted by SLiCK_303

  1. Offering the possibility to order products by sales when browsing categories is a great way to have your customers know about your best items. The following guide by @Nemo works in thirty bees. As he is talking about an old PS version in it, don't bother with his Download Project Files, just follow his manual directions and it will work great. Thanks @Nemo!
  2. Ok here is an override so you can search for phone numbers, both normal and mobile, in BO->Customers->Addresses. Create a file called AdminAddressesController.php and in it put... ``` <?php class AdminAddressesController extends AdminAddressesControllerCore { public function __construct() { parent::__construct(); $this->fields_list['phone'] = [ 'title' => $this->l('Phone'), 'filter_key' => 'a!phone' ]; $this->fields_list['phone_mobile'] = [ 'title' => $this->l('Mobile Phone'), 'filter_key' => 'a!phone_mobile' ]; } } ``` ..place it in your sites override/controllers/admin folder, and delete your sites /cache/class_index.php file.
  3. As It doesn't seem to be an issue with beta4, I'll go back to it on my live site. I'll try setting up different setups for both sites and see what happens.
  4. Yup. If I do a test sale on one site, going till I hit the paypal payment button, then I do the same thing on the other site, the error will come up. Strange.
  5. I just got it to do it, but this time with v5.3.2. I think it might have something to do with my two different domains using the same paypal setup. Stand by....
  6. Happened twice in an hour, now I can't reproduce the issue, I'll keep working on it though.
  7. SLiCK_303

    Paypal issue

    As per other conversations, I thought I would make a bug report. On Paypal v6.0.0beta4, I get the following error when a customer clicks the paypal option to pay (not express). When I goto the paypal module in the backend and just hit save it fixes it. But the problem always seems to come back....
  8. SLiCK_303

    Happy

    Ditto, and back at you buddy, thanx
  9. Now if you did my changes, undo them, and run with @mdekker s fix, https://forum.thirtybees.com/topic/1251/cart-rules-vouchers-seen-by-all-customers/5
  10. Seems to be working the way I would expect, nice job, as usual.
  11. Ok, Im a crack head, it's working fine. The problem on my side was I was picking a product that was from a different category that the voucher was in. So....neeevermind. and good job, thanks for fixin it! Sorry to waste ur time.
  12. If your user has points, turn in your points for a voucher with him, then test it.
  13. This one is specific to the user (not a group), and specific to categories...
  14. wel, unlimited depending on their points, this one has $2.50 left on it.
  15. I haven't assigned anything. These are vouchers the customer has made with their points.
  16. hmm... let me check again...
  17. they show up in My Vouchers, but not in the cart checkout
  18. not for me, on 1.0.x
  19. Not a gift, a Loyalty Reward, which made when the customer turns in their points for a voucher.
  20. Now, if I have a voucher that is specific for me (like your Loyalty reward voucher), it doesn't show in the cart checkout, even if the highlight is on. The My Vouchers is all working correct, but the cart checkout is not.
  21. I figured out a solution, it's ok not great, but it works. Open your themes discount.tpl file. find.. <tbody> {foreach from=$cart_rules item=discountDetail name=myLoop} Directly AFTER, on a new line add.. {if $discountDetail.highlight == 1} Now find.. {/foreach} </tbody> BEFORE on a new line add.. {/if} Now on your voucher turn off highlight. Now it will not show the voucher in the cart, or in the My Vouchers page.
  22. This I don't think is a bug, but rather a change in the logic of it. It seems to me that if a vouchers Highlight is off, then it should never be shown, anywhere, not in the cart, and not in My vouchers. Right now if the customer is in the vouchers Customer group, then the voucher is shown, whether the highlight is off or not.
  23. As of 1.0.x on 12/22/17 the error message is still there.
  24. So all my customers are in the USA, and I'd like them to be able to put in their phone numbers in the format 999-999-9999 (as apposed to (999)999-9999 or worse yet 9999999999). So all they do is type in the numbers, but it shows and stores it in that format. Is there any way to do that? Maybe with js like 'jquery.maskedinput.js', or some other way? Anyone with ideas on how I can accomplish this?
×
×
  • Create New...