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: Search for .htaccess files | |
Plugin URI: https://www.damiencarbery.com/2024/10/search-for-htaccess-files/ | |
Description: Quickly find hacker files - get a list of .htaccess files in wp-includes and wp-content and php files in wp-content. | |
Author: Damien Carbery | |
Author URI: https://www.damiencarbery.com/ | |
Version: 0.3.20241022 | |
*/ |
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: Append Download button to audio playlist | |
Plugin URI: https://www.damiencarbery.com/2017/02/add-download-link-to-wordpress-audio-player/ | |
Description: Add a Download link to the tracks in an audio playlist. This is based on the [playlist] shortcode from wp-includes/media.php. | |
Author: Damien Carbery | |
Author URI: https://www.damiencarbery.com | |
Version: 0.1 | |
*/ |
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: WooCommerce - Add extra product info to details table | |
Plugin URI: https://www.damiencarbery.com/2024/05/add-extra-product-info-to-woocommerce-details-table/ | |
Description: Use a custom metabox for extra product information that will be added to the details table. | |
Author: Damien Carbery | |
Author URI: https://www.damiencarbery.com | |
Version: 0.1.20240524 | |
WC tested to: 8.9.1 | |
Requires Plugins: woocommerce |
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: WooCommerce - Add extra order info to details table | |
Plugin URI: https://www.damiencarbery.com/2024/05/add-extra-order-info-to-woocommerce-details-table/ | |
Description: Use a custom metabox for extra order information that will be added to the end of the details table. | |
Author: Damien Carbery | |
Author URI: https://www.damiencarbery.com | |
Version: 0.1.20240521 | |
WC tested to: 8.9.1 | |
Requires Plugins: woocommerce |
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: WooCommerce - Change [products] shortcode display order | |
Plugin URI: https://www.damiencarbery.com/ | |
Description: Change the order of products in [products] shortcode to order in ids parameter if 'orderby' is set to 'ids'. Example: [products ids="1,5,2,4" orderby="ids"] | |
Author: Damien Carbery | |
Author URI: https://www.damiencarbery.com | |
Version: 0.1.20240517 | |
*/ |
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: Monochrome Pro - remove hero and avatar | |
Plugin URI: https://www.facebook.com/groups/genesiswp/posts/8077692698948523/ | |
Description: Remove the hero image and avatar from single posts in Monochrome Pro theme. | |
Author: Damien Carbery | |
Version: 0.1 | |
*/ | |
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 | |
/** | |
* Single Product tabs | |
* | |
* This template can be overridden by copying it to yourtheme/woocommerce/single-product/tabs/tabs.php. | |
* | |
* HOWEVER, on occasion WooCommerce will need to update template files and you | |
* (the theme developer) will need to copy the new files to your theme to | |
* maintain compatibility. We try to do this as little as possible, but it does | |
* happen. When this occurs the version of the template file will be bumped and |
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: WooCommerce - Export order details as CSV | |
Plugin URI: https://www.damiencarbery.com/ | |
Description: Allow exporting the details . | |
Author: Damien Carbery | |
Author URI: https://www.damiencarbery.com | |
Version: 0.1 | |
*/ |
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: View WooCommerce order on front end | |
Plugin URI: https://www.damiencarbery.com/2024/01/view-woocommerce-order-on-front-end/ | |
Description: Use an encrypted link to allow a customer view order details on the front end. | |
Author: Damien Carbery | |
Author URI: https://www.damiencarbery.com | |
Version: 0.3.20240719 | |
WC tested to: 9.1.2 | |
Requires Plugins: woocommerce |
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
// This code attempts to add a .with-border class to dropdowns as they are rendered. | |
// Create a new object for custom validation of a custom field. | |
var dcwdCustomFieldController = Marionette.Object.extend( { | |
initialize: function() { | |
console.log( 'In initialize of new code 1154' ); | |
// From: https://developer.ninjaforms.com/codex/field-view-rendering/ | |
this.listenTo( nfRadio.channel( 'listselect' ), 'render:view', this.renderView ); | |
}, |
NewerOlder