Can’t you see PDF Maker in menu after migration to vtiger 7?

PDF Maker missing in vtiger 7 menu

In these days, lot of our customers migrate to vtiger 7. Then install PDF Maker (EMAIL Maker) for vtiger 7 but PDF Maker (EMAIL Maker) is missing in menu.

PDF Maker missing in vtiger 7 menu

PDF Maker missing in vtiger 7 menu

For some reasons installation does not write record into vtiger_app2tab table.

To show PDF Maker (EMAIL Maker) in your menu just provide few simple steps:

  • Open your database
    PDF Maker missing in vtiger 7 menu

    PDF Maker missing in vtiger 7 menu

  • Click on SQL
    PDF Maker missing in vtiger 7 menu

    PDF Maker missing in vtiger 7 menu

  • Copy following queries and execute these queries for PDF Maker
    set @oId = (select tabid from vtiger_tab Where name = 'PDFMaker' limit 1);
    set @newSeq = (select max(sequence)+1 from vtiger_app2tab where appname = 'PROJECT' limit 1);
    insert into vtiger_app2tab (tabid, appname, sequence, visible) values (@oId, 'PROJECT', @newSeq, 1);
    select * from vtiger_app2tab where appname = 'PROJECT' and sequence = @newSeq;

    or for EMAIL Maker

    set @oId = (select tabid from vtiger_tab Where name = 'EMAILMaker' limit 1);
    set @newSeq = (select max(sequence)+1 from vtiger_app2tab where appname = 'PROJECT' limit 1);
    insert into vtiger_app2tab (tabid, appname, sequence, visible) values (@oId, 'PROJECT', @newSeq, 1);
    select * from vtiger_app2tab where appname = 'PROJECT' and sequence = @newSeq;

    UPDATE FOR Vtiger 7.1: instead of PROJECT use please TOOLS

    set @oId = (select tabid from vtiger_tab Where name = 'PDFMaker' limit 1);
    set @newSeq = (select max(sequence)+1 from vtiger_app2tab where appname = 'TOOLS' limit 1);
    insert into vtiger_app2tab (tabid, appname, sequence, visible) values (@oId, 'TOOLS', @newSeq, 1);
    select * from vtiger_app2tab where appname = 'TOOLS' and sequence = @newSeq;
    PDF Maker missing in vtiger 7 menu

    PDF Maker missing in vtiger 7 menu

  • Refresh your vtiger. And Voila! PDF Maker (EMAIL Maker) is still not here. But don’t worry.
    The final step is just re-install PDF Maker (EMAIL Maker) (How to install PDF Maker you can also find here: How to install PDF Maker

    • Go to Settings->CRM Settings->Module Management->Modules
    • Click on Import Module from Zip and Install PDF Maker (EMAIL Maker).
      PDF Maker missing in vtiger 7 menu

      PDF Maker missing in vtiger 7 menu

  • Now, PDF Maker (EMAIL Maker) is no more missing in your Menu.
    PDF Maker in vtiger 7 menu

    PDF Maker in vtiger 7 menu

We apologize for the inconvenience and hope you enjoy our extension.

Share this post

Comments (2)

  • FAURE ROBERT Reply

    Hello,
    Do this procedure work whith vtiger 7.1 and PDF Maker free ?
    Thank you for your response.
    best regards

    May 14, 2018 at 4:41 pm
  • info@its4you.sk Reply

    Hello dear Faure,

    thank you for you good point.
    Article was updated.
    The main point for Vtiger 7.1 is used TOOLS insted of PROJECT.

    Enjoy our extension,
    Peter Mochnaľ

    May 15, 2018 at 9:59 am

Leave a Reply

Your email address will not be published. Required fields are marked *