Title: webdevbytes's Replies | WordPress.org

---

# webdevbytes

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [WP_Query two post_types but only return second post type with specific term](https://wordpress.org/support/topic/wp_query-two-post_types-but-only-return-second-post-type-with-specific-terms/)
 *  Thread Starter [webdevbytes](https://wordpress.org/support/users/webdevbytes/)
 * (@webdevbytes)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/wp_query-two-post_types-but-only-return-second-post-type-with-specific-terms/#post-15100875)
 * In your example I would want to get all posts, pages, movies, and also books 
   but only the ones that are written in English (so with a tax term set to english).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] ESI rewrite rule in htaccess not working](https://wordpress.org/support/topic/esi-rewrite-rule-in-htaccess-not-working/)
 *  Thread Starter [webdevbytes](https://wordpress.org/support/users/webdevbytes/)
 * (@webdevbytes)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/esi-rewrite-rule-in-htaccess-not-working/#post-11983556)
 * It works if
 *     ```
       <IfModule LiteSpeed>
       RewriteRule .* - [E=esi_on:1]
       RewriteRule .* - [E=cache-control:max-age=120]
       <IfModule>
       ```
   
 * is added **before** the instructions added by the plugin.
    -  This reply was modified 6 years, 7 months ago by [webdevbytes](https://wordpress.org/support/users/webdevbytes/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackWPup – WordPress Backup & Restore Plugin] Our provider Aborg.ca said that BackWPUp is not secure](https://wordpress.org/support/topic/our-provider-aborg-ca-said-that-backwpup-is-not-secure/)
 *  Thread Starter [webdevbytes](https://wordpress.org/support/users/webdevbytes/)
 * (@webdevbytes)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/our-provider-aborg-ca-said-that-backwpup-is-not-secure/#post-9206005)
 * Thanks for the feedback.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [“Your comment is awaiting moderation.” message not working as expected with reve](https://wordpress.org/support/topic/your-comment-is-awaiting-moderation-message-not-working-as-expected-with-reve/)
 *  Thread Starter [webdevbytes](https://wordpress.org/support/users/webdevbytes/)
 * (@webdevbytes)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/your-comment-is-awaiting-moderation-message-not-working-as-expected-with-reve/#post-5917325)
 * Same deal without the custom walker. As soon as there are 5 or more comments,
   the user’s comment does not appear. I think this has to do with the fact the 
   results a being displayed in reverse with order reverse_top_level.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Slideshow] Simple Slideshow Blocks my ability to insert/Edit Links in WP V3.5](https://wordpress.org/support/topic/simple-slideshow-blocks-my-ability-to-insertedit-links-in-wp-v35/)
 *  [webdevbytes](https://wordpress.org/support/users/webdevbytes/)
 * (@webdevbytes)
 * [13 years ago](https://wordpress.org/support/topic/simple-slideshow-blocks-my-ability-to-insertedit-links-in-wp-v35/#post-3360551)
 * If you need to fix the error ASAP,
    Edit file simpleslider.php.
 * At line 40, replace:
 *     ```
       wp_register_script( 'jquery-ui-custom', plugins_url('jquery-ui-1.8.15.custom.min.js', __FILE__ ), array( 'jquery' ),'1.8.15', false );
       ```
   
 * with :
 *     ```
       wp_register_script( 'jquery-ui-custom', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js' );
       ```
   
 * Basically the jquery-ui version that the plugin is loading is incompatible with
   the latest jQuery library.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Call to undefined function wp_mail](https://wordpress.org/support/topic/call-to-undefined-function-wp_mail/)
 *  [webdevbytes](https://wordpress.org/support/users/webdevbytes/)
 * (@webdevbytes)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/call-to-undefined-function-wp_mail/#post-2252563)
 * I came across the same issue while using wp_mail() in an ajax function.
    Make
   sure to activate the hook with :
 * `do_action( 'wp_ajax_my_ajax_action' );`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Fields] [Plugin: Simple Fields] WP Media uploader does not work](https://wordpress.org/support/topic/plugin-simple-fields-wp-media-uploader-does-not-work/)
 *  [webdevbytes](https://wordpress.org/support/users/webdevbytes/)
 * (@webdevbytes)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-simple-fields-wp-media-uploader-does-not-work/#post-2223052)
 * Exactly the same thing here happens with WP3.2 and and WP3.3beta4.
 * Please let us know if this is being looking into of if we need to find another
   solution.
 * Otherwise thanks for all your great plugins !
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [W3 Total Cache causing problems with theme menu](https://wordpress.org/support/topic/w3-total-cache-causing-problems-with-theme-menu/)
 *  [webdevbytes](https://wordpress.org/support/users/webdevbytes/)
 * (@webdevbytes)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/w3-total-cache-causing-problems-with-theme-menu/#post-2134273)
 * Yup I’m getting the same issue. It’s weird.
 * On my end I’ve been able to track it down the source of the bug. The function
   get_post_ancestors() returns an empty array even when there are 1 or more ancestors
   and $post->post_parent is true.
 *     ```
       if ($post->post_parent) // true{
           $ancestors=get_post_ancestors($post->ID); // returns empty array
       }
       ```
   
 * When I deactivate Total Cache, all goes back to normal.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Remove the div and ul tags from wp_nav_menu() function](https://wordpress.org/support/topic/remove-the-div-and-ul-tags-from-wp_nav_menu-function/)
 *  [webdevbytes](https://wordpress.org/support/users/webdevbytes/)
 * (@webdevbytes)
 * [15 years ago](https://wordpress.org/support/topic/remove-the-div-and-ul-tags-from-wp_nav_menu-function/page/2/#post-1840869)
 * For any one with this issue use the extra param:
 * `'items_wrap' => '%3$s'`
 * found here:
    [http://wordpress.stackexchange.com/questions/2574/remove-wrapping-div-and-ul-from-output-of-wp-nav-menu/13347#13347](http://wordpress.stackexchange.com/questions/2574/remove-wrapping-div-and-ul-from-output-of-wp-nav-menu/13347#13347)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CMS Tree Page View] [Plugin: CMS Tree Page View] CMS Tree Page – WPML](https://wordpress.org/support/topic/plugin-cms-tree-page-view-cms-tree-page-wpml/)
 *  [webdevbytes](https://wordpress.org/support/users/webdevbytes/)
 * (@webdevbytes)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-cms-tree-page-view-cms-tree-page-wpml/#post-1773613)
 * [@p](https://wordpress.org/support/users/p/)är – Sorry to tell you this issue
   has not been resolved for me in version 0.7.17. Let me know if I can help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CMS Tree Page View] [Plugin: CMS Tree Page View] CMS Tree Page – WPML](https://wordpress.org/support/topic/plugin-cms-tree-page-view-cms-tree-page-wpml/)
 *  [webdevbytes](https://wordpress.org/support/users/webdevbytes/)
 * (@webdevbytes)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-cms-tree-page-view-cms-tree-page-wpml/#post-1773611)
 * [@romutpois](https://wordpress.org/support/users/romutpois/) Could you confirm
   that your updated code fixes the issue?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CMS Tree Page View] [Plugin: CMS Tree Page View] CMS Tree Page – WPML](https://wordpress.org/support/topic/plugin-cms-tree-page-view-cms-tree-page-wpml/)
 *  [webdevbytes](https://wordpress.org/support/users/webdevbytes/)
 * (@webdevbytes)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-cms-tree-page-view-cms-tree-page-wpml/#post-1773610)
 * I am also getting this issue with
 * CMS Tree Page 0.7.16
    WPML 2.1.2 WP 3.1

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