Jump to content

Kinzer

Members
  • Joined

  • Last visited

  1.    Kinzer reacted to a post in a topic: Change Registration Default User Group?
  2. How do I change it so all new users that register become something like "Awaiting Members" instead of automatically becoming a "Member" as they get validated. Change default user group?
  3.    Kinzer reacted to a post in a topic: Import Users Email Template
  4. $member_fields = $member->profileFields(); $member_fields['core_pfieldgroups_6'];
  5. Invision Community v4.6.5.1 Cant seem to find the template under /admin/?app=core&module=customization&controller=emails any idear where I can locate this? Currently the template looks like this thanks
  6. Kinzer started following Midnight Modding
  7.    Kinzer reacted to a post in a topic: Pickems X
  8. I have a special profile field on registration that I want to check before accounts are validated.
  9. Would prefer an option to automatically place user on hold so I can automatically receive user ID's that are not validated yet in the hold_validating_members table.
  10. What's the best way to request new registrations or unvalidated accounts in php? Adding &validating=true/false to /core/members api doesnt seem to work. Can't seem to change the default user group on registration although that could be more of a pain than checking elseware. Any ideas? thanks
  11. Feature request: Display only what user has ordered not all items that they could potentially order under Profile->Gifts.
  12.    SJ77 reacted to a post in a topic: Application Commerce offline?
  13. Kinzer started following Nathan Explosion
  14. Think I had to set Commerce as default app instead of Checkout then it allowed me to notice a setting to put allow application online.
  15. Thats what it says in acp cant seem to turn online. Payment method is custom and set to locked?
  16.    Kinzer reacted to a post in a topic: Different between Posts & Topics?
  17. Makes sense, thought there might be a bug in my board counting a topic as a post with the original post. hehe thanks again for answering my dumb question =]
  18. Seems obvious, but Ive only got what I would think is Topics posted on my board because I havent launched my board yet. So there is very little 'replies' to 'topics'. A reply I would think is a 'Post' but that doesnt seem to be the case. So does anyone know what the difference is between Topics and Posts? Thanks
  19.    Kinzer reacted to a post in a topic: (NE) HTML5 Audio/Video Player
  20.    Kinzer reacted to a post in a topic: (NE) HTML5 Audio/Video Player
  21. Abracadabra! You the man, gracias
  22. Here you go thanks
  23. You want access to the board to show you the issue? The board is pretty locked up and hasnt even launched yet, just been working on it a couple months. Launching a board in 2021 is only 13 years late so it must be special. Here is a public mp4 you can test with if that helps https://mlb-cuts-diamond.mlb.com/FORGE/2021/2021-07/01/0f91a225-cdda7716-7a3830d4-csvm-diamondx64-asset_1280x720_59_16000K.mp4 Thanks
  24.    sobrenome reacted to a post in a topic: (NE) HTML5 Audio/Video Player
  25. Working here on v4.5.4.2 but I have one issue Im trying to resolve, If I 'POST' topics via API and link an mp4 as the post it doesn't automatically turn that link into the player. if I edit the topic and just hit save, then the player will load. What can i do to get it working off the jump? Thanks # Create Data $data = array('forum' => '21', 'title' => $gameHi[$win]['Title'], 'post' => "<a href='$Hi[$win]'>$Hi[$win]</a>", 'author' => '1'); # Create a connection $url = '/api/index.php?forums/topics&key='; $ch = curl_init($url); # Form data string $postString = http_build_query($data, '', '&'); # Setting our options curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $postString); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); # Get the response $response = curl_exec($ch); curl_close($ch);