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
<div class="product-thumbnail-container clr"> | |
<div class="product-thumbnail-wrap"> | |
<img data-big="<?php echo $url ?>" title="<?php the_field('colour'); ?>" tray="A.1.C" class="product-thumb product-thumb-active" src="<?php the_field('featured_image_a_thumbnail'); ?>" /> | |
<div class="product-thumbnail-name"><?php the_field('colour'); ?></div> | |
</div> | |
<?php if(get_field('featured_image_b')) { ?> | |
<div class="product-thumbnail-wrap"> | |
<img data-big="<?php the_field('featured_image_b'); ?>" tray="B.1.B" title="<?php the_field('featured_image_b_thumbnail_name'); ?>" class="product-thumb" src="<?php the_field('featured_image_b_thumbnail'); ?>" /> | |
<div class="product-thumbnail-name"><?php the_field('featured_image_b_thumbnail_name'); ?></div> |
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
// ==UserScript== | |
// @name Tag list | |
// @namespace http://stackapps.com/questions/4207/burninator-toolkit | |
// @author Will Sullivan (Will) | |
// @developer David Bingham (Mogsdad) | |
// @version 1.2.6 | |
// @grant none | |
// @description Adds an expandable list containing a link to every question on the current tag page. Useful when you want to open many questions with the same tag at the same time. | |
// @include /^https?://(meta\.)?(stackoverflow|stackexchange|serverfault|superuser|askubuntu|stackapps)\.com/(questions/(new|popular|need-answers)|search).*/ | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name Stack Overflow CV Request Generator | |
// @namespace http://your.homepage/ | |
// @version 0.1 | |
// @description This script generates formatted close vote requests and sends them to a specified chat room | |
// @author @TinyGiant | |
// @match http://*.stackoverflow.com/questions/* | |
// @grant GM_xmlhttpRequest | |
// ==/UserScript== |