MOON
Server: Apache
System: Linux vps.erhabenn.com.br 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64
User: machen (1008)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /disk001/machen/www/support/wp-content/themes/learnmore/freemius/templates/add-trial-to-pricing.php
<?php
	/**
	 * Add "&trial=true" to pricing menu item href when running in trial
	 * promotion context.
	 *
	 * @package     Freemius
	 * @copyright   Copyright (c) 2016, Freemius, Inc.
	 * @license     https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
	 * @since       1.2.1.5
	 */

	if ( ! defined( 'ABSPATH' ) ) {
		exit;
	}

	/**
	 * @var Freemius $fs
	 */
	$fs = freemius( $VARS['id'] );
?>
<script type="text/javascript">
	(function ($) {
		$(document).ready(function () {
			var $pricingMenu = $('.fs-submenu-item.<?php echo $fs->get_unique_affix() ?>.pricing'),
				$pricingMenuLink = $pricingMenu.parents('a');

			// Add trial querystring param.
			$pricingMenuLink.attr('href', $pricingMenuLink.attr('href') + '&trial=true');
		});
	})(jQuery);
</script>