pushhyarag2000
Forum Replies Created
-
Resolved. Silly mistake in url entry-I had put in an extra [.]. The page is working on my blog.
Hi Arne,
Yes, I can view my sitemap with that link. My question is: can I create a page on my blog to show the sitemap [human readable]? And if yes, how?
Thanks.
Hi,
This is from a code-illiterate blog guy. Blog is Evolve-Forever
I’ve used the plugin and get no errors-just working fine, it looks. But a silly question: I saw on some blog [phew, can’t remember nor can locate that via history] there is a page in the navigation menu which when clicked shows the sitemap [as you show by illustration link on your plugin page. Can I get instructions for doing that anywhere?Forum: Themes and Templates
In reply to: Help fix a few issues hereThanks Nick. I’ll certainly try to implement your advice. Any help on disabling comments on some existing pages?
Forum: Fixing WordPress
In reply to: Read More Link on Index PageThanks again. Since I have no good knowledge of code, I wasn’t sure about the exact location of your code placement on my template. Moreover, I’m not sure if the Arclite theme template code is different. Hence I had to use a plug in which helped me get what I wanted. You may see it at http://www.evolve-forever.com/articles.
Forum: Fixing WordPress
In reply to: Read More Link on Index PageSorry, I’ve placed the code in functions.php; wriongly mentioned index.phpin the reply. :p
Forum: Fixing WordPress
In reply to: Read More Link on Index PageThanks, first.
I tried placing the suggested code in index.php</>. It doesn’t seem to work. In fact as it existed the excerpt ends with the string […]. So I tried putting in the other piece of code suggested under the same forum post ‘Function Reference’. Not successful. Have I placed the code at the right place? The total code after placement appears like this in my index.php</>:
‘ $output .= ‘<div class=”post-content clearfix”>’;
$post_preview = get_arclite_option(‘post_preview’);if($post_preview==’excerpt’) $output .= get_the_excerpt(); else $output .= get_the_content(__(‘Read the rest of this entry »’, ‘arclite’));
function new_excerpt_more($more) {
return ‘[…..]’;
}
add_filter(‘excerpt_more’, ‘new_excerpt_more’);
function new_excerpt_more($more) {
global $post;
return ‘ID) . ‘”>Read the Rest…‘;
}
add_filter(‘excerpt_more’, ‘new_excerpt_more’);
$output .= ‘</div>’;’Does it help to help me further?
Thanks.
Forum: Fixing WordPress
In reply to: Web Page Cannot Be Found?I woke up suddenly to a similar ‘Error 404-page not found’ message and was struggling. Setting Permalinks to Default resolved it. Thanks.