Trevsweb
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] changing the display of the listmanaged to find the feed options which I overlooked as I had many feeds and thought there would be something hard coded I could edit π
Forum: Plugins
In reply to: [Media Library Assistant] [Feature Request] PDF ThumbnailJust testing the MLA Gallery out. it works excellently π
Many thanks for adding this.Forum: Plugins
In reply to: [Media Library Assistant] [Feature Request] PDF ThumbnailExcellent I will test this out tomorrow. Thank you for putting your time and effort into this great plugin
Forum: Plugins
In reply to: [Media Library Assistant] [Feature Request] PDF Thumbnailhttps://forrst.com/posts/PDF_thumbnails_with_Google_Docs-6G6
This is where I got the original code from. I have done a search and cannot find how or where he got the information to do the width or linking parameters which is a little annoying. I will post if I find something.
Thanks for getting back to me.
Forum: Plugins
In reply to: [Media Library Assistant] [Feature Request] PDF ThumbnailI read your post. To be honest, I thought you might not reply until you got back. Safe travels.
Forum: Plugins
In reply to: [Media Features] Suggestion – batch categorizationThat would be a very welcome addition. Please keep us posted!
Forum: Themes and Templates
In reply to: WP Query problemshould be a string of 120 or 119 depending on what page it is
just studied the codex (god i love that) think ive found the solution
replaced the meta query variables for the meta query'meta_query' => array(array('key' => 'grissue','value' => $grissueno ))hope its solves the problem
Forum: Themes and Templates
In reply to: simple form post problemI’m getting the same issue. with using a custom template/ page.
works fine when I don’t use anything within the form (error works fine)
but when theres something within the form it 404s πwill follow your guidance with the site root but need to now work out how to theme a root file :/
sorry for mega bump
Forum: Fixing WordPress
In reply to: retrieving a custom field value on pagesfound it after a bizaree search
<?php $key="MYKEY"; echo get_post_meta($post->ID, $key, true); ?>Forum: Fixing WordPress
In reply to: Grouping and listing tagsRight heres my code
thanks to design_dolphin on topic http://wordpress.org/support/topic/275903?replies=7<?php $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); $tt = $term->taxonomy . '=' . $term->slug; global $post; $query = 'numberposts=-1&' . $tt . '&orderby=date&order=DESC'; $myposts = get_posts(); foreach($myposts as $post) { $year = get_the_time('Y'); $title= $title= the_title('','',0); $groeps[] = $year; } $groeps = array_values(array_unique($groeps)); $qi = $groeps[0]; // change this number (e.g. to 1) to change the year. $query = 'posts_per_page=-1&' . $tt . '&year=' . $qi . '&category_name=Review&orderby=date&order=DESC'; query_posts($query); while (have_posts()) : the_post(); ?><?php $myissue = get_post_meta($post->ID, issue, true); ?> <?php $myissue = $myissue . ' '; ?> <?php the_date('F Y','<h3>Issue: ' .$myissue ,'</h3>'); ?> <div><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></div> <?php endwhile; ?>my alterations have been adding the magazine issue number to the date and only showing certain catagory name “review”
hope that helps someoneForum: Fixing WordPress
In reply to: Grouping and listing tagsright think ive found a way
worked out how to get a single catgory up in a page
<?php $query = new WP_Query('category_name=Review'); ?> <?php while ($query->have_posts()) : $query->the_post(); ?> post info <?php endwhile; ?>now working out how to list an archive like sidebar on the page
worked out the coding just hive to find the snippits.
egcatagory sort (as above) for "Review" loop meta get for issue number : post month loop post tile with permilink endloop endloopwoop nearly there bad plugin has forced me to reinstall
Forum: Fixing WordPress
In reply to: Grouping and listing tagsjust a quick addition.
i guess i could use and modify the archive page
something like this would be great
http://franklinbishop.net/archives/ but with the issue number somehow….i can always fake the date by modifying the dates within the posts.
however! i will have a news catagory so i need to omit those posts somehow…