asipahio
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Number My Post Pages] Some positive feedback for developerYes on line 249, put 0 instead of 1 and you should be set.
Forum: Plugins
In reply to: [Plugin: Number My Post Pages] Cannot Get it to workSorry for the late response, I mostly answer questions on the plugin homepage not here.
Forum: Plugins
In reply to: [Plugin: Number My Post Pages] Cannot Get it to workwhat does the link look like on number 2?
What version of wp are you using by the way?
Forum: Plugins
In reply to: [Plugin: Q-List] How are the results shown?But it is definitely something I can implement into the first version since the plugin is still in its beta development
Forum: Plugins
In reply to: [Plugin: Q-List] How are the results shown?Each user can go and see their own votes. I guess poll was the wrong explanation on it.
Forum: Plugins
In reply to: WordPress Template hookanybody? ??
Forum: Plugins
In reply to: [Plugin: Number My Post Pages] Cannot Get it to workDo you use permalinks? and whats their structure?
Forum: Plugins
In reply to: How do I rate a plugin?go to the plugins page and right column towards the bottom of it there are stars. you need to be logged in
Forum: Plugins
In reply to: Add Gravatar to Recent CommentsI actually have a function that you can just call from your recent comments loop.
function gravatar($rating = false, $size = false, $default = false, $border = false) { global $comment; $out = "https://www.gravatar.com/avatar/".md5($comment->comment_author_email)."png"; if($rating && $rating != '') $out .= "?r=".$rating; if($size && $size != '') $out .="&s=".$size; if($default && $default != '') $out .= "&d=".urlencode($default); if($border && $border != '') $out .= "&border=".$border; echo $out; }
Forum: Developing with WordPress
In reply to: wp_insert_post fails when adding special charactersThis is the query its running to add the post and if i run the query through phpmyadmin it works perfectly fine and when i print it out on to the page it prints out as is so I couldnt figure out where the problem is.
INSERT INTO wp_posts(
post_author,
post_date,
post_date_gmt,
post_content_filtered,
post_title,
post_excerpt,
post_status,
post_type,
comment_status,
ping_status,
post_password,
post_name,
to_ping,
pinged,
post_modified,
post_modified_gmt,
post_parent,
menu_order,
guid) VALUES ('1','2009-11-25 03:40:33','2009-11-25 01:40:33','','Abado?lu, Ender','','publish','post','open','open','','abadodhlu-ender-21','','','2009-11-25 03:40:33','2009-11-25 01:40:33','0','0','')
Forum: Developing with WordPress
In reply to: wp_insert_post fails when adding special charactersactually i am reading them off of a text file so if they werent encoded i wouldnt be able to read them off the text.
Forum: Plugins
In reply to: [Plugin: Number My Post Pages] Cannot Get it to workI guess I should write a more detailed explanation.
You need to replace the
<? wp_link_pages(array(‘before’ => ”, ‘after’ => ”, ‘next_or_number’ => ‘number’,’echo’ => ‘0’))?>
with
<?php mysinglepages(wp_link_pages(array(‘before’ => ”, ‘after’ => ”, ‘next_or_number’ => ‘number’,’echo’ => ‘0’))); ?>
If you don’t have that then just inside your “loop” place the function call;
<?php mysinglepages(wp_link_pages(array(‘before’ => ”, ‘after’ => ”, ‘next_or_number’ => ‘number’,’echo’ => ‘0’))); ?>
————-
The lines you put are for a different purpose. Those are to go to the next and previous post not to paginate inside a post. Hope that explains it a bit more, I am really not good at explaining things ??Forum: Plugins
In reply to: [Plugin: Number My Post Pages] Some positive feedback for developerOk I have updated the plugin. I have included a thank you note btw ??
I hope this fixes that error.
Forum: Plugins
In reply to: [Plugin: Number My Post Pages] Something has gone wrongI think it should be fixed now if you can try.
Forum: Plugins
In reply to: [Plugin: Number My Post Pages] Some positive feedback for developeroh I didn’t know that existed actually. thanks for letting me know. Ill include that into the plugin now.