Category: Other Internet Hosted Applications

  • Allow html in user description

    The WordPress user bio only allows a very restricted set html. Occasionally, it is desirable to be able to format the WordPress user bio with additional html.  Out of the box that is not possible. However to allow additional html in the WordPress user bio, like I have with some <p> and <br> to break…

  • Coding jQuery safely in WordPress

    I keep forgetting the syntax so this is just to remind me. In WordPress you want to ensure you don’t get conflicts with jQuery so there is a safe way to code it jQuery(function( $ ) { // Your code using failsafe $ alias here… }); And if you want it when the DOM is…

  • RightMove BLM file import to WordPress

    Rightmove BLM file converter Plugin is now available to download We are pleased to say, that the plugin is now available to purchase. It is listed at https://fullworks.net/products/rightmove-blm-to-xml-converter/ I do hope you will find this very useful. Go to plugin page   Plugin for  Right Move BLM file imports to WordPress Right Move is a property…

  • CSS styled slider buttons, with CSS triangles

    You can style slider buttons using css.   A simple clean style is arrows with a square box ( or a circle ). An example is like this  The code is like this <a href=”#”><div class=’arrow-wrap left’> </div></a> <a href=”#”><div class=’arrow-wrap right’> </div></a> Which sets up the links and a div per link then the css…

  • Widget to display post data

    Sometimes it is necessary to write widget that will display post data for an associated single post or page. Lets say a map associated with some custom fields on a post. This snippet should help, this is an example and just part of the widget code, see http://codex.wordpress.org/Widgets_API on the full Widget experience /** * Front-end…

  • Adding a third menu to Genesis

    Genesis comes with two menus as standard in its configuration.  Additional menus are often added using custom menu widgets into sidebars, often the ‘Header Right’ sidebar. However sometime it is desirable to add an extra menu (or more) into the template. This is fairly simple to achieve using a combination of WordPress standard functions and…