3D FlipBook - Flipbook with hashtags links

I***a@altron.com
2022-07-06
2022-11-15

How do I had hashtags in flipbook link page? So to be able to see which page I am on from the link.

Replies

I***a@altron.com
2022-07-07
2022-07-07

Please help.

I***a@altron.com
2022-07-07
2022-07-07

Will you be able to assist. I want to setup hotjar tracking on this 3d flipbook wordpress plugin. To be able to see heatmaps on all the viewed and flipped pages. Is it possible?

a***r@3dflipbook.net
2022-11-15
2022-11-15

only using Java Script. Plugin supports Google Analytics - it tracks visited pages. If you want to add links tracking - you can create your own link handler, use book ready function:

function ready(scene) {
scene.pdfLinksHandler.setHandler(
function(type, destination) { // type: 'internal' (destination - page number), 'external' (destination - url)
console.log([type, destination]);
        return false; // true - prevent default handler, false - call default handler
      }
);
} ready
Log In to leave a comment