Skip to content

Instantly share code, notes, and snippets.

View smeric's full-sized avatar

Sébastien Méric smeric

View GitHub Profile
@smeric
smeric / nemus-slider.php
Last active December 18, 2017 09:10
WordPress Nemus Slider : PHP Fatal error: Call to a member function add_cap() on a non-object in /PATH/TO/SITE/FOLDER/wp-content/plugins/nemus-slider/nemus-slider.php on line 97
<?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() {
@smeric
smeric / html-tags-shortcode.php
Created October 7, 2017 19:42
WordPress HTML tags shortcode. So you may add HTML to escaped form fields values :)
<?php
/**
* HTML tags shortcode
*
* Usage: [html tag="span" class="myClass" id="firstSpan"]Lorem ipsum[html tag='br']dolor sit amet[/html]
*/
function html_tag_shortcode( $atts, $content = null ) {
extract( shortcode_atts( array(
'tag' => 'div',
'id' => '',
@smeric
smeric / yoast-seo-breadcrumbs-for-woocommerce.php
Last active June 21, 2021 22:13
Add WooCommerce endpoints to Yoast SEO breadcrumbs
<?php
/**
* Add WooCommerce endpoints to Yoast SEO breadcrumbs
*
* @link https://gist.github.com/smeric/b544f154ea752e47d0427f3e1ae901b5
* @version 1.0.1
* @package yoast_seo_breadcrumbs_for_woocommerce_endpoints
*
* @wordpress-plugin
* Plugin Name: Yoast SEO breadcrumbs addon
Verifying that "sebmeric.id" is my Blockstack ID. https://onename.com/sebmeric
@smeric
smeric / woocommerce-overwrite-default-thumbnail-sizes.php
Created October 11, 2016 13:43
Overwrite default thumbnails sizes after WooCommerce installation
<?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
);
@smeric
smeric / yoast-seo-social-images-sizes.php
Created October 11, 2016 13:36
Overwrite Yoast SEO Facebook & Twitter sharing images declaration with a custom one.
<?php
/**
* Std image size for social sharing.
**/
add_action( 'after_setup_theme', 'mytheme_setup_theme' );
function mytheme_setup_theme() {
add_image_size( 'social-800x420', 800, 420, true );
}
/**
@smeric
smeric / extend-woocommerce-memberships-period.php
Created October 6, 2016 12:47
WooCommerce Memberships : allow renewal for active memberships even before membership expiration.
<?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;
}
@smeric
smeric / automatically-disable-content-access.php
Last active September 9, 2016 15:30
Make Woocommerce Membership public content go private after a certain amount of time.
<?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 :)
@smeric
smeric / sanitize-filename.php
Last active July 15, 2016 23:17 — forked from herewithme/sanitize-filename.php
WordPress - No french punctuation and accents for filename
<?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
@smeric
smeric / truncated_content_shortcode.css
Last active February 25, 2016 10:48
A wordpress shortcode to display the current post truncated content. I did this shortcode to use with Paid Member Subscriptions in the first place...
/* 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%;