I am using the “Unstandard” theme by 5ThirtyOne for my WordPress site. I pretty much love everything about it, except for the following:
The search results page looks pretty weird. When I type something into the search field and hit enter my layout changes. The header is shifted downwards and my custom background graphic disappears completely.
Does someone have an idea why?
My website is www.joshua-salewski.com/wpress_314_engl/about
If you use the search on that page you can see what my issue is.
Kind regards
Josh
My problem is that if I put the same url for custom fields for lead_image and secondary_image. Then the Lead will show but the secondary_image won’t.
Then if I use DIFFERENT urls for the fields then both will showup.
If anyone has any ideas I’ll be eternally greatful.
The site is faucetnthings.com/rohin
The theme can be downloaded from here if you need to see the code.
https://5thirtyone.com/downloads/wordpress/theunstandard.zip
The website is currently looking like this: https://graffitiforever.tk
Any help appreciated.
(also I would like to remove the categories at the bottom of the page, but this is no widget so idk what to do)
EDIT: Maybe this post should have been posted in the plugins-direcotry. Sorry.
EDIT2: I now manually edited the picture (in photoshop) in the cache, and overwrote it with my FTP client. But this, this I do not wish to do after every post…
]]>I’m currently using the Unstandard theme, and trying to display a list of subposts whenever someone clicks on a main category link on the left.
The theme I’m using displays posts in a category in the following manner.
Click here
But for the category called ‘Doffo-Notes’ I need to display the sub-categories in a similar fashion as well.
I have tried using <?php wp_list_categories('child_of=7'); ?>
but it will just list one sub-category when there are 3. You can see the effect here.
Click here
Here’s the block of code in the category template file I’m using that I think is used to display the posts shown in the first link I mentioned above.
`<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post single fix” id=”post-<?php the_ID(); ?>”>
<div id=”post-<?php the_ID(); ?>” class=”main-post-bg-a showhero”>
<?php $img_src = get_post_meta($post->ID, ‘lead_image’, true); ?>
<img src=”<?php bloginfo(‘template_directory’); ?>/scripts/timthumb.php?src=<?php echo $img_src; ?>&w=700&h=0&zc=1″ width=”700″ height=”0″ />
<div class=”title-insert”>
<h2></h2>
</div>
</div>`
Please HELP as need to get this done urgently.
Thanks in advance