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 | |
/* Merge multiple RSS feeds with SimplePie | |
* | |
* Just modify the path to SimplePie and | |
* modify the $feeds array with the feeds you want | |
* | |
* You should probably also change the channel title, link and description, | |
* plus I added a CC license you may not want | |
* | |
* Help from: http://www.webmaster-source.com/2007/08/06/merging-rss-feeds-with-simplepie/ |
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: WooCommerce membership custom post excerpt | |
* Description: Instead of using the excerpt this will display the begining of a post for non members. | |
* Version: 0.1 | |
* Author: Sébastien Méric <[email protected]> | |
* Author URI: http://www.sebastien-meric.com/ | |
**/ | |
defined( 'ABSPATH' ) OR exit; |
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 | |
/** | |
* Username auto generation for Gravity Form User Registration Add-on | |
* | |
* see https://www.gravityhelp.com/documentation/article/gform_username/ | |
*/ | |
add_filter( 'gform_username', 'auto_username', 10, 4 ); | |
function auto_username( $username, $feed, $form, $entry ) { | |
//$username = strtolower( rgar( $entry, '2.3' ) . rgar( $entry, '2.6' ) ); |
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 user roles as classes to body tag in front and backend. | |
*/ | |
add_filter( 'body_class','add_roles_to_body' ); | |
add_filter( 'admin_body_class', 'add_roles_to_body' ); | |
function add_roles_to_body( $classes ) { | |
global $current_user; | |
foreach ( $current_user->roles as $user_role ) { |
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
/* truncated content styles : add this to the child theme style.css */ | |
div.truncated_content { | |
position: relative; | |
} | |
div.truncated_content:before { | |
content: ''; | |
position: absolute; | |
width: 100%; | |
height: 100px; | |
height: 100%; |
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: No french punctuation and accents for filename | |
Description: Remove all french punctuation and accents from the filename of upload for client limitation (Safari Mac/IOS) | |
Plugin URI: http://www.beapi.fr | |
Version: 1.0 | |
Author: BeAPI | |
Author URI: http://www.beapi.fr | |
This program is free software; you can redistribute it and/or |
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 | |
/* | |
To allow temporary access to content with Woocommerce Membership, | |
you have to check this checkbox : "Check this box if you want to | |
force the content to be public regardless of any restriction rules | |
that may apply now or in the future." | |
Here is a way to make this access temporary without having to edit | |
you post to uncheck the checkbox each and every day on each new publicly | |
released content. Let the WordPress cron job uncheck it for you :) |
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 | |
/** | |
* Allow membership renewal for active memberships | |
*/ | |
add_filter( 'wc_memberships_valid_membership_statuses_for_renewal', 'my_valid_membership_statuses_for_renewal' ); | |
function my_valid_membership_statuses_for_renewal( $statuses = array() ) { | |
$statuses[] = 'active'; | |
return $statuses; | |
} |
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_action( 'after_setup_theme', 'mytheme_woocommerce_set_image_dimensions' ); | |
function mytheme_woocommerce_set_image_dimensions() { | |
// Do not set sizes multiple times | |
if ( ! get_option( 'mytheme_shop_image_sizes_set' ) ) { | |
$catalog = array( | |
'width' => '768', // px | |
'height' => '', // px | |
'crop' => 0 // no-crop | |
); |