oneone11
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Plugins
In reply to: twitter tools 1.5.1a won’t authenticate at twitterhope this helps… was getting “Sorry, login failed. Error message from Twitter: Rate limit exceeded. Clients may not make more than 100 requests per hour.“
running WP 2.8.1 and TT 1.6.
Was able to fix it by deactivating, upgrading, and then reactivating Akismet.
Forum: Plugins
In reply to: Advanced Excerpt & Viper’s Video Quicktagstill looking… sorry for all the bumps…
Forum: Plugins
In reply to: Advanced Excerpt & Viper’s Video Quicktaganyone?
Forum: Fixing WordPress
In reply to: [Plugin: Twitter Tools] Multiple CatagoriesI am interested in this as well.
Forum: Fixing WordPress
In reply to: Comment code written isn’t in theme’s comments.php.. nor default’s…After looking at how the comment_template function operates I tried passing the file variable even though it is set by default.
comments_template('/comments.php');and that fixed it. Has anyone else had this issue?
Forum: Fixing WordPress
In reply to: Static page and pagination – how to read page # from urlI had to do this once.. the way I ended up doing it was by placing the following PHP code in my theme…
//grab the URL into a string variable (i.e., "yoursite.com/page/2" ) $strURL = $_SERVER['REQUEST_URI']; //array the elements in the string btwn "/" (i.e. [page], [2] ) $arrVals = split("/",$strURL); //boolean var used to alert when the integer page var is next $intnextone = 0; //integer variable for pagenumber $intpagenum = 0; // loop through the array foreach ($arrVals as $value) { if ($intnextone == 1){$intpagenum=$value;} // assign var if ($value == "page") {$intnextone =1;} //next loop is int }$intpagenum is your page number variable.
Hope that helps
Viewing 6 replies - 1 through 6 (of 6 total)