Move "Checkout Now" button above Product Name and Payment Terms

Discussion in 'Subscribely v2 WordPress Theme' started by hschurr, May 4, 2014.

Thread Status:
Not open for further replies.
  1. hschurr

    hschurr Member

    Joined:
    Apr 23, 2014
    Messages:
    79
    Likes Received:
    0
    Location:
    Los Angeles
    What template or page do I need to edit in order to move the "Checkout Now" button above the Product Name and Payment Terms?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to Plugins > Installed plugins and click the edit option of "InkMember" plugin and open the inkmember/inc/im-core.php file in plugin editor and replace the current code
    Code:
     echo '<div id="im_pricing">' . $str . $form . '</div>'; 
    with code given below
    Code:
    echo '<div id="im_pricing">' . $form . $str . '</div>'; 

    This will solve your issue.


    Thanks & Regards
    Gourav Shrivastava
     
  3. hschurr

    hschurr Member

    Joined:
    Apr 23, 2014
    Messages:
    79
    Likes Received:
    0
    Location:
    Los Angeles
    Thanks, that worked!
     
Thread Status:
Not open for further replies.

Share This Page