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
/* add this to your theme's functions.php file */ | |
/* Add option for URL to column settings */ | |
vc_add_param("vc_column", array( | |
"type" => "vc_link", | |
"class" => "", | |
"heading" => "Column Link", | |
"param_name" => "column_link" | |
)); |
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 | |
/** | |
* Plugin Name: Debug Rapyd Card payment callback. | |
* Description: This plugin saves the payload from the Rapyd Card callback into the order meta under the 'debug' key. | |
* Plugin URI: https://gist.github.com/birgire/beb3806eb15db4431e2ae0c35c6b53c4 | |
* Author: birgire | |
* Author URI: https://github.com/birgire | |
* License: MIT | |
* Version: 0.0.4 | |
*/ |
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 | |
/** | |
* Plugin Name: My Jetpack Stats Column | |
* Plugin URI: http://xlino.com/projects/adding-a-stats-column-for-jetpack/ | |
* Author: birgire | |
* Description: Adds a stats column to the posts table on the edit.php screen | |
* Version: 1.0.0 | |
*/ | |
add_action( 'admin_init', function() |
OlderNewer