cosmic-emma
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to add Read more link to word count limited postsAlchymyth – thank you it’s working!!!
Forum: Fixing WordPress
In reply to: How to add Read more link to word count limited postsI’m working locally at the moment…
Forum: Fixing WordPress
In reply to: How to add Read more link to word count limited postsAlchymyth – I have added that code to my functions.php and it’s not working ??
Riversatile – it’s the content in my blog I am trying to add the read more link not the excerpt. I did try amending your code to content, but it added it everywhere on my website where there is content. And I only want it on the content within my blog.
Any idea?
It’s not working in IE9 for my website
I’m having the same issue. Only sign up is appearing and not the text that i have entered in. Is there any update n this?
Forum: Fixing WordPress
In reply to: Child page to show same header as Parent pageOkay I got this to work, this maybe the long way of doing things but it does work!
I have this code in the header.php linking to other specific headers:
<?php
$post = $wp_query->post;
if ( is_page(‘page1’) ) {
include(TEMPLATEPATH . ‘/header-1.php’);
}if ( is_page_template(‘one-page.php’) ) {
include(TEMPLATEPATH . ‘/header-1.php’);
if ( is_page(‘page2’) ) {
include(TEMPLATEPATH . ‘/header-2.php’);
}if ( is_page_template(‘two-page.php’) ) {
include(TEMPLATEPATH . ‘/header-2.php’);
}
?>Each section has it’s own page-template which is allowing me to target the child pages with the parent.
If anyone else has a better way please let me know?
Forum: Fixing WordPress
In reply to: Child page to show same header as Parent pageUnfortunately, I’m still not getting anywhere.
Parents have different headers and the child pages need to show their parent’s headers – can someone shed some more light on how to do this?
Forum: Plugins
In reply to: Combining plugins wp-members and e-commerceI’m also looking to utilize this function to create a shopping area only within the membership area.
Is this possible and if so what plug-ins would you recommend?