Jump to content

TPL is missing


upalm

Recommended Posts

After updating to WHMCS 7.9.0, we have come across an error while checking out using the Stripe payment gateway.

Error log: Smarty Error: Unable to load template 'file:D:\xxx\xxx\xxx/xxx/xxx/invoice-payment.tpl'

Where does the 'invoice-payment.tpl' even exist? As the template six does not have it.
Even while attaching the new PayPal gateway it throws an 500 error after signing in.

Capture.PNG

Edited by upalm
Link to comment
Share on other sites

For others, I found that I need to copy the missing six templates for our customer theme. This was quicker than getting a response from the theme developers upstream.

Namely:

  • the file: templates/six/invoice-payment.tpl
  • directory subfolder: templates/six/payment/

 

Link to comment
Share on other sites

  • 2 weeks later...

Hey @brian! Could you help me with the popover as I am always landing up with 'Remote Transaction Failure' with 'Stripe' as the only change from my template and the default 'six' is that I can see is that the popover for the 3dsecure is not coming and neither does it come for the 2FA (basically it does not load the stripe.js) according to view source,

I've been trying to wrap my head around this for weeks now but I cannot seem to solve it. Please if you could help us it would be highly appreciated.

Is there a way to add the hook manually to the template?


 

add_hook("AdminAreaFooterOutput", 1, function (array $vars) {
    $filename = $vars["filename"];
    $return = "";
    if ($filename == "clientssummary") {
        $return = "<script type=\"text/javascript\" src=\"https://js.stripe.com/v3/\"></script>";
    }
    return $return;
});
add_hook("ClientAreaFooterOutput", 1, function (array $vars) {
    $filename = $vars["filename"];
    $template = $vars["templatefile"];
    $return = "";
    $requiredFiles = array("cart", "creditcard");
    $requiredTemplates = array("account-paymentmethods-manage", "invoice-payment");
    if (in_array($filename, $requiredFiles) || in_array($template, $requiredTemplates)) {
        $return = "<script type=\"text/javascript\" src=\"https://js.stripe.com/v3/\"></script>";
    }
    return $return;
});

 

Edited by upalm
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated