David 9
Forum Replies Created
-
Hi Ben,
Sorry totally forgot to get back to you, turns out I just needed to flush the cache on my site and I got it working fine. You can mark it as resolved.
Thanks
Forum: Plugins
In reply to: [Easy Footnotes] Ipad glitchGreat job, really appreciate the fix!
Forum: Plugins
In reply to: [Easy Footnotes] Ipad glitchYes, it’s an annoying problem because a lot of people will be reading on ipads and iphones.
Waiting for the plugin author to maybe offer a way around this.
Forum: Themes and Templates
In reply to: [Klean] WIdget issue discoveredNo problem. Thanks!
Forum: Themes and Templates
In reply to: [Klean] Klean child theme available?hmmm, style sheet is actually not working with the code I posted initially.
Forum: Themes and Templates
In reply to: [Klean] Klean child theme available?Ok figured it out – all good now. It was my functions.php which was incorrect.
It should have been only:<?php /** * Enqueues child theme stylesheet, loading first the parent theme stylesheet. */ add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); }Forum: Themes and Templates
In reply to: [Klean] Klean child theme available?Ok, I eliminated the @import line in the style.css. The widget area and header image where easy to resolve as you said by just redoing them. The one big difference I’m still noticing is the font – in the klean theme the font is ‘Source Sans Serif’ however, in the child theme it is ‘sans-serif’. On the homepage the header title only shows at 16px.
You should be able to replicate this with a child theme. Any ideas what would cause a font change?
Forum: Themes and Templates
In reply to: [Klean] Issue with homepage's recent posts in safariIt’s in Safari version 8.0.3 and I’m running Yosemite operating system on a mac.
Forum: Themes and Templates
In reply to: [Klean] Pages layoutI’m not sure if this will affect your other pages but put this in your CSS and see what happens. Let me know if it works
body:not(.home):not(.front-page) .site-branding { width: 25%; top: 20%; position: absolute; }Forum: Themes and Templates
In reply to: [Klean] Featured images layout breaking on homepageYes that did it. For anyone else with this issue, install the plugin, go to tools and into the regenerate thumbnails section, do the regeneration and it should look fine.
Forum: Plugins
In reply to: [Ultimate Coming Soon Page] Google Analytics IssueResolved:
It turns out the browser add-on Ghostery prevented the google analytics platform from displaying any data. Everything is working as normal viewing it in Chrome.
Google analytics still informs me that tracking is not installed…but it is displaying and showing me the live count. So it is working.
Forum: Requests and Feedback
In reply to: Author archive revealing username should be fixedYes, you are correct, I found an article on WP Tavern explaining why this is wordpress’ official position. For anyone else following the conversation this article has a good discussion at the end of it.
http://wptavern.com/why-showing-the-wordpress-username-is-not-a-security-risk
The Nickname option purpose seems not to be to hide the username, but rather to display the user’s name in a more ascetically pleasing way.
However, I think I will be including a warning to people who sign up as authors on my site to make sure their usernames are not anything embarrassing as they can still be publicly seen.Thanks for the help esmi and bearing with me!
Forum: Requests and Feedback
In reply to: Author archive revealing username should be fixedIs the official position of wordpress that it is best practice to display usernames publicly on a website?
I don’t think so – why would they have created the Nickname option if it was? The same reason they used to insert the Nickname as a feature has to be carried on to it’s logical conclusion and usernames prevented from appearing in the author archive url. So that’s why I’m asking that it be a feature request.
If they don’t do anything about it, then it’s up to the developers of themes to easily code for in their functions.php file.
Forum: Requests and Feedback
In reply to: Author archive revealing username should be fixedThanks for the link to the plugin esmi. It seems that this problem can also be corrected in a theme’s functions.php file, though I’ve yet to try the code below.
http://www.osmialowski.co.uk/change-author-archive-url-in-wordpress/
Do you think that it is ‘best practice’ to openly display usernames on a website? I thought the reason that wordpress introduced the Nickname option was for the very reason to keep usernames off the website. It seems that some theme builders are not taking advantage of this – it should be a requirement in my opinion.
Forum: Requests and Feedback
In reply to: Author archive revealing username should be fixedOr is this actually a fault in some themes displaying the username rather than the Nickname in the URL?