[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$ffuw9fGHZdODbCggMXRT--9qhxtdV5ud4UPOrSGlwXdI":3},{"slug":4,"display_name":5,"profile_url":6,"plugin_count":7,"total_installs":8,"avg_security_score":9,"avg_patch_time_days":10,"trust_score":9,"computed_at":11,"plugins":12},"seanbarton","Sean Barton","https:\u002F\u002Fprofiles.wordpress.org\u002Fseanbarton\u002F",4,360,80,30,"2026-08-29T07:01:59.972Z",[13,37,58,75],{"slug":14,"name":15,"version":16,"author":5,"author_profile":6,"description":17,"short_description":18,"active_installs":19,"downloaded":20,"rating":21,"num_ratings":22,"last_updated":23,"tested_up_to":24,"requires_at_least":25,"requires_php":24,"tags":26,"homepage":31,"download_link":32,"security_score":33,"vuln_count":34,"unpatched_count":34,"last_vuln_date":35,"fetched_at":36},"test-gateway-for-woocommerce","Test Payment Module for Woocommerce","1.5","\u003Cp>Adds a test payment gateway to WooCommerce. By default it is available only to logged in administrators or when WP_DEBUG is enabled. However, there is a setting which enables the gateway for everyone to use. This is especially useful where you want customers to enter their address info etc but for no money to change hands. Similar to the COD or BACS gateways except this will set their order as paid instead of pending. If you enable this and then look inside your available payment processors for WooCommerce you will see the basic settings for the plugin.\u003C\u002Fp>\n\u003Cp>This can be safely used in the live environment for telephone\u002Femail orders etc as outside of the settings to enable for certain groups, only an administrator can see the gateway. I’ve been using it for testing conversion code from a variety of different affiliate systems.\u003C\u002Fp>\n\u003Cp>Also when WP_DEBUG is set to true in your wp-config.php file this will show for everyone. Very useful when testing the user journey for new builds or in situations where payment is not needed\u003C\u002Fp>\n","A payment gateway plugin for Woocommerce to handle test or paymentless transactions. Shows for admin only by default, everyone in WP_DEBUG or using a  &hellip;",300,9947,100,9,"2015-08-11T11:25:00.000Z","","4.0",[27,28,29,30],"payment-gateway","paymentless-gateway","test-gateway","woocommerce","http:\u002F\u002Fwww.tortoise-it.co.uk","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ftest-gateway-for-woocommerce.zip",85,0,null,"2026-07-22T17:31:50.256Z",{"slug":38,"name":39,"version":40,"author":5,"author_profile":6,"description":41,"short_description":42,"active_installs":43,"downloaded":44,"rating":21,"num_ratings":45,"last_updated":46,"tested_up_to":47,"requires_at_least":48,"requires_php":24,"tags":49,"homepage":54,"download_link":55,"security_score":56,"vuln_count":45,"unpatched_count":45,"last_vuln_date":57,"fetched_at":36},"sb-uploader","SB Uploader","4.8","\u003Cp>I originally wrote this for a client as a way to get company logos to appear inside WordPress posts… easy you say huh? What about if we were dealing with people who had no idea what to do when looking at the standard WordPress ‘Add Media’ or ‘Add Image’ page. It all seemed a bit too complicated for the average person so SB Uploader was born.\u003C\u002Fp>\n\u003Cp>The idea of the plugin is that it means the act of uploading an image can be done on the same page as the Post\u002FPage editor and there is no separate upload button, just the Save\u002FPublish Post\u002FPage button as normal. This ensures that as part of their blog post or copywriting process an image could be chosen before publishing.\u003C\u002Fp>\n\u003Cp>This plugin lets you add as many images as you like to any WordPress object.. be it Posts, Pages, Categories, Tags, Custom Post Types or Custom Taxomonies. It optionally can set the WordPress Featured Image to take advantages of themes that use this feature. It also allows for a fallback image which will be provided in the event that an image was not uploaded. Shortcodes are created for each image so that you can upload images and use the resultant shortcode anywhere in your template\u002Fwidget structure.\u003C\u002Fp>\n\u003Cp>There is a fallback feature with each uploader to allow you to centrally specify the URL of an image to put in place when one is not uploaded to an object. There are always times when you don’t want an image on a specific page so I have added a ‘disable fallback’ option to facilitate this.\u003C\u002Fp>\n\u003Cp>I’m pretty sure that’s all bases covered for now.. Do let me know if you want to see this plugin extended in ANY way.\u003C\u002Fp>\n\u003Ch3>Integration Instructions\u003C\u002Fh3>\n\u003Ch4>How does it work (Posts\u002FPages\u002FCustom Post Types)?\u003C\u002Fh4>\n\u003Cp>A metabox is added to the top right hand corner of the edit page interface with a simple file selector with browse button. When the user hits Publish\u002FSave the file is uploaded and the URL put into an object custom field named per the settings page included with the plugin.\u003C\u002Fp>\n\u003Cp>A lot of themes will make use of the Featured Image and as such this plugin can easily set this with no theme modification necessary. Alternatively if you wish to use them more fully within your theme you can use one of the following pieces of code. Note that these are the function declarations themselves. The usage instructions are below them:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>function sbu_get_the_image($custom_field, $post_id=false, $url_only=false, $width=false, $height=false, $quality=100) {\n    global $sbu;\n\n    return $sbu->get_the_post_image($custom_field, $post_id, $url_only, $width, $height, $quality);\n}\n\nfunction sbu_the_image($custom_field, $post_id=false, $url_only=false, $width=false, $height=false, $quality=100) {\n    echo sbu_get_the_image($custom_field, $post_id, $url_only, $width, $height, $quality);\n}\n\nfunction sbu_get_the_image_resized($custom_field, $width=false, $height=false, $quality=100, $post_id=false) {\n    return sbu_get_the_image($custom_field, $post_id, false, $width, $height, $quality);\n}\n\nfunction sbu_the_image_resized($custom_field, $width=false, $height=false, $quality=100, $post_id=false) {\n    echo sbu_get_the_image_resized($custom_field, $width, $height, $quality, $post_id);\n}\n\nfunction sbu_get_the_category_image($custom_field, $post_id=false) {\n    global $sbu;\n\n    return $sbu->get_taxonomy_image($custom_field, $post_id);\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>The following code to grab images from the core uploader for the Featured Image functionality. This method resizes and saves multiple versions within the system as you would expect from the normal WP uploader but with a simpler, more customer friendly, interface.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php\nfunction sbu_the_wp_image($image_size_name='full', $post_id=false) {\n    global $sbu;\n\n    return $sbu->get_image($image_size_name, $post_id);\n}\n?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>If the above doesn’t make sense then, in basic terms, you just need to put something like this in your theme:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php sbu_the_image('post_image'); ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>or if you wish to resize an image to fit a slot use this:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php sbu_the_image_resized('post_image', 700, 200); ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>This would output the image as 700×200. Both parameters are optional so if you wanted a proportional resize based on 700 pixels in width then use this:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php sbu_the_image_resized('post_image', 700); ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Or the old fashioned direct method of retrieving the image.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>if ($image = get_post_meta(get_the_ID(), 'post_image', true)) {\n $image = '\u003Cimg src=\"' . $image . '\" alt=\"Image\" \u002F>';\n}\necho $image;\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>How does it work (Tags\u002FCategories\u002FTaxonomies)?\u003C\u002Fh4>\n\u003Cp>As above but the file upload boxes are added to the taxonomy edit pages instead. Just click browse, choose an image and save the taxonomy\u002Ftag\u002Fcategory and you’re done.\u003C\u002Fp>\n\u003Cp>I would normally wrap the image variable in a div tag with a class or give the image itself a class so that I can restrict the size or float the image (or both?) using the stylesheet. It simply means that you can include that image inside a template if it exists. Of course you could use the resize function I have provided above to get that perfect sized image on your site.\u003C\u002Fp>\n\u003Ch4>Note\u003C\u002Fh4>\n\u003Cp>I would like to add that there are coffee\u002Fdonation adverts in this plugin. I personally hate it when, on adding a new plugin, dashboard widgets, donate buttons and begging messages appear. This plugin is clutter free and support is always available via my site (best responses here) and the WP forums (slower responses but I will get back to you). Have fun!\u003C\u002Fp>\n\u003Cp>More info at http:\u002F\u002Fwww.sean-barton.co.uk\u002Fsb-uploader\u002F\u003C\u002Fp>\n","An easy, customer\u002Fuser friendly way to upload images and attach them to your content. Optionally sets the featured image. Sometimes you just want to u &hellip;",40,15223,1,"2013-09-17T17:08:00.000Z","3.6.1","3.0",[50,51,38,52,53],"feature-image","resize","timthumb","uploader","http:\u002F\u002Fwww.sean-barton.co.uk","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsb-uploader.zip",63,"2012-12-30 00:00:00",{"slug":59,"name":60,"version":16,"author":5,"author_profile":6,"description":61,"short_description":62,"active_installs":63,"downloaded":64,"rating":34,"num_ratings":34,"last_updated":65,"tested_up_to":66,"requires_at_least":16,"requires_php":24,"tags":67,"homepage":73,"download_link":74,"security_score":33,"vuln_count":34,"unpatched_count":34,"last_vuln_date":35,"fetched_at":36},"goodbye-bar","Goodbye Bar!","\u003Cp>Allows the user to remove the WordPress Admin Bar from their sites.\u003C\u002Fp>\n\u003Cp>The admin bar can be removed entirely or left on for different class of users\u003C\u002Fp>\n\u003Cp>So for example, you may want “admin” to see it but no-one else.\u003C\u002Fp>\n\u003Cp>Operation is simple.\u003C\u002Fp>\n\u003Cp>1 – Just go to the “Settings” tab and select “Goodbye bar”\u003C\u002Fp>\n\u003Cp>2 – You will have a list of checkboxes, now select which users you want to\u003Cbr \u002F>\nsee the admin bar.\u003C\u002Fp>\n\u003Cp>3 – Click “Goodbye Bar!”\u003C\u002Fp>\n\u003Cp>Job done!\u003Cbr \u002F>\nLicense stuff\u003C\u002Fp>\n\u003Cp>Good news! This plugin is FREE for everyone and released under the GPL, so you can use it on your personal or commercial blog. Obviously, you are responsible for how you use it and the plugin comes without warranty.\u003C\u002Fp>\n\u003Cp>No donation request needed either… If you have your own business and fancy reading some cool psychology stuff to help you grow that business, then visit my \u003Ca href=\"http:\u002F\u002Fwww.michaelchriston.com\" rel=\"nofollow ugc\">small business blog\u003C\u002Fa> and that’ll be thanks enough!\u003C\u002Fp>\n\u003Cp>http:\u002F\u002Fwww.michaelchriston.com\u003C\u002Fp>\n","Allows the user to remove the Wordpress Admin Bar from their sites.",10,2938,"2012-09-12T21:40:00.000Z","3.4.2",[68,69,70,71,72],"admin-bar","edit-bar","post","users","wordpress-admin-bar","http:\u002F\u002Fwww.michaelchriston.com","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgoodbye-bar.zip",{"slug":76,"name":77,"version":78,"author":5,"author_profile":6,"description":24,"short_description":79,"active_installs":63,"downloaded":80,"rating":34,"num_ratings":34,"last_updated":81,"tested_up_to":82,"requires_at_least":83,"requires_php":24,"tags":84,"homepage":24,"download_link":86,"security_score":33,"vuln_count":34,"unpatched_count":34,"last_vuln_date":35,"fetched_at":87},"session-manager","Session Manager","2.1","A Plugin to give the administrators some simple page hit stats that aren't at all confusing.",5839,"2009-06-23T08:50:00.000Z","2.8.1","2.3",[76,85],"stats","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsession-manager.zip","2026-04-16T10:56:18.058Z"]