Vinoj Cardoza
Forum Replies Created
-
Forum: Plugins
In reply to: [Wordpress Poll] WordPress PollClosed
Forum: Plugins
In reply to: [Wordpress Poll] [Plugin: WordPress Poll] 0 Votes Shows 100% Graph BarHi Kaylward,
I thought I fixed this problem in the version 32.5. Can you please tell me what version of my plugin you are using thanks?Forum: Plugins
In reply to: [Wordpress Poll] WordPress PollCan you please explain me how you conclude it as bad link.
Thanks
Forum: Plugins
In reply to: [Wordpress Poll] [Plugin: WordPress Poll] Poll does not show up on postHi,
I checked my code, There is nothing wrong in it. Can you please double check your side?Forum: Plugins
In reply to: [Wordpress Poll] [Plugin: WordPress Poll] Styling the pollHi Lucas,
I am releasing the next version on Monday with these options to edit the CSS.Forum: Plugins
In reply to: [Wordpress Poll] [Plugin: WordPress Poll] cookies not workingHi,
Its working fine in my site.
If you have more queries, post in the following link comments section.
https://www.fingerfish.com/cardoza-wordpress-poll/
Thank you
Code modified in the latest version. Thanks
Forum: Plugins
In reply to: [Wordpress Poll] [Plugin: Cardoza WordPress Poll] size hard codedCode modified in the latest version.
Forum: Plugins
In reply to: [Wordpress Poll] [Plugin: Cardoza WordPress Poll] size hard codedWill be corrected in the next version.
Thanks Paul
At present the only option to set this is throught changing the code in javascript. Do it for now and I will keep this amends in my list to be developed in future.
Many Thanks for your suggestion.
Forum: Plugins
In reply to: [wordTube] [Plugin: wordTube] Searching of videos & paginationThe following coding may be useful for your second query to add pagination.
<form method=”post” action=””><input type=”text” name=”page_no” size=”1″/></form>
<?php
$no_of_posts_per_page = 9; //VC: Pass the value for the number of posts to be displayed per page
$term = get_query_var(‘term’);
$taxonomy = get_query_var(‘taxonomy’);
if(isset($_POST[‘page_no’])) $i=$_POST[‘page_no’]; //VC: Check whether the user has given any page number in the text field. If not display the firstpage
if(empty($i)) $i = 1; //VC: For pagination
query_posts(array(
‘post_type’ => ‘video’,
$taxonomy => $term,
‘post_status’ => ‘publish’,
‘posts_per_page’ => $no_of_posts_per_page,
‘paged’ => $i, ));