Klick Design
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Remove Page Title Echo?Do you know which template the title is called from?
Will be somthing like<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header> <h1><?php the_title(); ?></h1> </header>
Forum: Themes and Templates
In reply to: [Tiga] How to display excerpts instead of whole post[If you have a solution, please post it here. These forums are not intended to be used as a way of driving traffic to your own site.]
Forum: Fixing WordPress
In reply to: Facebook fetched vs. canonical url for homepageHi Jason,
I am not 100% sure, but at a guess it could bemeta property="og:url" content="https://jasongood.net/365/2013/03/nap-guilt/"
i think that og:url basically tells FB scraper “ignore anything on this page, and scrape this url instead”
I dont know how you set up you like button I have simply used an iframe and a text widget, it is really easy to do so worth a try, instructions here Good Luck.Forum: Themes and Templates
In reply to: [Spun] Favicon : how can I change it ?Can you not just create a child functions.php and add
function favicon_link() { echo '<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />' . "\n"; } add_action( 'wp_head', 'favicon_link' );
Then put the favicon in your root folder.
Forum: Themes and Templates
In reply to: I seem to have erased cssYour css stylesheet is in wp-content/themes/twentytwelve/style.css
I do not think that you need to delete your site, what has changed?
Has it always been full width with no side bars, has the font color or menu changed?Forum: Themes and Templates
In reply to: [Spun] Favicon : how can I change it ?does it not tell you where it is is the source code of the page?
Forum: Themes and Templates
In reply to: I seem to have erased cssHi Andrew, I link to that page from my article as well ??
Forum: Themes and Templates
In reply to: I seem to have erased cssIf you want to start creating your own version of twenty twelve I have written a small article here on the staring point.
creating a child theme in twenty twelve
I do not think that you have erased all the coding/css on your theme it just looks like you have set full page as the template?Forum: Themes and Templates
In reply to: Cannot locate new installed themesI would either try checking with ssh chown username and chgrp grouppermissions.
Or revert to a backup which sometimes with server issues can be a savior.
Good luck.
Forum: Themes and Templates
In reply to: Nav-Menu Bar | Changing background color, font and font colorLook at superfish.css in GSO/wp-content/themes/quiven/lib/styles/
I think that that might be where?Forum: Themes and Templates
In reply to: Cannot locate new installed themesI am not totally sure Your issue is clear, but I think you mean wordpress works and is fine, but you cannot see the theme or plugins in wp-content, if that is the case then you need to look at your user permissions for the folders and files on the server.
Sorry if I have misunderstood the issue!