+ Reply to Thread
Results 1 to 6 of 6

Thread: PDF Export Details

  1. #1

    PDF Export Details

    When I use the PDF export option the form uses the account build form instead of the account browse form to generate the user account information in the pdf file.
    It shows the field Terms of use agreement in the pdf file which is not included in the account browse form.
    How can I change this?

  2. #2
    Flynax developer Rudi's Avatar
    Join Date
    Dec 2014
    Location
    Planet Earth
    Posts
    3,160
    Hello,


    FOR PRINT PAGE:


    Go to ftp > includes > controllers > print.inc.php

    find and change code:
    PHP Code:
    Only registered members can view the code
    to:
    PHP Code:
    Only registered members can view the code
    Last edited by Rudi; December 14, 2018 at 02:48 AM.

  3. #3
    Rudi, it doesn't work. I've attached PDF's from two different account types: Dealer and Seller.
    Is it possible to remove the field NAME too?
    The third attach is the Seller account in Macedonian language but I can't fix the encoding of the word Страна which is shown on the listing pages.
    I can't find solution for that.
    Attached Images Attached Images

  4. #4
    Flynax developer Rudi's Avatar
    Join Date
    Dec 2014
    Location
    Planet Earth
    Posts
    3,160
    Go to plugins > PdfExport > PdfExport.inc.php

    find and remove/comment out the following code:
    PHP Code:
    Only registered members can view the code

  5. #5
    Hello Aleksandar,

    You can send ftp access to my PM I will try to solve the problem with the ???????
    Viktor,
    Flynax technical department,
    Best wishes.

  6. #6
    Rudi that would delete the whole Seller info table, but you directed me to what I need so I deleted only:
    <tr>
    <td width="100px" style="color: #676766;height: 20px;">' . $lang["name"] . ':</td>
    <td>' . $seller_name . '</td>
    </tr>';

    And for excluding the privacy policy field I added:
    foreach ( $additional_fields as $key => $additional_value )
    {
    if ($key == 'policy') continue;

    Thank you.

+ Reply to Thread