Jump to content

bfarber

Clients
  • Posts

    163,911
  • Joined

  • Days Won

    346

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by bfarber

  1. This is an intended change designed to help boost income for sites using free trials. A lot of users will provide a credit card when offered a free trial, and then allow their subscription to continue without cancelling it, but may never come back to provide their credit card if not required to up front. It's a pretty common sales tactic.

    Ultimately, as mentioned, this is intended, but I could see a desire for a setting perhaps to control the behavior. Either way, I'm not sure this is really an ideal topic for the development gateway forum here. Would you like me to move this to the feedback forum instead?

  2. 39 minutes ago, Mike I said:

    No disrespect, but that is a terrible band-aid solution, and would look just as funky as my current method.. This will also cause problems with other personal software I use to gauge if the person has a lifetime subscription.. I don't believe adding a native "Lifetime" option would be too hard.. Can this please be looked into in future IPS updates..? I mean no offense, but in terms of Commerce, I've seen better functionality in MyBB plugins.

    You are certainly welcome to suggest changes to the software in our feedback forum if you would like to see new or different functionality.

    https://invisioncommunity.com/forums/forum/180-sales-feedback-and-information/

     

    39 minutes ago, Mike I said:

    I know this software has a ton of issues with CloudFlare or something. I'll try to see if that is causing it, as that was what "support" assumed - which was actually not the case at all for Stripe.

    I can ohly suggest submitting a ticket at this stage. Unfortunately without investigating directly I can only offer guesses.

  3. Regarding the bugs you are referencing, we have no open Commerce bugs in our bug tracker system (although there are some bug fixes queued for 4.6). Which bugs are you referring to? Have you reported them through the ticket system to ensure we are aware and can be certain the issues are resolved?

    As to your original question, there is no real way to set up a product that renews but to also have an indefinite purchase option. What I expect most people would do is set up two separate products, such as "My license" which has various renewal options, and "My license (lifetime)" which is more expensive but has no renewal terms. These two separate products can be configured to behave the same - i.e. to award the same groups and so on.

  4. Try changing

    <?php
      $bg = array('0_header2a.jpg', '0_IMG_20200928_120515.jpg?_cb=1611148998', '0_m_vengeance_lpx_ddr4_2400_2x8gb-1610717649-743-e.jpg?_cb=1611148998' ); // array of filenames
    
      $i = rand(0, count($bg)-1); // generate random number size of the array
      $selectedBg = "$bg[$i]"; // set variable equal to which random filename was chosen
    ?>
    
    <li class="ipsWidget ipsWidget_horizontal ipsBox ipsResponsive_block">
    
    <div class="SuperBlocks_thumbImage SuperBlocks_thumbImage_low SuperBlocks_shadowContainer" style="background-image:url('//www.xyxcx.com/pages_media/<?php echo $selectedBg; ?>) no-repeat;">

    to

    <?php
      $bg = array('0_header2a.jpg', '0_IMG_20200928_120515.jpg?_cb=1611148998', '0_m_vengeance_lpx_ddr4_2400_2x8gb-1610717649-743-e.jpg?_cb=1611148998' ); // array of filenames
    
      $i = rand(0, count($bg)-1); // generate random number size of the array
      $selectedBg = $bg[ $i ]; // set variable equal to which random filename was chosen
    ?>
    
    <li class="ipsWidget ipsWidget_horizontal ipsBox ipsResponsive_block">
    
    <div class="SuperBlocks_thumbImage SuperBlocks_thumbImage_low SuperBlocks_shadowContainer" style="background-image:url('//www.xyxcx.com/uploads/pages_media/{$selectedBg}') no-repeat;">

     

×
×
  • Create New...