cimenta
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WP-PageNavi] pagination for commentsworks like a charm! Thank you for that. R
Forum: Plugins
In reply to: [Plugin: Fast and Secure Contact Form]yes, it must be the theme. Thank you for your help. R
Forum: Plugins
In reply to: [Plugin: Fast and Secure Contact Form]the thing is that it seems to me that css code
#commentformcomes from your plug in. Am I right?Should
Input Text Field Sizemanage the width of text fields?Thank you
R.
Forum: Fixing WordPress
In reply to: email if new reply to my comment?Thank you Gangleri
I am after plugin that would let commentator subscribe if there is a reply to his/her comment not if there is any new comment.
R.
Forum: Plugins
In reply to: [Plugin: Fast and Secure Contact Form]Hi Mike
thank you for your response. I changed the width of the message text box by increasing the cols value in Input Textarea Field Cols. Works nicely.
But what about the other text fields? Changing value in Input Text Field Size did not do anything. Actually the HTML code was changed but not the actual page layout. If I change/increase css code – the width
#commentform textarea { border-width:0.071em; padding:0.214em; width:45%; }it does the job. Does
#commentformcome from your plugin?Is there any way to have text field label and text field on the same line/row?
Thank you
R
Forum: Fixing WordPress
In reply to: to bring up the entire tag list in Write/Edit Post panelnot possible to do in WP admin?
Forum: Fixing WordPress
In reply to: email if new reply to my comment?it seems to me that such plug-in doesn’t exit ….
Forum: Plugins
In reply to: [Plugin: WP-PageNavi] where to place wp_pagenavi(); in custome loop?I made it work by add
$temp = $wp_query; // assign orginal query to temp variable for later use global $wp_query; global $post;so it looks like it has nothing to do with
wp_pagenavi()Forum: Fixing WordPress
In reply to: how to make custom query paginate?I made it work by inserting global thing …
$temp = $wp_query; // assign orginal query to temp variable for later use global $wp_query; global $post;Could somebody explain that to me? Why it works with global?
Thank you
R.
Forum: Fixing WordPress
In reply to: how to make custom query paginate?just tested on clean installation of WordPress + default theme and it works fine. So it must be something about how I implemented in Thesis. Any idea?
R.
Forum: Fixing WordPress
In reply to: how to make custom query paginate?@alchymyth: thank you but it didn’t help. The condition is_page(‘audio’) works well because I got displayed what I want on the pages. Only the navigation things are missing …
I am really curious if we can make it work …. Hey WordPress gurus 🙂
R
Forum: Fixing WordPress
In reply to: how to make custom query paginate?thank you Michael. I tried but … It did not work. I slightly modified the code. I believe that I did not change anything important. The html code for page navigation is there but empty. It is like next_posts_link returns nothing.
I used custom template for that page. It displays two posts. That is correct but the pagination …
if (is_page('audio')) { $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $post_per_page = 2; // -1 shows all posts $do_not_show_stickies = 1; // 0 to show stickies $args=array( 'category_name' => 'blog', 'orderby' => 'date', 'order' => 'DESC', 'paged' => $paged, 'posts_per_page' => $post_per_page, 'caller_get_posts' => $do_not_show_stickies, ); $temp = $wp_query; // assign orginal query to temp variable for later use $wp_query = null; $wp_query = new WP_Query($args); //echo var_dump($wp_query); if( have_posts() ) : while ($wp_query->have_posts()) : $wp_query->the_post(); ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small> <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> </div> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php get_search_form(); ?> <?php endif; $wp_query = $temp; //reset back to original query }Forum: Plugins
In reply to: [Plugin: WP-PageNavi] where to place wp_pagenavi(); in custome loop?I tried to place wp_pagenavi(); anywhere in my code but it did not help …
hi t31os_
Could you be more specific? I cannot test as I do not know what code to place ‘there’ as I want only admin to edit the field. I cannot see that that article says where to place the code in my case.
Thank you
R
Forum: Fixing WordPress
In reply to: Change post headline widthany idea?
R