Mark Shirley
Forum Replies Created
-
Did you find an answer to this astrachan
Forum: Fixing WordPress
In reply to: HomepageYouve a mission image so you need to upload a new image or reconnect a new image
Forum: Fixing WordPress
In reply to: ACF – Advanced Custom Field – How to display?here’s a unordered list with alsorts in it…
` <ul>
<li><h5>Price</h5> £<?php echo get_post_meta($post->ID, ‘price’, true); ?></li>
<li><h5>Product Code</h5> <?php echo get_post_meta($post->ID, ‘product_code’, true); ?></li>
<li><h5>Dimensions</h5> <?php echo get_post_meta($post->ID, ‘dimensions’, true); ?></li>
<li><h5>image</h5> <?php echo get_post_meta($post->ID, ‘image’, true); ?></li>
<li><?php echo apply_filters(‘the_content’, get_post_meta($post->ID, ‘add-to-cart’, true)); ?></li></ul>`
Forum: Fixing WordPress
In reply to: Original image always shows, even when changedAs above just clear your browsers cache
Forum: Fixing WordPress
In reply to: target a post with cssThanks alchymyth that done it ??
Forum: Fixing WordPress
In reply to: target a post with cssIm trying to apply these 3 pieces off css to to posts generally but not the “blog page” or my latest news page.
.one-column #page { background-color: white; } #access { display: none; } .footer-1 { display: none; }
Forum: Fixing WordPress
In reply to: target a post with cssThanks alchymyth i need to style all the posts not a specific post anything I try effects the blog page or the site as a whole.
PS not the blog page but the posts ??
Forum: Themes and Templates
In reply to: Twenty twelve font lighterThanks esmi that was the option I was going to take. Ive reversed out site “black” with white type and the font twenty twelve uses for a normal “white” background is fine but its to bold on a black background.
Forum: Themes and Templates
In reply to: Twenty twelve font lighterHi esmi im using a child im trying css to lighten the main body copy but cant do it I’ve tried “light lighter 100 200” nothing seems to make it lighter.
Forum: Plugins
In reply to: [Imsanity] Doesnt work with twentytwelve child themeit does sorry
Forum: Reviews
In reply to: [Imsanity] Twenty TwelveSorry it does
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] ACF Picker PluginCOPY archive.php and rename to taxonomy,php
changeget_template_part( 'content', get_post_format() ); get_template_part( 'content', get_post_type() );
Forum: Plugins
In reply to: [Query Multiple Taxonomies] select post type rather than blog archivecopy archive.php rename to taxonomy.php
change
get_template_part( 'content', get_post_format() );
get_template_part( 'content', get_post_type() );
Forum: Fixing WordPress
In reply to: Twenty twelve – Add custom fields to a custom post typeRESOLVED – I should have been copying content-page.php and makihg it content-movies.php
Forum: Plugins
In reply to: [Query Multiple Taxonomies] The results page templateIve done it as reals but added to his instructions
copy archive.php and rename as reals instructions
change this line
get_template_part( ‘content’, get_post_format() );to get_template_part( ‘content’, get_post_type() );