Jump to content
thirty bees forum

SLiCK_303

Trusted Members
  • Posts

    1,200
  • Joined

  • Last visited

  • Days Won

    18

Everything posted by SLiCK_303

  1. change this: && $this->registerHook('customCMS_AFTER')) to this: && $this->registerHook('customCMS')) Then reset the module. This is assuming that you setup your hook in the module like this: public function hookcustomCMS($params) { return $this->hookDisplayHome($params); } The functions name, and the registerhooks name needs to be the same. in this case hookcustomCMS
  2. Then the problem is how you installed the hook in 'function install' in the testimonials module, this part: || !$this->registerHook('customCMS') show me the install function of the testimonials module, and we'll get this fixed.
  3. No problem, glad I could help! The release is GREAT news! Congrats!
  4. @Troy-Roberts np, glad I could help, wish I could have more. @datakick I noticed I can now get to your module by your name, thanks for that.
  5. The lost password thing gave me an error, but I was able to goto the tb WordPress site and change it there. Thanks..
  6. I'm probably missing it, but how do I change my password here on the forums?
  7. I'm not sure why the top link is just jumping to the top of the page, instead of bringing up the review popup. I'm also not sure why the module is not sending emails. Hopefully @datakick has some ideas for you.
  8. So you see it, but can't change the stars, or anything else?
  9. Do you see part of the review frame? Or do you just see nothing? Are you logged in?
  10. @Troy-Roberts You goto BO>Catalog>Product reviews to approve reviews. The second issue, what theme do you use?
  11. @30knees or anyone else testing this module, Remember to: 1) Go into all Settings tabs and set that stuff up first. 2) Go to Orders and enable/edit your currency. 3) Import your players, with whichever or both options you want. 4) Go to Groups and organize those. 5) Go to Actions and edit/enable the ones you want to use. 6) Then just setup some Levels and you're good to go. This is how I personally setup the Settings>Orders tab, but you do it however you like.... You can setup coupons, here are a couple of mine: Just go to setup a cart rule, with the name that starts with ' KronaTemplate: ', and make it however you want, highlighted or not, how long its good for, ect, ect, and have it disabled. Then you can use that with the module, and it will use it as a template when it makes coupons. Very cool.... As you see above I have a Level named High Roller, which is setup to give a coupon of 10% off. Also, remember to get the latest code at https://github.com/eschiendorfer/genzo_krona
  12. Thanx for the great module, cant wait for the full release!!
  13. All seems well atm, thanx.
  14. Ok, I'll change it and see what happens.
  15. The problem worked itself out I guess, it actually seems to be working as is.... do you still want me to change that?
  16. It's working like a charm, thanx for the update. It still doesn't let you pick your name in modules, and have the module show up, that sure would be nice if that worked.
  17. @datakick Were you able to reproduce my problems in php 7.x? Also, as you did not make a zip file for your new release, the d/l link on the tb shop is not working.
  18. I released a new version, fixing the database voucher cleanup, and removing the enable/disable of the module in the configuration.
  19. @Siteboost A new version has been released, with the changes you suggested.
  20. I will fix both issues on the next release. Thanks for the input....
  21. I followed @Nemo 's tutorial, adding the hook to module homefeatured, and it worked just as he said, in tb103 and in tb104. So you must have done something wrong. Lets figure out what it is.... To start with answer my last question, and we'll go from there. You might start fresh, and modify homefeatured like the example was, and see if you can get that working, and if you can, go back to modifying your Testimonials module. Thats a pretty simple module, I suspect your Testimonials module is not.
  22. if you goto BO>Modules and Services>Positions and check the Display non-positionable hooks check box, then pick your Testimonials module to show, does it have a listing for customCMS, and the Testimonials module under it?
  23. but it already had the displayHomeTab hook and function in the module right? And you just added the hook and function customCMS...
  24. and...in the top of the module, under function install, does it have a line similar to this: || !$this->registerHook('displayHomeTab') It needs to have that hook, and then the new hook you add to it: || !$this->registerHook('customCMS') for this to work. Plus of course the new function you added to the module: public function hookcustomCMS($params) { return $this->hookDisplayHome($params); }
×
×
  • Create New...