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
| /** | |
| * Filter the post status of newly created Sell Media items | |
| * Applies only to Add Bulk and Add Package features | |
| * Useful if you don't want contributors to publish new items | |
| * Without first being approved | |
| */ | |
| function my_sell_media_post_status(){ | |
| if ( current_user_can( 'manage_options' ) ) { | |
| return 'publish'; | |
| } else { |
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
| jQuery(document).ready(function($){ | |
| $('.filter').on('click', function(){ | |
| var cat = $(this).data('filter'); | |
| $('.item').each(function(){ | |
| if($(this).hasClass(cat)){ | |
| $(this).show().removeClass('hide').addClass('show'); | |
| } else { | |
| $(this).hide().removeClass('show').addClass('hide'); | |
| } | |
| }); |
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 | |
| /** | |
| * Filters the size of thumbnail in Sell Media | |
| */ | |
| function sell_media_filter_thumbnail_size(){ | |
| return 'large'; | |
| } | |
| add_filter( 'sell_media_thumbnail', 'sell_media_filter_thumbnail_size' ); | |
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
| [tw_contact_form] |
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
| [tw_grid cols="2"]Ut enim ad minim veniam,quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoconsequat. Duis aute irure dolor in reprehenderit in voluptate velit essecillum dolore eu fugiat nulla pariatur.[/tw_grid][tw_grid cols="2"]Ut enim ad minim veniam,quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoconsequat. Duis aute irure dolor in reprehenderit in voluptate velit essecillum dolore eu fugiat nulla pariatur.[/tw_grid] |
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
| [tw_grid cols="3"]Ut enim ad minim veniam,quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoconsequat. Duis aute irure dolor in reprehenderit in voluptate velit essecillum dolore eu fugiat nulla pariatur.[/tw_grid][tw_grid cols="3"]Ut enim ad minim veniam,quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoconsequat. Duis aute irure dolor in reprehenderit in voluptate velit essecillum dolore eu fugiat nulla pariatur.[/tw_grid][tw_grid cols="3"]Ut enim ad minim veniam,quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoconsequat. Duis aute irure dolor in reprehenderit in voluptate velit essecillum dolore eu fugiat nulla pariatur.[/tw_grid] |
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
| [tw_grid cols="4"]Ut enim ad minim veniam,quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoconsequat. Duis aute irure dolor in reprehenderit in voluptate velit essecillum dolore eu fugiat nulla pariatur.[/tw_grid][tw_grid cols="4"]Ut enim ad minim veniam,quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoconsequat. Duis aute irure dolor in reprehenderit in voluptate velit essecillum dolore eu fugiat nulla pariatur.[/tw_grid][tw_grid cols="4"]Ut enim ad minim veniam,quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoconsequat. Duis aute irure dolor in reprehenderit in voluptate velit essecillum dolore eu fugiat nulla pariatur.[/tw_grid][tw_grid cols="4"]Ut enim ad minim veniam,quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodoconsequat. Duis aute irure dolor in reprehenderit in voluptate velit essecillum dolore eu fugiat nulla pariatur.[/tw_grid] |
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: Theme.Works Theme Mods | |
| * Plugin URI: http://theme.works | |
| * Description: Adds your custom filters to an Theme.Works theme. | |
| * Version: 1.0.0 | |
| * Author: Thad Allender | |
| * Author URI: http://theme.works | |
| * Author Email: info@theme.works |
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 more classes to main images appearing on single entries in Sell Media. | |
| * Change 'lightbox' below to whatever classes you want to add. | |
| */ | |
| function sell_media_filter_single_image_class( $classes ) { | |
| if ( is_singular( 'sell_media_item' ) ) { | |
| $classes[] = 'lightbox'; |