Title: dogbot's Replies | WordPress.org

---

# dogbot

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/users/dogbot/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/dogbot/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms + Stripe] Unable to authorize card. No response from Stripe.js.](https://wordpress.org/support/topic/unable-to-authorize-card-no-response-from-stripe-js-2/)
 *  [dogbot](https://wordpress.org/support/users/dogbot/)
 * (@dogbot)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/unable-to-authorize-card-no-response-from-stripe-js-2/#post-11853958)
 * Did you ever solve this?
 *   Forum: [Requests and Feedback](https://wordpress.org/support/forum/requests-and-feedback/)
   
   In reply to: [core function for child / parent theme file inclusion](https://wordpress.org/support/topic/core-function-for-child-parent-theme-file-inclusion/)
 *  [dogbot](https://wordpress.org/support/users/dogbot/)
 * (@dogbot)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/core-function-for-child-parent-theme-file-inclusion/#post-1318066)
 * This kida works for me:
 *     ```
       function child_theme_include($file){
           $parent = get_template_directory() . '/'.$file;
           $child = get_stylesheet_directory() . '/'.$file;
           if(file_exists($child))
               include($child);
           elseif(file_exists($parent))
               include($parent);
       }
       ```
   
 * No extra functions
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to use wp_nav_menu](https://wordpress.org/support/topic/how-to-use-wp_nav_menu/)
 *  Thread Starter [dogbot](https://wordpress.org/support/users/dogbot/)
 * (@dogbot)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/how-to-use-wp_nav_menu/#post-1693967)
 * sorry for all of the crazy posts..this forum’s text editor is unforgiving to 
   say the least
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to use wp_nav_menu](https://wordpress.org/support/topic/how-to-use-wp_nav_menu/)
 *  Thread Starter [dogbot](https://wordpress.org/support/users/dogbot/)
 * (@dogbot)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/how-to-use-wp_nav_menu/#post-1693966)
 * I’m using a dropdown menu script that requires certain classes on certain items
   of the list to work.
 * basically the [a] tag of a list item with nested list should have class=”dir”
   
   The [li] tag of the first and last items in nested list should have classes “
   first” and “last” respectively.
 * like so:
 *     ```
       <li><a href="./" class="dir">Lyrics</a>
                       <ul>
                           <li class="first"><a href="./">Search for Lyrics</a></li>
                           <li class="last"><a href="./">Play Lyrics Game</a></li>
                       </ul>
       ```
   
 * Plesae dont tell me to change my css, use a plugin, jquery,etc…I just need that
   output that way that’s all.
 * Thank you so much
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to use wp_nav_menu](https://wordpress.org/support/topic/how-to-use-wp_nav_menu/)
 *  Thread Starter [dogbot](https://wordpress.org/support/users/dogbot/)
 * (@dogbot)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/how-to-use-wp_nav_menu/#post-1693964)
 * I’m using a dropdown menu script that requires certain classes on certain items
   of the list to work.
 * basically the [a] tag of a list item with nested list should have class=”dir”
   
   The [li] tag of the first and last items in nested list should have classes “
   first” and “last” respectively.
 * like so:
    - [Lyrics](https://wordpress.org/support/users/dogbot/replies/./?output_format=md)
 *  -  <li class="first">[Search for Lyrics](https://wordpress.org/support/users/dogbot/replies/./?output_format=md)
 *  <li class="last">[Play Lyrics Game](https://wordpress.org/support/users/dogbot/replies/./?output_format=md)
 * Plesae dont tell me to change my css, use a plugin, jquery,etc…I just need that
   output that way that’s all.
 * Thank you so much
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to use wp_nav_menu](https://wordpress.org/support/topic/how-to-use-wp_nav_menu/)
 *  Thread Starter [dogbot](https://wordpress.org/support/users/dogbot/)
 * (@dogbot)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/how-to-use-wp_nav_menu/#post-1693960)
 * My post was jumbled by the editor, here it is again
 * I’m using a dropdown menu script that requires certain classes on certain items
   of the list to work.
    basically the `<a>` tag of a list item “
    - ” with a sub-menu should have class=”dir”
       The “
    - ” tags’s of the first and last items should have classes “first” and “last”
      respectively.
       like so:
    -     ```
          <a>
          <li><a href="./">class="dir">Lyrics</a>
          <ul>
                              <li class="<strong>first</strong>"><a href="./">Search for Lyrics</a></ul>
          </li>
      
                              <li class="<strong>last</strong>"></a><a href="./">Play Lyrics Game</a>
          ```
      
    - </p>
       <p>Thank you so much
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to use wp_nav_menu](https://wordpress.org/support/topic/how-to-use-wp_nav_menu/)
 *  Thread Starter [dogbot](https://wordpress.org/support/users/dogbot/)
 * (@dogbot)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/how-to-use-wp_nav_menu/#post-1693943)
 * maybe I posted int the wrong sub-forum? could an admin move it to a more appropriate
   one?
 * thank you.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blog page doesn't show newest 3 posts](https://wordpress.org/support/topic/blog-page-doesnt-show-newest-3-posts/)
 *  [dogbot](https://wordpress.org/support/users/dogbot/)
 * (@dogbot)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/blog-page-doesnt-show-newest-3-posts/#post-1693925)
 * hi…you never said what was the name of the widget.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Adding tumbnail images into the mainmenu](https://wordpress.org/support/topic/adding-tumbnail-images-into-the-mainmenu/)
 *  [dogbot](https://wordpress.org/support/users/dogbot/)
 * (@dogbot)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/adding-tumbnail-images-into-the-mainmenu/#post-1693924)
 * check out the code generated for the menu. it should have a class “page_item 
   page-item-(number)” you could use CSS to include a background image depending
   on the page or post number.
 * a thought
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Permalinks and server headers](https://wordpress.org/support/topic/permalinks-and-server-headers/)
 *  [dogbot](https://wordpress.org/support/users/dogbot/)
 * (@dogbot)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/permalinks-and-server-headers/#post-1693920)
 * never seen it done ‘/%post_id%/%postname%.html’ I’d assume the correct way is‘/%
   post_id%/%postname%’ without the ‘.html’ part?….
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blog page doesn't show newest 3 posts](https://wordpress.org/support/topic/blog-page-doesnt-show-newest-3-posts/)
 *  [dogbot](https://wordpress.org/support/users/dogbot/)
 * (@dogbot)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/blog-page-doesnt-show-newest-3-posts/#post-1693918)
 * noo..I dont think is a database thing..I’ve been down that road, it’s some little
   code setting. How about you deactivate the widget and see what happens?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Newbie Log In Problem](https://wordpress.org/support/topic/newbie-log-in-problem/)
 *  [dogbot](https://wordpress.org/support/users/dogbot/)
 * (@dogbot)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/newbie-log-in-problem/#post-1693916)
 * take a look at this:
    [ things to know: if your server does not have a mail server
   set up then it will not email you anything. even if you entered an email upon
   set up. This happened to me on my local setup during testing.
 * I have used the PHPmyAdmin solution in the link above many times. It’s a little
   hard for people like you and me who know very little coding but I got it!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WYSIWYG Editor is broken](https://wordpress.org/support/topic/wysiwyg-editor-is-broken/)
 *  [dogbot](https://wordpress.org/support/users/dogbot/)
 * (@dogbot)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/wysiwyg-editor-is-broken/#post-1693914)
 * Hi! Im a newbie, just trying give back, so I could be wrong but I had a similar
   problem and it turned out the editor files got corrupted by the upload.
 * here is where I found them:
 * wordpress\wp-includes\js\tinymce
 * Another similar issue with the editor had something to do with the HTACCES file
   created when making permalinks, perhaps when you moved the site it scrwed up 
   the references..maybe delete htacces and redo permalinks?
 * hey some ideas, hope it helps.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blog page doesn't show newest 3 posts](https://wordpress.org/support/topic/blog-page-doesnt-show-newest-3-posts/)
 *  [dogbot](https://wordpress.org/support/users/dogbot/)
 * (@dogbot)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/blog-page-doesnt-show-newest-3-posts/#post-1693911)
 * Hey I am a newbie to WP. but off the bat I’d say take a look at the widget. It
   may help to know the name of the widget. is the widget displaying 3 posts by 
   chance?
 *   Forum: [Alpha/Beta/RC](https://wordpress.org/support/forum/alphabeta/)
    In 
   reply to: [Debug Errors from WP-includes](https://wordpress.org/support/topic/debug-errors-from-wp-includes/)
 *  [dogbot](https://wordpress.org/support/users/dogbot/)
 * (@dogbot)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/debug-errors-from-wp-includes/#post-1615216)
 * did you ever get an answer? I get this error too. I am using WP 3.0.1
    Thanks

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/users/dogbot/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/dogbot/replies/page/2/?output_format=md)