This file contains 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 | |
// Copy everything below this line | |
/** | |
* GravityRanger Dual Confirmation (text + redirect) | |
* https://gravityranger.com/display-text-confirmation-before-redirecting-gravity-forms | |
* | |
* Uses the gform_confirmation hook to display a text confirmation message before triggering the redirect confirmation. | |
* This code is a modified version of the snippet provided on docs.gravityfroms.com | |
* |
This file contains 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
$(".gform_wrapper form").on("submit", function(e){ | |
$(this).find(".gform_button").attr("disabled", true); | |
}); |
This file contains 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
/*--------------------------Default Styles------------------------------*/ | |
.oxy-woo-my-account { | |
width: 100%; | |
} | |
.oxy-woo-my-account a { | |
color: #00ADEF; | |
transition: all ease 0.2s; | |
} | |
.oxy-woo-my-account a:hover { | |
color: #E96199; |
This file contains 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 | |
/** | |
* Plugin Name: IBenic Bootstrap Modal | |
* Plugin URI: http://www.ibenic.com/show-a-wordpress-post-in-a-modal/ | |
* Description: Show an article in a modal on the same page. | |
* Version: 1.0 | |
* Author: Igor benić | |
* Author URI: http://www.ibenic.com | |
* License: GPL2 | |
* |