uandersonft
Forum Replies Created
-
Forum: Plugins
In reply to: Wp-Post View Dont Work in Chrome, firefox and IE is normalHello again, I managed to solve the problem with the plugin, it was only two options, it was the view count would be done by registered users, visitors or anyone, was only for visitors, as I was logged into my account on chrome, it did not perform the bill and worked in fF because I was logged out
Forum: Fixing WordPress
In reply to: WordPress offlinethis space that has been the forum I put everything together, I do not understand why not accepted because the default themes were functioning as few as mine did not work
Forum: Fixing WordPress
In reply to: Pagination on custom-single.php does not workI did, but gives the same error that was, when you click to go to the next page it back to the home page.
I do not know how I can solve this problem.
Forum: Fixing WordPress
In reply to: how to get the id of the category and sub??-categorythis way you told me to go to work only sub-category to category pq doubles several times, but the paging does not work know how to fix this?
Forum: Fixing WordPress
In reply to: how to get the id of the category and sub??-categorygiving details, I want to use the id of the subcategory for use in query_posts to display all items in that sub-category
Forum: Fixing WordPress
In reply to: how to get the id of the category and sub??-categoryI want that when people choose an option it lists the details of this option to the top and just below show the sub-categories, they can be anything, lessons, videos and tutorials
I’ll see if I can do what I need with the function you gave me
anything I return
thank you
Forum: Fixing WordPress
In reply to: Function problem comments_popup_linkkeesiemeijer
I managed to find the site IntenseDebate option to rename the link of the comments, thanks for the support
Forum: Fixing WordPress
In reply to: Function problem comments_popup_linkI discovered the problem activating and reactivating the plugins, the problem was in IntenseDebate
You how I could solve this, both IntenseDebate and Disqus are giving to this problem and I want to use one of two for my comments = /
Forum: Fixing WordPress
In reply to: Function problem comments_popup_linkok, I’ll do is I’ll be back with the answer
Forum: Fixing WordPress
In reply to: Function problem comments_popup_linkSo no comment numbers show up? Wrong numbers? I tested the exact code and it showed me the correct amound of comments.
the amount appears correct, what I want is to change the formatting by default is “Comments (quantity)” appear only want to put the number “1”
Forum: Fixing WordPress
In reply to: Function problem comments_popup_linkI noticed something when refreshes the page formatting that appears quickly put faster returns to the default (Comment (0))
know why this?
Forum: Fixing WordPress
In reply to: Function problem comments_popup_linkThe code does not handle the formatting, instead of displaying the number of comments as to put.
he views Comments (0) or Comments (1) if you have comments
I am placing this function within the loop
function is also indicted me that you did not work = (
Here is the complete code of the page:
<?php query_posts('showposts=4'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <!-- Box 1 --> <div class="box-novidades"> <img src="<?php echo get_option('home');?>/<?php $key="imagens";echo get_post_meta($post->ID,$key,true);?>"> <span><?php the_category(' '); ?></span> <h1><a href="<?php echo get_permalink(); ?>"><?php echo substr(the_title('', '', FALSE), 0, 30); ?></a></h1> <?php the_excerpt_rereloaded(15); ?> <img style="width:16px; height:16px; border:0 !important; background:none;" src="<?=bloginfo ('template_url')?>/images/icon/comments.png" /> <?php comments_popup_link ('0 ', '1', '%'); ?> <div class="Nov-button"><a href="<?php echo get_permalink(); ?>"></a></div> </div> <?php endwhile; else: ?> <?php endif; ?>