Joke De Winter
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Stone] Footer Menu Has Extra Bullet PointsHi Joe,
I can’t help you with that I am afraid. The theme you are using is not the Stone theme I made, but a different one. I think it’s this one: https://wordpress.org/themes/skt-stone-lite/
You can leave comments to the author here: https://wordpress.org/themes/skt-stone-lite/
All the best,
Joke
Forum: Themes and Templates
In reply to: [Stone] Header image not centredHi Jon,
I have absolutely no idea why it works like that and not with a background colour (it’s been a while since I build that theme). I would need to investigate, but I don’t have the capacity for that now.
The not scaling is correct. Again, I could fix that, but not anytime soon I am afraid.
Joke
Forum: Themes and Templates
In reply to: [Stone] Header image not centredHi Jon,
To change the background colour go to Appearance / Customise / Colours. There are three options there: Site Title Colour, Background Colour and Link Colour.
Change Background colour to #ffffff (white).
Not sure if that will make a difference, but it’s worth a try.
Joke
Forum: Themes and Templates
In reply to: [Stone] Header image not centredHi Jon,
Strange.
I have uploaded a new image on the test site and it looks exactly like the cropped area. http://www.jokedewinter.co.uk/themes/stone/Have you tried removing the background colour option?
Joke
Forum: Themes and Templates
In reply to: [Stone] Header image not centredHi Jon,
How are you adding the header image?
I have tried replacing the image by going to Appearances/Customise/Header Image. When I add a new image I get a screen where I can choose the crop position for the image. That way you can make sure the part you want to see is inside the crop area.
Joke
Forum: Themes and Templates
In reply to: [Stone] Removing the page title on all pagesHi Justin (I think),
The page title is added via a function. It is located in
inc/template-tags.php. Scroll down to the function calledstone_post_header(). At the bottom of that function is a line that saysstone_post_title();, replace this with//stone_post_title();This will remove all the page titles of all the pages. But I would be careful about doing this because page titles can be useful.
Joke
Forum: Themes and Templates
In reply to: [Stone] Removing the Mobile Search Bar?Hi Matt,
Looks like you are using this theme on WordPress.com. I think that blue search bar is the standard search bar WordPress.com gives you on mobile. On a hosted version of this theme (WordPress.org) it shouldn’t be there because it’s a responsive theme.
Joke
Forum: Themes and Templates
In reply to: [Stone] Sidebar Menu for this Theme?Hi Suggs,
Probably, if you’re good with CSS. You’re welcome to amend the code as you please.
Joke
Forum: Themes and Templates
In reply to: [Stone] Sidebar Menu for this Theme?Hi Suggs,
yes it does. I don’t mind that.
Joke
Forum: Themes and Templates
In reply to: [Stone] Sidebar Menu for this Theme?Hi Suggsda,
Sorry for the late reply, but I was on holiday.
This theme doesn’t have a sidebar. I intentionally designed it like that.
As for the menu at the top, you can add extra pages to the menu in the admin via Appearances/Menus. Select the menu you have created for the top navigation and add more pages. Save the menu and you’re sorted.
Joke
Forum: Plugins
In reply to: [Recipes by Simmer] Exporting simmer postsHi Lara,
That sounds wonderful (although a little strange because the regular export in WordPress produces an XML file).
Anywat how? I have searched the plugin options and can’t find a reference to a JSON export. Also looked in your simmer support section and codex – nothing about JSON as far as I can tell.
Forum: Fixing WordPress
In reply to: Weird admin behaviour in the dashboard columnOh wonderful. So it’s not something I have done. That’s a relief. 🙂
Thanks for letting me know.
Forum: Fixing WordPress
In reply to: Adding a meta box on the fly?Thank you, the plugin looks very nice, but it doesn’t allow to have custom meta boxes added on the fly inside a page or custom post type – which is ultimately what I am looking for.
I am not looking for a plugin to add custom meta boxes, it’s not that hard to do yourself.
Forum: Fixing WordPress
In reply to: Display archive by month and then post-by-post?I found a solution myself. Based on this thread: http://wordpress.org/support/topic/291728?replies=10.
Here is my solution:
<?php // Variables $month, $prevmonth, $year and $prevyear are used to section the archive display ?> <?php $month = ''; $prevmonth = ''; $year = ''; $prevyear = ''; ?> <?php // Cycle through all the posts to display the archive ?> <?php query_posts('showposts=-1'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php // Find the month/year of the current post ?> <?php $year = mysql2date('Y', $post->post_date); ?> <?php $month = mysql2date('F', $post->post_date); ?> <?php // Compare the current month with the $prevmonth ?> <?php if ($month != $prevmonth) { ?> <?php // If it is different, display the new month and reset $prevmonth ?> <h4><?php echo $month . ' ' . $year; ?></h4> <?php $prevmonth = $month; ?> <?php // In case the previous post was a year ago in the same month ?> <?php } elseif ($year != $prevyear) { ?> <h4><?php echo $month . ' ' . $year; ?></h4> <?php $prevmonth = $month; ?> <?php $prevyear = $year; ?> <?php } ?> <?php // Display the post in this month ?> <p><a href="<?php the_permalink(); ?>"><?php echo mysql2date('d.m.y', $post->post_date); ?> - <?php the_title(); ?></a></p> <?php endwhile; endif; ?>Forum: Fixing WordPress
In reply to: Gallery images link to attachment_id instead of image url…http://codex.wordpress.org/Using_the_gallery_shortcode
This is the page link, which it didn’t include in the previous post.