News:

You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification

Main Menu

Payment Info included in payment name - and destroing all layouts

Started by Biggreuda, March 10, 2012, 18:05:18 PM

Previous topic - Next topic

Biggreuda

Hi,

i've spend several hours on this problem now, but i just can't find the problem.
We did set up some payment methods, one of those is a simple bank transfer.
In the payment info are the details (Bank name, account number, etc) stored in a simple html-table layout.
When a customer now chooses this payment, the confirmation mail and all order-views are messed up.
I checked the given variables for those sites and i found out, that for some reason virtuemart just adds all information it can find to the name.

A var_dump showed me ["paymentName"]=> string(257) "ÜberweisungVorkasse per Überweisung<table class=...."

"Überweisung" ist the name, "Vorkasse per Überweisung" is the description and then the payment info is added.
That would be bad enought, but it also cuts the info at some point, so that a table and some rows are opened and never closed, so that all the layout after that is messed up.

Can anybody please tell me, where this crap is happening?
I've searched thousands of codelines now and I don't know where else to look :(

Biggreuda

Hi all,

is there really nobody else with that problem?
I've updated to 2.0.6 now (and I'm fixing the layout now to match), but this problem is still there.

In line 175 of the file my_template/html/com_virtuemart/invoice/invoice_items.php there is the following line:
<td align="right" class="pricePad" colspan="6"><?php echo $this->orderDetails['paymentName']  ?><td>
The output is not just the payment name, but also the short and the long description. How can i cut that to the Name (and maybe short-descripition)?

Today someone ordered some stuff and chose the bank transfer, he received the "destroyed" e-mail and i've disabled the cart-funktion now...


eloysanchez

Hi,

Did you find a solution?
I have the same problem.

Thanks
Eloy
IT Manager -  Webmaster
www.neozoneblog.es
www.verlaip.com

masonwebdesign

I realise this is old... but try this in your HTML email override

Around line 176 in /templates/<template name>/html/com_virtuemart/invoice/invoice_items.php make changes to the following

   <?php
$paymentNewName str_replace("span","div",$this->orderDetails['paymentName']);
$pieces explode("<br />"$paymentNewName);
?>

<tr>
<td align="right" class="pricePad" colspan="4"><?php  echo $pieces[0]; ?></td>

Djirko

Hi,
i know this thread is old, but maybe someone already have the solution for this? Im using latest virtuemart.

antonino78

Hello,
I know this thread is old, but unfortunately I see that the solution has not been found yet.
Please you can have the name of the separate payment from the payment information?  :'(

alatak

Hello

I have tested, and for me it works...
Even with some strange character in the payment name.

I cannot remove the payment description from the payment name just like that , because some people use it to give some extra information (like bank acount), and they want to have it also in the emails, and order details.
What i can do is to add templating of the plugin payments.

antonino78

Hello,
the problem is that the name of the payment is attached to the information of the payment.
So it would be more correct to choose to see the two together or separate.
Example in the invoice I would see only the name of the payment.
then insert a tag, for example: payment_name (for the name of the fee) and a paypant_info (for payment information).
Now this choice can not be done because the two things are connected.

I hope I explained myself because my English is not correct, and I apologize for that  :-[

alatak

Hello

If I add templating on the payments, then you can do what you want :)
Everybody needs something different.

antonino78



alamise

i have the same problem
invoice too long with payment desc
i made this code

<?php 
$paymentNewName str_replace("span","div",$this->orderDetails['paymentName']);
//$pieces = explode("<br />", $paymentNewName);
$pieces strstr($paymentNewName,"<br />",true);
echo $pieces;
// echo $this->orderDetails['paymentName']
  ?>


      
explode() is a array
            

antonino78

Quote from: alamise on July 21, 2013, 13:13:48 PM
i have the same problem
invoice too long with payment desc
i made this code

<?php 
$paymentNewName str_replace("span","div",$this->orderDetails['paymentName']);
//$pieces = explode("<br />", $paymentNewName);
$pieces strstr($paymentNewName,"<br />",true);
echo $pieces;
// echo $this->orderDetails['paymentName']
  ?>


      
explode() is a array
            

Hello,
please explain to me how this code?
Where do I enter it?

pixelofficer

Same problem here... It's unbelievable. There no even single space between name and description!!! During checkout there is at least <span> tag which I can use, but not in the invoice. It looks weird :(

Maxim Pishnyak

Quote from: pixelofficer on August 28, 2013, 18:14:57 PM
Same problem here... It's unbelievable. There no even single space between name and description!!! During checkout there is at least <span> tag which I can use, but not in the invoice. It looks weird :(
So did you try solution mentioned in this thread or not?
You can support Community by voting for Project on the JED
https://extensions.joomla.org/extension/virtuemart/#reviews
Join us at
https://twitter.com/virtuemart