How to Move Product Name and Billing Terms Below Checkout Button

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

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

    hschurr Member

    Joined:
    Apr 23, 2014
    Messages:
    79
    Likes Received:
    0
    Location:
    Los Angeles
    Hi, since the v1.0.5 update, it seems the following solution is no longer valid.

    Can you provide new solution, please?

    OLD SOLUTION

    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>';
     
  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;
                if (is_user_logged_in()) {
                     echo $form;
                    if (isset($_GET['redirect_paypal']) && $_GET['redirect_paypal'] == 'true') {
                        echo '<script>setTimeout("document.frm_payment_method.submit()",02);</script>';
                    }
                }
                echo '</div>'; 
    with code given below

    Code:
     echo '<div id="im_pricing">';
    if (is_user_logged_in()) {
    echo $form;
    if (isset($_GET['redirect_paypal']) && $_GET['redirect_paypal'] == 'true') {
    echo '<script>setTimeout("document.frm_payment_method.submit()",02);</script>';
    }
    echo $str;
    }
    echo '</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
     
Thread Status:
Not open for further replies.

Share This Page