Title: nitrous's Replies | WordPress.org

---

# nitrous

  [  ](https://wordpress.org/support/users/nitrous/)

 *   [Profile](https://wordpress.org/support/users/nitrous/)
 *   [Topics Started](https://wordpress.org/support/users/nitrous/topics/)
 *   [Replies Created](https://wordpress.org/support/users/nitrous/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/nitrous/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/nitrous/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/nitrous/engagements/)
 *   [Favorites](https://wordpress.org/support/users/nitrous/favorites/)

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PayPal for WooCommerce] Default Payment Method](https://wordpress.org/support/topic/default-payment-method/)
 *  Thread Starter [nitrous](https://wordpress.org/support/users/nitrous/)
 * (@nitrous)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/default-payment-method/#post-6641211)
 * Okay thank you
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Query_Posts to include tags or not](https://wordpress.org/support/topic/query_posts-to-include-tags-or-not/)
 *  Thread Starter [nitrous](https://wordpress.org/support/users/nitrous/)
 * (@nitrous)
 * [17 years ago](https://wordpress.org/support/topic/query_posts-to-include-tags-or-not/#post-1113209)
 * lol man i am happy.. i was going to try that and i was just about to start modifying
   my code and all of a sudden i was looking at one of my if statements when it 
   hit me.. that doesnt make sense lol.. i changed it and now life is good again..
   just needed a fresh look at it.. thanks
 * working:
 *     ```
       function postListByCategoryID($categoryID = 0,$paged = 0,$tager="0")
       		{
   
       if($paged>0){
       $offset=$paged*10;
       $offset-=10;
       }else{
       $offset=0;
       }
   
       			$outputString = '';
   
       //if(isset($tager) && $tager!=0){
       if($tager===0 || $tager=="0"){
       			query_posts('offset='.$offset.'&cat=' . $categoryID . '&showposts=5&order=desc');
       }else{
   
       $taggy="&tag=$tager+$tager";
       ////			query_posts('offset='.$offset. $taggy. '&showposts=5&order=desc');
       			query_posts('offset='.$offset. '&cat=' . $categoryID . $taggy. '&showposts=5&order=desc');
       }
   
       			//query_posts('offset='.$offset.'&cat=' . $categoryID . '&showposts=5&order=desc');
       			$outputString .= '<ul>' . chr(10);
       			/*while (have_posts()) : the_post();
   
       			endwhile;*/
       			$outputString .= '</ul>' . chr(10);
       			return $outputString;
       		}
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Archiving Posts to a page](https://wordpress.org/support/topic/archiving-posts-to-a-page/)
 *  Thread Starter [nitrous](https://wordpress.org/support/users/nitrous/)
 * (@nitrous)
 * [17 years, 7 months ago](https://wordpress.org/support/topic/archiving-posts-to-a-page/#post-912482)
 * sweet thanks man
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Running WordPress in an Iframe cross domains](https://wordpress.org/support/topic/running-wordpress-in-an-iframe-cross-domains/)
 *  Thread Starter [nitrous](https://wordpress.org/support/users/nitrous/)
 * (@nitrous)
 * [17 years, 10 months ago](https://wordpress.org/support/topic/running-wordpress-in-an-iframe-cross-domains/#post-851749)
 * it is not just the admin.. what about new users signing up on the form.. if it
   wont remember any cookies they will never be able to login.
 * I have already gotten around it by changing the browser settings but that is 
   not really a feasible option.
 * what about having a JS shadowbox/lightbox popup that is really a link to a page
   that is on the other server (so it hides the address) and then on that page it
   has a simple login/signup functionality as well and then on logging in or signing
   up it then takes you back to the regular page with the iframe
 * lightbox example to explain:
    [http://www.herdboy.com/index.php?option=com_content&view=article&id=107&Itemid=151#inline-sample](http://www.herdboy.com/index.php?option=com_content&view=article&id=107&Itemid=151#inline-sample)
 * now that is an option but i dont know how to create a page with a simple login/
   signup functionality..
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Running WordPress in an Iframe cross domains](https://wordpress.org/support/topic/running-wordpress-in-an-iframe-cross-domains/)
 *  Thread Starter [nitrous](https://wordpress.org/support/users/nitrous/)
 * (@nitrous)
 * [17 years, 10 months ago](https://wordpress.org/support/topic/running-wordpress-in-an-iframe-cross-domains/#post-851746)
 * i have to for a client that wants to have wordpress because it runs in php and
   mysql and the regular site is sitting ontop of a custom asp CMS. So i have it
   iframing to a different server so that it can support php and mysql.
 * I know that the cookies are not working but there must be a way to get it to 
   work. or a way to setup something to get it to work or trick the user to thinking
   it works by hiding the address of the domain.

Viewing 5 replies - 1 through 5 (of 5 total)