blazeblaze
Forum Replies Created
-
Forum: Plugins
In reply to: [Theme My Login] Widget ($template->the_action_links)I have the same problem ??
Forum: Plugins
In reply to: [Thumbs Rating] Can it be applied to comments?Hi Ricard, thanks for clarifying that. I’m still on the lookout then, but you have made a great plugin!
Best Regards!
TomForum: Themes and Templates
In reply to: RSS comments feed does not work. How to fix it?Done ??
Thanks esmi and alchymyth,
I will check fo the markup and CSS errors when I finish the blog and eliminate them as much as I can.
The css word wrap did the trick for the unusually long words. Now the comment area displays texts correctly.
Forum: Themes and Templates
In reply to: Cannot change text in the leave comment area Bug? Please help.The code works!
<beer, whiskey, vodka, wine> whatever you prefer ??
ThanksForum: Themes and Templates
In reply to: Cannot change text in the leave comment area Bug? Please help.Hi alchymyth!
Thanks for the link. That’s something I may work with now.
Do you know which code and where should I put it? I am not a php programmer unfortunately. I do everything trial, error, deduct method ??
Forum: Themes and Templates
In reply to: Cannot change text in the leave comment area Bug? Please help.It was a bad idea ?? Submitting comments stopped working. It says that one have to fill in name and email now :O ??
Forum: Themes and Templates
In reply to: Cannot change text in the leave comment area Bug? Please help.I have found a simple solution how to disable using the comment-template.php. Maybe it will be helpful for someone else:
In the lightword comments.php find the line:
<?php if ( function_exists('comment_form') ) { comment_form(array( 'label_submit' => __('Submit','lightword'), (...) )); }else{ ?>
And from the
if ( function_exists('comment_form') )
remove comment_form.Forum: Themes and Templates
In reply to: Cannot change text in the leave comment area Bug? Please help.$req = get_option( 'require_name_email' ); $aria_req = ( $req ? " aria-required='true'" : '' ); $fields = array( 'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) . '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>', 'email' => '<p class="comment-form-email"><label for="email">' . __( 'Email' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) . '<input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /></p>', 'url' => '<p class="comment-form-url"><label for="url">' . __( 'Website' ) . '</label>' . '<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" /></p>', );
I have found this code in the comment-template.php in the wp-includes directory. It seems to contain the code responsible for the fields. However I have no idea how to apply the changes in the texts I have indicated in the picture.
Forum: Themes and Templates
In reply to: Cannot change text in the leave comment area Bug? Please help.The link to the picture is here:
https://img525.imageshack.us/img525/9189/lightwordproblem.jpg
Forum: Themes and Templates
In reply to: Cannot change text in the leave comment area Bug? Please help.I’ve tried that. It doesn’t work. The list on the example is numbered but in the blog it is displayed one by one, coma separated.
Forum: Fixing WordPress
In reply to: Change page title, but not page address and name in the menuNew Nine Media,
Thanks for the idea! ??
Here is a sample solution that may be further modified that works (thanks Sergey):
<div <?php if (function_exists("post_class")) post_class(); else print 'class="post"'; ?> id="post-<?php the_ID(); ?>"> <h2><a title="<?php if($post->ID==38) print 'My New Title'; else the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php if($post->ID==38) print 'My New Title'; else the_title(); ?></a></h2>
Forum: Fixing WordPress
In reply to: Change page title, but not page address and name in the menuHi,
Thanks for suggestions.
Yes, changing the page name changes everything.
The idea of implementing the code seems like the solution. I’ve tried to put it on the page in different ways, but then the browser says: the page undergoes maintanance or there was en error in programming ??
May you write how to put this code propoerly:
<?php if($post->ID==72):?> <h2>My New Title</h2> <?php else: the_title();?>
here (my page.php file):
<?php if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb('<p id="breadcrumbs">','</p>'); } ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div <?php if (function_exists("post_class")) post_class(); else print 'class="post"'; ?> id="post-<?php the_ID(); ?>"> <h2><a title="<?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php edit_post_link(__('Edit this page','lightword'), '', ''); ?> <?php the_content(''); ?>