This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Block access to WordPress specific files | |
<files .htaccess> | |
Order allow,deny | |
Deny from all | |
</files> | |
<files readme.html> | |
Order allow,deny | |
Deny from all | |
</files> | |
<files readme.txt> |
- Website: http://www.tableau.com
- Download: http://www.tableau.com/support/esdalt
Functionality behind the data sources, projects, workbooks, site users, and sites on a Tableau server.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Gravity Perks // eCommerce Fields // Consolidate Separate Discount Line Items into a Single Discounts Line Item | |
* http://gravitywiz.com/documentation/gravity-forms-ecommerce-fields/ | |
* | |
* Default: https://gwiz.io/2IiPALf | |
* w/ Snippet: https://gwiz.io/2Itfyfo | |
*/ | |
// Update "123" to your form ID - or - remove "_123" to apply to all forms. | |
add_filter( 'gpecf_order_summary_123', function( $summary ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'gpecf_order_sumary_markup', 'get_custom_order_summary_markup', 10, 6 ); | |
function get_custom_order_summary_markup( $markup, $order, $form, $entry, $order_summary, $labels ) { | |
ob_start(); | |
?> | |
<table class="gpecf-order-summary" cellspacing="0" width="100%" style="<?php gp_ecommerce_fields()->style( '.order-summary' ); ?>"> | |
<thead> | |
<tr> | |
<th scope="col" style="<?php gp_ecommerce_fields()->style( '.order-summary/thead/th.column-1' ); ?>"><?php echo $labels['product']; ?></th> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Calculate the longitude and latitude or a radius around a location | |
* | |
* Returns an array with the following keys: `LatitudeMax`, `LongitudeMax`, `LatitudeMin`, `LongitudeMin`, to produce a radius search | |
* | |
* @param string|float $longitude The longitude to calculate from | |
* @param string|float $latitude The latitude to calculate from | |
* @param integer $miles Number of miles for the radius |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Use the coordinates (Latitude, Longitude) instead of the address to position the markers over the Maps | |
* | |
* Replace 'MY_LATITUDE_FIELD_ID', 'MY_LONGITUDE_FIELD_ID' with field ids containing the latitude and longitude values | |
* | |
* @param array $fields_array Gravity Forms fields IDs containing the latitude and longitude | |
* @param GravityView_View $gravityview_view Current View object | |
* | |
* @return array Array with field IDs of latitude and longitude fields (Example: [ 5, 6 ] ). Empty array if not the form we want to override. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Use the coordinates (Latitude and Longitude) instead of the address to position the markers on the maps | |
* | |
* @see https://docs.gravityview.co/article/300-how-can-i-use-the-latitude-and-longitude-form-fields-to-position-map-markers | |
* | |
* @param array $fields_array Gravity Forms fields IDs containing the latitude and longitude | |
* @param GravityView_View $gravityview_view Current View object | |
* | |
* @return array Array with field IDs of latitude and longitude fields (Example: [ 5, 6 ] ). Empty array if not the form we want to override. |