dominicruk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Deleting the "Posted In" text on homepageThanks chinmoy.
I replaced my old text with the new but it doesn’t seem to have done anything at all.
Any other suggestions?
Forum: Fixing WordPress
In reply to: Deleting the "Posted In" text on homepageIs there ANYONE that can help with this please?
Forum: Fixing WordPress
In reply to: Deleting the "Posted In" text on homepageChinmoy, did you manage to take a look at the above?
Forum: Fixing WordPress
In reply to: Deleting the "Posted In" text on homepageBump.
Forum: Fixing WordPress
In reply to: Deleting the "Posted In" text on homepageOk, so now I have the following… What do I do?
if ( ! function_exists( ‘coraline_posted_in’ ) ) :
/**
* Prints HTML with meta information for the current post (category, tags and permalink).
*
* @since Coraline 1.0
*/
function coraline_posted_in() {
// Retrieves tag list of current post, separated by commas.
$tag_list = get_the_tag_list( ”, ‘, ‘ );
if ( $tag_list ) {
$posted_in = __( ‘This entry was posted in %1$s and tagged %2$s. Bookmark the permalink.’, ‘coraline’ );
} elseif ( is_object_in_taxonomy( get_post_type(), ‘category’ ) ) {
$posted_in = __( ‘This entry was posted in %1$s. Bookmark the permalink.’, ‘coraline’ );
} else {
$posted_in = __( ‘Bookmark the permalink.’, ‘coraline’ );
}
// Prints the string, replacing the placeholders.
printf(
$posted_in,
get_the_category_list( ‘, ‘ ),
$tag_list,
get_permalink(),
the_title_attribute( ‘echo=0’ )
);
}
endif;Forum: Fixing WordPress
In reply to: Deleting the "Posted In" text on homepageOr… I have this inside the index.php file…
<div id="content-container"> <div id="content" role="main"> <?php get_template_part( 'loop', 'index' ); ?> </div><!-- #content --> </div><!-- #content-container -->Do you mean delete the ‘loop’ section out of the CSS and it wont appear?
Forum: Fixing WordPress
In reply to: Deleting the "Posted In" text on homepageI have found this inside the “loop.php” file;
<p class="comments-link"><?php comments_popup_link( __( '→ Leave a comment', 'coraline' ), __( '→ 1 Comment', 'coraline' ), __( '→ % Comments', 'coraline' ) ); ?></p> <?php if ( count( get_the_category() ) ) : ?> <p class="cat-links"> <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'coraline' ), 'entry-info-prep entry-info-prep-cat-links', get_the_category_list( ', ' ) ); ?>Can I just delete this out of the file because I dont want the Posted In or the Comments…
Forum: Fixing WordPress
In reply to: Deleting the "Posted In" text on homepageThe theme that I am using is Coraline by Automattic
Forum: Plugins
In reply to: Customer LoginHmm, i agree with what your saying above that the post protection does work but thats not what im looking for at all.
I think it would be a good addition to wordpress to be able to password protect certain pages. unfortunately, i dont have any type of programming background so its not something i would be able to make.
Could you recommend any type of software that could be capable of doing this please?
Thanks,
DomForum: Themes and Templates
In reply to: Default CSS StylingBrill, thanks for the link.
How do i change the hyperlink colours in the ss too?