How do I get faster support and help? #
We recommend using the contact form on our support page. You can leave a comment in the comment section too, But that will be a bit slower and has a limitation with sharing extra info like screenshots and private information like website URL.
Before contacting us, please make sure that you:
- Read the documentation carefully,
- See this Support FAQs
If you didn’t find the answer to your problem, please ask your question on the item discussion page or send us a private message from our support page and we will reply via email.
IMPORTANT!
For fast troubleshooting, please send us detailed information about the issue. Also, make sure that you don’t forget to send us your site URL where you are using/want to use the item. Please note, that we cannot troubleshoot efficiently from screen-shots.
Please take some time until we respond (usually in 24 – 48 hours).
PDF and FlipBook Loading issues: #
Why is PDF loading slowly? #
By default, the plugin supports partial loading inbuilt. but for that, you need to make sure partial loading is not disabled. Normally, as default, partial loading is supported out of the box. But, in cases where gzip is enabled for PDF then the partial loading won’t work.
Disable gzip for PDF in .htaccess file.
<IfModule mod_headers.c> <FilesMatch "\.pdf$"> RewriteRule ^(.*)$ $1 [NS,E=no-gzip:1,E=no-brotli:1,E=dont-vary:1] </FilesMatch> </IfModule>
Further Reading at StackOverFlow https://stackoverflow.com/questions/9249243/how-to-disable-apache-gzip-compression-for-some-media-files-in-htaccess-file
Also Make sure your PDF is Web optimized. 50MB for 10 pages is not good for web use.. Optimize the PDF and make it as small as 5MB or less. Maybe this can be useful: https://www.iskysoft.com/edit-pdf/optimize-pdf-mac.html
There is a CORS (Cross-Origin) issue and PDF is not loading! #
This occurs when the file and page are in HTTP and https mixed protocol. This is a result of improper https redirection. We recommend using a proper setup to redirect every HTTP request to https to avoid any conflict.
If you are using the file from another domain, make sure you have a proper CORS setup done in another domain. For Apache Server, add following lines in .htaccess file
Header set Access-Control-Allow-Origin "*" Header set Access-Control-Allow-Headers "Range" Header set Access-Control-Expose-Headers: "Accept-Ranges, Content-Encoding, Content-Length, Content-Range"
More Info: https://enable-cors.org/server.html
Amazon S3 CORS: #
For anyone wanting to use a static AWS S3 bucket to serve up a PDF flipbook, it works great. You need to configure CORS on your bucket permissions as follows:
<?xml version="1.0" encoding="UTF-8"?> <CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"> <CORSRule> <AllowedOrigin>*</AllowedOrigin> <AllowedMethod>GET</AllowedMethod> <MaxAgeSeconds>3000</MaxAgeSeconds> <ExposeHeader>Accept-Ranges</ExposeHeader> <ExposeHeader>Content-Encoding</ExposeHeader> <ExposeHeader>Content-Length</ExposeHeader> <ExposeHeader>Content-Range</ExposeHeader> <AllowedHeader>Authorization</AllowedHeader> <AllowedHeader>Range</AllowedHeader> </CORSRule> </CORSConfiguration>
Official Link: https://docs.aws.amazon.com/AmazonS3/latest/dev/cors.html
Make PDF optimized for web purpose: #
Make sure your PDF is Web optimized. PDFs are normally exported for printing and are of high quality, around 300-600dpi, which a printer requires. But for reading purposes on-screen 72-100dpi is enough. 50MB for 10 pages is not good for web use. Optimize the PDF and make per page average as max as 500KB or less. Maybe this can be useful: https://www.iskysoft.com/edit-pdf/optimize-pdf-mac.html
Customization #
How to change thumb size for lightbox popups? #
You can change the thumb size by using Custom CSS.
._df_thumb{ width:240px; height:360px; }
How to change the color of Bookmark / Outline? #
.df-outline-item { color: red; }
How to change the color of links in the flipbook? #
/* Make the highlight transparent - no color */ section.linkAnnotation a, a.linkAnnotation, a.customLinkAnnotation, .customHtmlAnnotation, .customVideoAnnotation{ opacity:0; }
/* Make the highlight color red */ section.linkAnnotation a, a.linkAnnotation, a.customLinkAnnotation, .customHtmlAnnotation, .customVideoAnnotation{ background-color: red; }
/* Make the hover color red */ section.linkAnnotation:hover a, a.linkAnnotation:hover, a.customLinkAnnotation:hover, .customHtmlAnnotation:hover, .customVideoAnnotation:hover{
opacity:0.4; background-color: red; }
How to remove Shadow from the middle of the book? #
In the case of 2D Flipbook use custom CSS. and set opacity as desired, 0 for no shadow.
.df-page-front:before, .df-page-back:before { opacity: 0; }
In the case of a 3D flipbook, use the stiffness setting. Stiffness defines the curve on the page. 0 is absolute flat – close to hard page flat; value 1 is curvy,2 is less curvy, default is 3. higher value will result in flatter look like setting the value to 0
var book_option = {stiffness:0};
If you want that for all book on the page, then use default settings.
DFLIP.defaults.stiffness = 0;
After loading the PDF and copy the shortcode, the page simply says; Please wait while flipbook is….. Nothing displays even after 5 min wait.
Make sure the required files are getting loaded and the files are accessible. You can check if there are any issues in Browser Console with CTRL + SHIFT + I
How can I remove the Share Icon
Hi,
You can remove the icon from Settings.
Under HideControls, add ‘share’ to the text-box.
How can i use the UPLOAD Button like on your page: https://jquery.dearflip.com/pdf-viewer/ – i need this button on my website
Hi,
Such a button is added through custom code – where the source of the PDF is changed and then passed to a hidden thumb flipbook.
You can check the code of that page to get some ideas. But that feature is not part of the plugin.
I want to show just the pdf just one-sided – one pdf-page per site, not double sided. how does it work?
How can i use SINGLE SIDED PAGES – is that possible? Just von PDF-SITE per PAGE?
Hello, I’m really interested in the jquery dearflip plugin but there’s one thing I really need to know before purchasing it.
Is it possible to customize the language of the controls? By changing the code, can I actually replace the label of the “Goto first page” button to be some other text?
Hi Rodrigo, Yes you can change that to the text you want
Hello DEIP.GHIMIRE,
How to open in FULL SCREEN by default from “_df_thumb” mode after clicking?
We don’t recommend opening in fullscreen directly,
Yet you can use the callback
onReady(flipbook)
to trigger fullscreen by triggering the fullscreen button on behalf of the user.Hi, is it possible to disable the click to turn page option? I tried removing the event listener but it is an anonymous function 🙁
Thanks, love the plugin otherwise!
https://stackoverflow.com/questions/4950115/removeeventlistener-on-anonymous-functions-in-javascript
Please contact using the premium contact form and we can insert some ideas on how this can be achieved or we will add a flag for you.
From where did you purchase the jQuery Plugin?
Hey, I actually managed to find a way around it: I added a mouseover and a mouseenter and mouseout event listener to the container housing the the stage (to show and hide the navigation controls), and this prevents the tap triggering the switch until the controls are up (which is better behaviour in my opinion).
One bug I spotted though, is that the fullscreen control button isn’t rendered on tablet sized devices (even in my Chrome browser if I set the size to iPad). Maybe this is intentional, but I’ve had to get around it by building in a custom Fullscreen button (on WordPress), which triggers `df_xxxx.ui.switchFullscreen()`.
Hey there,
How to disable “autoEnableThumbnail: true” for mobile using
var option_noScroll = {scrollWheel: false, autoEnableThumbnail: true}
Note: autoEnableThumbnail’s value doesn’t change in mobile using matchmedia javascript too.
Any help or suggestion?
Try this:
DFLIP.utils.isMobile
Example:
var option_noScroll = {scrollWheel: false, autoEnableThumbnail: !DFLIP.utils.isMobile}
Hi,
I want to use Thumbnail lightbox html, but I want to turnoff sound and remove Download Pdf link in options. How to do that?
You can disable sound and download from the setting of the flipbook,
Thank you, got it.
I want to buy a single version for my costumer but before i buy a license i have to know if an PDF indexpage also navigates to the correct page in a flip magazine?
Kind Regards,
Jessica Bitter
Het Schoolvoorbeeld.nl
Hi Jessica,
Please check your PDF at
https://jquery.dearflip.com/pdf-viewer/
You can see whether it’s working as expected or not.
Best,
Deip
Hi, I would like to buy 3D Flipbook jQuery Plugin and I’d like to know what $34/year means? Does that mean I won’t be able to use plugin after a year?
Thanks.
Best regards,
Cesar
Hi,
The plugin will continue to function. It won’t stop.
The updates and support won’t be available after license expires.
Best,
DearFlip Team
Thans you so much!
Best regards,
Cesar
Hi,
I wonder if I buy single site $34/year , what “single site” means?
Because besides official site I need to development on development site.
thanks.
Hi Joe,
A single site means a single WordPress installation for a domain.
But development site is not counted in the quota as defined by Freemius, our license provider. Please check if your development site is a valid development site as per the article below:
https://freemius.com/help/documentation/selling-with-freemius/license-utilization/
Best,
Deepak
Thanks for your reply.
But I’d like to buy jQuery Flipbook Plugin, not WordPress Flipbook Plugin.
I shouldn’t need to use WordPress installation, right?
Hi Joe,
Sorry for the typing mistake. We meant jQuery Plugin for $34.
hello, tell me how can I create an account and pay for this service?
Hi, You can purchase the product and an account will be created for ou using the mail address you provide during purchase.
Hello! Please tell me what does it mean in terms of 1/3/15 sites? Accommodation in the zone of one domain counts as one site or not?
Hi, One site is equal to a domain address. Subdomains are different sites.
Hi, what are the conditions for getting back the money?
I want to purchase it for a trial to see if it fits our project’s purpose.
Will I get the money back if I don’t want to continue after certain days?
Hi,
For trial use this https://github.com/dearhive/dearflip-jquery-flipbook without any worries.
I am unable to do two things with the JS Method (purchased):
1. On Mobile I cannot make the full screen button appear (have it in both allControls and have fullscreenEnabled: true) no matter what I do.
2. Is there any way to disable the side arrows? Since this is a mobile implementation, I don’t need the click capability and I would like to reclaim the space on the sides.
Hi,
1. Fullscreen wont be there in iPhone since IOS doesn’t provide fullscreen API for application to use, It appears in other devices.
2. Side arrows don’t restrict the area. You can increase/decrease the padding size on left/right with Padding left and Padding right settings in Global settings. They are by default set to 20px wide. Change them to 0 see the affect.
Hello,
Could you please tell me if there’s a way to initialize the plugin in order to start from a certain page? I couldn’t find anything inside the documentation. Is there a method such as “onLoad” or “onInit” I could exploit?
Thank you in advance.
Hi,
You can pass
openPage:4
in options.Hi,
The settings page is not showing.
Only see:
All Books
New Books
Categories
Do you have to purchase before seeing setting?
Hi,
Yes, Global settings are PRO features. Only individual flipbook settings are available in free version.
Hover blue color red css codes do not work when hovering. I’ve tried all sorts of combinations but it doesn’t work. Can you add this to the settings section in the next update..
Please share the link to your page where you have added the flipbook and custom CSS.
Hi,
I have tested the jquery library that I got from your platform . Everything works great but it looks like the PDF is not using partial loading. The whole pdf is downloaded at the start. Is this a limitation of the free trial version? Will the premium version be able to do partial loading?
Hi,
Partial loading is enabled in both free and pro version. It can be a limit from the server.
https://jquery.dearflip.com/pdf-flipbook-links-customization-and-tips-with-dflip/#why-is-pdf-loading-slowly
Best Regards,
DearFlip Team
hey.. my name is Fatima and I’ve been trying to use this plugin with ruby on rails application but something doesn’t seem to work. It’s showing me dFlipLocation and MOCKUP.defaults, as undefined, can you please help because I’ve been stuck on this problem since last week
Hi,
Can you share the link to your site. It can be faster to look at the issue.
dFlipLocation
is auto-determined by looking at the source of dflip.jsSo it’s not always required.
Yet, you can set it to the folder where the dflip.js file is.
This has to be a absolute URL for better results.
We suggest you to contact from related platform for better support.
https://jquery.dearflip.com/support/#contact
Hi, I’ve been trying to get in contact with you but I couldn’t find another mean. I work at a reseller company and wanted to know if you allow resellers to work with, since we currently have a customer who’s interested in purchasing DearFlip jQuery Flipbook.
Hi,
We do not have plans to provide reselling.
Best Regards,
DearHive
Hi, what is your refund policy? My client is willing to buy the lifetime license but wants to make sure links work on the PDF beforehand. If we buy a lifetime license and it does not work, would you offer a refund?
Thanks!
HI,
Test your PDF first at: https://jquery.dearflip.com/pdf-viewer/