1. Home
  2. Knowledge Base
  3. Bilder & Medien
  4. Edit print view (PDF) of the real estate

Edit print view (PDF) of the real estate

However, WP-ImmoMakler automatically offers the PLUS license an attractive print preview in PDF format from the transferred property data, which interested parties can download and print out. The print view is activated by default, but can be deactivated in the WP-ImmoMakler Customizer. You can view the standard design of the print view in our demo.

If you are currently using the BASIC license, you can book an upgrade to the PLUS license at any time. Please contact our support team for more information.

Customize layout - adjust print view (PDF) in the settings

You have the option of customizing the print view in the settings with regard to colors, header and footer images, among other things.

Enclosed you will find an overview of the customization options.

If you would like to make further adjustments, please contact our support team. Please send us your specific layout or design ideas. We will then check whether these can be easily implemented or, if necessary, provide you with a non-binding offer.

Customization options in the settings

  • Color Title heading
  • Color headings
  • Color Text
  • Header graphic
  • Special header graphic for the first page
  • Show header graphic in full width
  • Footer graphic
  • Special footer graphic for the first page
  • Show QR code in footer
  • Text footer left column, center, right column
  • Footer border color
  • Footer background color
  • Footer text color
Documentation: Overview of customization options Print view (PDF) in the settings
Overview of customization options

Customize layout in the settings

If you would like to customize the layout of the print view, please go to your WordPress backend under WP-ImmoMakler -> Settings -> PDF print view:

Documentation Individualization print view (PDF) in the settings
Customization of the print view (PDF)

Adjust displayed property data using filters

If you would like to customize the property data displayed in the print view, you can do so using the filter. If the customization you require is not listed here, please contact our support team.

Title page: Adjust object details on the title page

Please use the following filter: "immomakler_pdf_quick_details_keys"

add_filter('immomakler_pdf_quick_details_keys', function() {
	$quickdetails = [
		'wohnflaeche',
		'bueroflaeche',
		'ladenflaeche',
		'gesamtflaeche',
		'anzahl_zimmer',
		'kaufpreis',
		'kaltmiete',
		'nettokaltmiete'
	];
	return $quickdetails;
});

Example: Instead of "cold rent" & "net cold rent", "total gross rent" should be displayed.

Please use the following filter: "immomakler_pdf_quick_details_keys", required key: gesamtbelastungbrutto

add_filter('immomakler_pdf_quick_details_keys', function() {
	$quickdetails = [
		'wohnflaeche',
		'bueroflaeche',
		'ladenflaeche',
		'gesamtflaeche',
		'anzahl_zimmer',
		'kaufpreis',
		'gesamtbelastungbrutto',
	];
	return $quickdetails;
});

Deactivate print view (PDF)

If you do not wish to use the print view, you have the option of hiding the button under WP-ImmoMakler -> Customizer -> Detailed view.

Documentation: Expand print view (PDF)
Expand print view (PDF)
Was this article helpful?

Related Articles