Show Down Payments on Details Pages

Both the templates that ship with the plugin and themes built for Inventory Presser provide users with a vehicle attribute table that can be seen at the top of this screenshot:

The CapitalOne Leads Navigator add-on puts an “Explore Financing” button near vehicles, seen in this screenshot below an AutoCheck button and the vehicle attribute table.

Adding data to this table is easy using the invp_vehicle_attribute_table_items hook. Here’s a free plugin that does exactly that:

Code

<?php
defined( 'ABSPATH' ) or exit;

/**
 * Plugin Name: Inventory Presser Show Down Payment
 * Plugin URI: https://github.com/fridaysystems/inventory-presser-show-down-payment
 * Description: An add-on for Inventory Presser that adds down payments to the vehicle attributes table.
 * Version: 1.1.0
 * Author: Corey Salzano
 * Author URI: https://profiles.wordpress.org/salzano
 * Text Domain: invp-show-down-payment
 * Domain Path: /languages
 * License: GPLv2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 */

//For templates that ship with the plugin
add_filter( 'invp_vehicle_attribute_table_items', 'invp_add_down_payment_to_attribute_table' );
function invp_add_down_payment_to_attribute_table( $labels_and_values )
{
	$down_payment = invp_get_the_down_payment();
	if( empty( $down_payment ) )
	{
		return $labels_and_values;
	}

	$item = array(
		'member' => 'down_payment',
		'label'  => __( 'Down Payment', 'invp-show-down-payment' ),
		'value'  => $down_payment,
	);

	return $item + $labels_and_values;
}

Visit this plugin on Github: https://github.com/fridaysystems/inventory-presser-show-down-payment