diff --git a/htdocs/admin/pdf.php b/htdocs/admin/pdf.php
index ad58cb54137..ebdb20a29b6 100644
--- a/htdocs/admin/pdf.php
+++ b/htdocs/admin/pdf.php
@@ -419,28 +419,6 @@ if ($conf->use_javascript_ajax) {
}
print '';
-// Place customer adress to the ISO location
-
-print '
| '.$langs->trans("PlaceCustomerAddressToIsoLocation").' | ';
-if ($conf->use_javascript_ajax) {
- print ajax_constantonoff('MAIN_PDF_USE_ISO_LOCATION');
-} else {
- print $form->selectyesno('MAIN_PDF_USE_ISO_LOCATION', (!empty($conf->global->MAIN_PDF_USE_ISO_LOCATION)) ? $conf->global->MAIN_PDF_USE_ISO_LOCATION : 0, 1);
-}
-print ' |
';
-
-// Use 2 languages into PDF
-
-print '| '.$langs->trans("PDF_USE_ALSO_LANGUAGE_CODE").' | ';
-//if (! empty($conf->global->MAIN_MULTILANGS))
-//{
-$selected = GETPOSTISSET('PDF_USE_ALSO_LANGUAGE_CODE') ? GETPOST('PDF_USE_ALSO_LANGUAGE_CODE') : (!empty($conf->global->PDF_USE_ALSO_LANGUAGE_CODE) ? $conf->global->PDF_USE_ALSO_LANGUAGE_CODE : 0);
-print $formadmin->select_language($selected, 'PDF_USE_ALSO_LANGUAGE_CODE', 0, null, 1);
-//} else {
-// print ''.$langs->trans("MultiLangNotEnabled").'';
-//}
-print ' |
';
-
// Ref
print '| '.$langs->trans("HideRefOnPDF").' | ';
|