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 | |
/* | |
* Nemus Slider | |
* https://wordpress.org/plugins/nemus-slider/ | |
* nemus-slider.php line 75 | |
* Reported issue : https://wordpress.org/support/topic/php-fatal-error-call-to-a-member-function-add_cap-on-a-non-object/ | |
*/ | |
//Capabilities | |
function nemus_slider_add_caps_to_admin() { |
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
Verifying that "sebmeric.id" is my Blockstack ID. https://onename.com/sebmeric |
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 | |
); |
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 | |
/* | |
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 | |
/* | |
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
/* 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%; |