Jump to content

Kinzer

Members
  • Posts

    21
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by Kinzer

  1. 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?
  2. $member_fields = $member->profileFields(); $member_fields['core_pfieldgroups_6'];
  3. 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
  4. I have a special profile field on registration that I want to check before accounts are validated.
  5. 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.
  6. 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
  7. Feature request: Display only what user has ordered not all items that they could potentially order under Profile->Gifts.
  8. 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.
  9. Thats what it says in acp cant seem to turn online. Payment method is custom and set to locked?
  10. 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 =]
  11. 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
  12. 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
  13. 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);
  14. Sweet lookn fwd to this
×
×
  • Create New...