Owen
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] WP 3.6 and Customizr: Experience? All OK?No probs here. Just installed Customizr on WP 3.6 and it’s working perfectly.
Forum: Hacks
In reply to: How to make favicon show on register/login page?Yes. Thats what I suggested above
Forum: Hacks
In reply to: How to make favicon show on register/login page?I suppose so. It might be able to be made into a plugin though or you could use child theme.
Forum: Hacks
In reply to: How to make favicon show on register/login page?At the bottom of functions.php
Forum: Reviews
In reply to: [bbPress] The perfect forum software.Thanks! That worked perfectly. Will change my review now??
Forum: Reviews
In reply to: [bbPress] The perfect forum software.Hi,
When I go to https://www.owensinclairjones.co.uk/forums nothing showsAre you sure you blocked him viewing the site? Not just from logging in?
Because I was thinking make it a bit like the facebook like button but with the WordPress.com logo perhaps.
Where should I enter the feedback, here?
ok then. Just wondered as my users may be confused if they have to sign into a wordpress.com account to like one of my posts/pages. Thanks anyway!
I mean how do I customise the text. Is that possible?
Forum: Reviews
In reply to: [All In One Favicon] Works OKI don’t think All In One Favicon (by defualt) make it show on the Register/Log out page. to make it show there enter this into your themes functions.php
function favicon4admin() { echo '<link rel="Icon" type="image/x-icon" href="https://yoursite.com/favicon.ico" /> <link rel="Shortcut Icon" type="image/x-icon" href="https://yoursite.com/favicon.ico" />'; } add_action( 'login_head', 'favicon4admin' );
obviously changing ‘https://yoursite.com/favicon.ico’ to the favicon and site that fits it.
Forum: Hacks
In reply to: How to make favicon show on register/login page?found a suloution!
function favicon4admin() { echo '<link rel="Icon" type="image/x-icon" href="https://www.owensinclairjones.co.uk/wp-content/uploads/2013/07/favicon5.ico" /> <link rel="Shortcut Icon" type="image/x-icon" href="https://www.owensinclairjones.co.uk/wp-content/uploads/2013/07/favicon5.ico" />'; } add_action( 'login_head', 'favicon4admin' ); add_action( 'admin_head', 'favicon4admin' );
Forum: Fixing WordPress
In reply to: Old favicon showing on registration pageFound a suloution!#
function favicon4admin() { echo '<link rel="Icon" type="image/x-icon" href="https://www.owensinclairjones.co.uk/wp-content/uploads/2013/07/favicon5.ico" /> <link rel="Shortcut Icon" type="image/x-icon" href="https://www.owensinclairjones.co.uk/wp-content/uploads/2013/07/favicon5.ico" />'; } add_action( 'login_head', 'favicon4admin' ); add_action( 'admin_head', 'favicon4admin' );
Forum: Fixing WordPress
In reply to: Old favicon showing on registration pagenow I know why. I checked it on chrome and it worked, however on IE it didn’t, probably because it’s an older browser so how do I make it show on older browsers?