Help Center
Send us a messageGo to PixFort platformGet a License
  • PixFort Help Center
  • Getting started
    • How it works in 3 easy steps
    • How to create a PixFort account
    • Synchronize your account with envato market account
  • Creating Projects
    • Create your first project
    • Delete your project
  • Using PixFort builder
    • Introduction to PixFort Builder
    • Building pages using Page Builder
    • Change page width
    • Create fully working forms using Form Builder
    • Introduction to popups
    • Automatic Popups
    • How to edit menu
    • How to edit maps in builder?
    • How to change a video
    • Changing Background image of Sections
    • Add Google Analytics
    • Button customizer
    • Edit Sliders
    • Changing Links in your page
    • Change & upload images
  • Integrations
    • How to configure an integration
    • SMTP emails
    • Custom emails
    • MailChimp Integration
    • GetResponse‎ Integration
    • Mailerlite Integration
    • AWeber Integration
    • MailWizz Integration
    • Changing Forms feedback messages
    • Setup reCAPTCHA in forms
    • Configure the Integrations Manually
  • Exporting your project
    • Export your Project as .zip file
    • Publish project via FTP
  • Upload project to server
    • Uploading project files to my hosting
  • Your account
    • Add another Envato account
  • FAQ
  • Pricing, Licenses & Terms
    • Licenses & Projects explained
    • Refund Policy
Powered by GitBook
On this page
  • Can I create multiple forms in a row?
  • What is the difference between megapack and flatpack?
  • Do I have to pay a monthly subscription?
  • How many projects can I create?
  • How to speed up your website?
  • Forms
  • Can I add multiple emails in custom email forms?

Was this helpful?

FAQ

Frequently asked questions

PreviousAdd another Envato accountNextPricing, Licenses & Terms

Last updated 2 years ago

Was this helpful?

Can I create multiple forms in a row?

Yes, in fact there are many possibilities to create multiple forms in a row like:

  • After submitting the first form you can redirect the user to another page which contains the second form.

  • After submitting the first form you can set a popup to appear with the second form.

It's also possible to repeat the same process to create more than 2 forms in a row.

What is the difference between megapack and flatpack?

Both are HTML templates available for sale on themeforest, includes a front-end builder which you need to install it on your server, whereas comes with our new online builder which is available on platform and you can access it directly using envato account.

Do I have to pay a monthly subscription?

Absolutely not, you only need to purchase a licence in order to use PixFort platform, and there is no limit to your access as long as you have a valid license.

How many projects can I create?

You can create projects as many as licences you have. i.e. if you purchased 2 licences you can create 2 projects (each project requires 1 licence).

You can check this article to learn more about Licences & Projects.

How to speed up your website?

Website loading speed is a priority for the overall user experience, and it’s also one of the hundreds of SEO ranking factors. Page speed may depends on many different factors, however, following the essential recommended tips will make a significant difference on page loading speed. Here you will find a list of best practices to follow when creating and optimising your website:

Gzip is a file format and software application that essentially locates strings of similar code in your text files, then temporarily replaces them to make the files smaller.

Gzip will reduce the size of files sent from your server to increase the speed to which they are transferred to the browser.

  • Reduce sizes of pages by up to 70%

  • Increase page speed

  • Cost-benefit ratio: high

  • Access needed to the .htaccess files or server administration files

This works well with CSS and HTML, because these files typically have repeated code and whitespace.

If you don’t have Gzip enabled, however, you’ll want to fix this as soon as possible.

Gzip in your .htaccess file. The exact code you need depends on your server but if your site runs on Apache you will need to add the following lines to your .htaccess file:

<IfModule mod_deflate.c>
  # Compress HTML, CSS, JavaScript, Text, XML and fonts
  AddOutputFilterByType DEFLATE application/javascript
  AddOutputFilterByType DEFLATE application/rss+xml
  AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
  AddOutputFilterByType DEFLATE application/x-font
  AddOutputFilterByType DEFLATE application/x-font-opentype
  AddOutputFilterByType DEFLATE application/x-font-otf
  AddOutputFilterByType DEFLATE application/x-font-truetype
  AddOutputFilterByType DEFLATE application/x-font-ttf
  AddOutputFilterByType DEFLATE application/x-javascript
  AddOutputFilterByType DEFLATE application/xhtml+xml
  AddOutputFilterByType DEFLATE application/xml
  AddOutputFilterByType DEFLATE font/opentype
  AddOutputFilterByType DEFLATE font/otf
  AddOutputFilterByType DEFLATE font/ttf
  AddOutputFilterByType DEFLATE image/svg+xml
  AddOutputFilterByType DEFLATE image/x-icon
  AddOutputFilterByType DEFLATE text/css
  AddOutputFilterByType DEFLATE text/html
  AddOutputFilterByType DEFLATE text/javascript
  AddOutputFilterByType DEFLATE text/plain
  AddOutputFilterByType DEFLATE text/xml

  # Remove browser bugs (only needed for really old browsers)
  BrowserMatch ^Mozilla/4 gzip-only-text/html
  BrowserMatch ^Mozilla/4\.0[678] no-gzip
  BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
  Header append Vary User-Agent
</IfModule>

To enable compression in NGINX you will need to add the following code to your config file:

gzip on;
gzip_comp_level 2;
gzip_http_version 1.0;
gzip_proxied any;
gzip_min_length 1100;
gzip_buffers 16 8k;
gzip_types text/plain text/html text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;

# Disable for IE < 6 because there are some known problems
gzip_disable "MSIE [1-6].(?!.*SV1)";

# Add a vary header for downstream proxies to avoid sending cached gzipped files to IE6
gzip_vary on;

Page load times can be significantly improved by asking visitors to save and reuse the files included in your website.

  • Reduces page load times for repeat visitors

  • Particularly effective on websites where users regularly re-visit the same areas of the website

  • Benefit-cost ratio: high

  • Access needed

You can enable caching on your Apache server by adding these lines to your .htaccess file:

## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/pdf "access plus 1 month"
ExpiresByType text/x-javascript "access plus 1 month"
ExpiresByType application/x-shockwave-flash "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 year"
ExpiresDefault "access plus 2 days"
</IfModule>
## EXPIRES CACHING ##

Forms

Can I add multiple emails in custom email forms?

Yes, to do this you just need to separate the email addresses with a comma, for example: first.email@pixfort.com, second.email@pixfort.com

Images can play a major role in your site speed. They’re often very large files, which can slow down page load times. We highly recommend using appropriately sized images and make sure to compress the large images before uploading them into the page, you can use a tool like where you can upload your images to be compressed the download the compressed version which can you upload and use into your website.

The smaller your files, the faster your pages will load. Compression files is one of the easiest ways to reduce load times, and today, enabling compression with is considered standard practice.

If you’re not sure if your site has Gzip enabled, you can use to check. Just enter your site’s URL, and if you have Gzip enabled, you’ll see something like the image below:

FLATPACK
MEGAPACK
PixFort
Licenses & Projects explained
tinypng.com
Gzip
checkgzipcompression.com
tinypng.com
checkgzipcompression.com