webcraftuk
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Post Type UI] Remove timestamp and author on custom postsMy editor screen for a custom post does not show anywhere to add terms, it only allows me to add the post to one of the taxonomies I have created.
I am tearing my hair out with this. Is there any way I can get categories and tags to show with my custom posts, as I know how to use them.
Forum: Plugins
In reply to: [Custom Post Type UI] Remove timestamp and author on custom postsI’ve been reading up about terms but I don’t understand how terms are added to a taxonomy – the plugin does not seem to offer this function in any of its screens.
Do I have to add the terms to a taxonomy manually, and how do I add them to custom posts?
Forum: Plugins
In reply to: [Custom Post Type UI] Remove timestamp and author on custom postsOK, now I am stuck again. I don’t understand how taxonomies work and how you query/display them.
I assumed that they were a way of sorting custom posts in the same way categories work for normal post types, and that I could display all custom posts in a particular taxonomy in the same way I could display all posts in a particular category.
For example – I have a taxonomy ‘Sleeps up to 8’ which is attached to Post Type – Boats
What URL (if any) will display only Boats in the Sleeps up to 8 taxonomy?
(There’s a wee PayPal donation coming your way if I can eventually get my head round this, as it is a feature of WordPress I have been struggling with for a while now that could prove very useful)
Forum: Plugins
In reply to: [Custom Post Type UI] Remove timestamp and author on custom postsThank you so much Michael.
This seems to be working perfectly.
Forum: Plugins
In reply to: [Custom Post Type UI] Remove timestamp and author on custom postsNO, sorry, now I am hopelessly confused.
Could you please do me an idiots guide as a simple list of steps I need to take ?
Forum: Plugins
In reply to: [Custom Post Type UI] Remove timestamp and author on custom postsOK, I think I understand the general thrust of your reply, but not entirely . . . sorry to be a bit dense.
Two things:
a) I cannot see the author stamp and timestamp in either of these files in my theme (see code below)
b) How do I ensure that the post type loads the dedicated template file? Surely just creating the newly named files will not be enough?
file: archive-boat.php :
<?php get_header(); ?> <?php // Get Theme Options from Database $theme_options = airballoon_theme_options(); ?> <div id="wrap" class="clearfix"> <section id="content" class="primary" role="main"> <h2 id="date-title" class="archive-title"> <?php // Display Archive Title if ( is_date() ) : printf( __( 'Monthly Archives: %s', 'airballoon-lite' ), '<span>' . get_the_date( _x( 'F Y', 'date format of monthly archives', 'airballoon-lite' ) ) . '</span>' ); else : _e( 'Archives', 'airballoon-lite' ); endif; ?> </h2> <?php if (have_posts()) : while (have_posts()) : the_post(); get_template_part( 'content', $theme_options['posts_length'] ); endwhile; airballoon_display_pagination(); endif; ?> </section> <?php get_sidebar(); ?> </div> <?php get_footer(); ?>file single-boat.php:
<?php get_header(); ?> <div id="wrap" class="clearfix"> <section id="content" class="primary" role="main"> <?php if (have_posts()) : while (have_posts()) : the_post(); get_template_part( 'content', 'single' ); endwhile; endif; ?> <?php comments_template(); ?> </section> <?php get_sidebar(); ?> </div> <?php get_footer(); ?>Thanks for your help with this, much appreciated.
Forum: Themes and Templates
In reply to: [Jehanne] Документация к теме JehanneDear cats_456
I am trying to change the blue default colour scheme for Jehanne to use a green colour. The theme is writing the style dynamically into the <head> section and I can’t find any way to override it by editing style.css or using custom css
Please help, as otherwise the theme is perfect for what I want.
Forum: Fixing WordPress
In reply to: Make custom searchable databaseThanks very much for your reply, that looks useful.
Forum: Plugins
In reply to: [Lightbox Plus Colorbox] Blinking Close ButtonAh! (lightbulb)!
I was looking in the wrong place for the helper.js file.
(And I was using Fancypants).
Found it now and the fix has worked. Thanks very much for this.
Forum: Plugins
In reply to: [Lightbox Plus Colorbox] Blinking Close ButtonHi
I also have this problem on a site I am putting together but do not understand the fix – I cannot find a helper.js file anywhere.