j.bukovski
Forum Replies Created
-
Forum: Plugins
In reply to: [WebberZone Top 10 — Popular Posts] time between visitsyeah, no problem, no hurry. Good luck with the paid version, cant wait! 🙂
Forum: Plugins
In reply to: [WebberZone Top 10 — Popular Posts] time between visitsThe plugin name is “BAW Post Views Count”
Forum: Plugins
In reply to: [WebberZone Top 10 — Popular Posts] time between visitsNo, it is not a problem, even if you open a post in chrome, and the same one in mozilla, that time frame works only between opening the page and refreshing with the same browser. I saw that in another plugin, your plugin is ten time better, only if it has that functionality it’d be perfect! I tryed to implement only that part in your plugin but my knowedge is not enough and it didnt work. :/
If your implement a unique tracking feature, i will definitely consider the paid version.
Forum: Plugins
In reply to: [WebberZone Top 10 — Popular Posts] time between visitsNo, I mean, right now with every refresh of the page the counter keep counting, but if we can set a time frame, like for an example – 30 seconds, in those 30 seconds no matter how many times the page is refreshed, it will still count for 1 visit. I am not very good at explaining in english, i hope u understand me. 🙂
Forum: Plugins
In reply to: [Simple Pagination] Pagination on custom post type taxonomyhello,
that was a mistake, everything is working, just tha pagination when it comes to a custom post type taxonomy ( ‘Dress-types’ => ‘long’ )
🙁 can you please give me any idea how can I fix that. I am at dead endForum: Plugins
In reply to: [Simple Pagination] Pagination on custom post type taxonomyHi, thanks for the replay, my code goes like this:
<?php $wp_query->query( array('showposts='.$show_posts.'&post_type='. $post_type .'&Dress-types='.$long.'&paged='.$paged)); $args = query_posts( array( 'post_type' => 'dress', 'Dress-types' => 'long' ) ); $loop = new WP_Query( $args ); while ($wp_query->have_posts()) : $wp_query->the_post(); $content = get_the_content(); $ttitle = get_the_title(); $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); echo '<div class="dress">'; echo '<a class="fancybox" rel="group" href="' . $url . '" title="' . the_title_attribute('echo=0') . '" >'; echo get_the_post_thumbnail($post->ID, 'inf-single'); echo '</a>'; echo '</div>'; //dress endwhile; if(function_exists('wp_simple_pagination')) { wp_simple_pagination(); } ?>