Title: iabdullah's Replies | WordPress.org

---

# iabdullah

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] "We recommend" section](https://wordpress.org/support/topic/we-recommend-section/)
 *  Thread Starter [iabdullah](https://wordpress.org/support/users/iabdullah/)
 * (@iabdullah)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/we-recommend-section/#post-7646326)
 * Thank you! That did it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Error title](https://wordpress.org/support/topic/error-title/)
 *  Thread Starter [iabdullah](https://wordpress.org/support/users/iabdullah/)
 * (@iabdullah)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/error-title/#post-7486414)
 * I don’t know how, but the issue has disappeared.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] WooCommerce search problem](https://wordpress.org/support/topic/woocommerce-search-problem/)
 *  Thread Starter [iabdullah](https://wordpress.org/support/users/iabdullah/)
 * (@iabdullah)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/woocommerce-search-problem/#post-7503914)
 * Ok, can you reccomend me any free alternatives?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Error title](https://wordpress.org/support/topic/error-title/)
 *  Thread Starter [iabdullah](https://wordpress.org/support/users/iabdullah/)
 * (@iabdullah)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/error-title/#post-7486110)
 * Update, it shows on new products too.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Awesome Support - WordPress HelpDesk & Support Plugin] Change warning text](https://wordpress.org/support/topic/change-warning-text/)
 *  Thread Starter [iabdullah](https://wordpress.org/support/users/iabdullah/)
 * (@iabdullah)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/change-warning-text/#post-7482871)
 * To be more specific, I want to change the url in order to redirect it to a woocommerce
   endpoint (example.com/my-account/orders). Also, I want to redirect the “My tickets”
   button (when you open a new ticket, top-left handside) to another woocommerce
   endpoint (example.com/my-account/support). I noticed it is not possible to do
   in the Awesome Support settings section, you can only redirect to a page and 
   NOT an endpoint. Therefore I was looking for a solution using custom functions.
 * Regards.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Add new tab in 'My Account' page](https://wordpress.org/support/topic/add-new-tab-in-my-account-page/)
 *  Thread Starter [iabdullah](https://wordpress.org/support/users/iabdullah/)
 * (@iabdullah)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/add-new-tab-in-my-account-page/#post-7481819)
 * Thank you so much! I’ve done it!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Add new tab in 'My Account' page](https://wordpress.org/support/topic/add-new-tab-in-my-account-page/)
 *  Thread Starter [iabdullah](https://wordpress.org/support/users/iabdullah/)
 * (@iabdullah)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/add-new-tab-in-my-account-page/#post-7481774)
 * I tried this code:
 *     ```
       function my_custom_my_account_menu_items( $items ) {
           // Remove the logout menu item.
           $logout = $items['customer-logout'];
           unset( $items['customer-logout'] );
   
           // Insert your custom endpoint.
           $items['my-custom-endpoint'] = __( 'My Custom Endpoint', 'woocommerce' );
   
           // Insert back the logout item.
           $items['customer-logout'] = $logout;
   
           return $items;
       }
   
       add_filter( 'woocommerce_account_menu_items', 'my_custom_my_account_menu_items' );
       ```
   
 * It works as the above, but it’s much easier to understand. Now I don’t know how
   to add contents. I’ve tried the following:
 *     ```
       function my_custom_my_account_menu_items( $items ) {
           // Remove the logout menu item.
           $logout = $items['customer-logout'];
           unset( $items['customer-logout'] );
   
           // Insert your custom endpoint.
           $items['my-custom-endpoint'] = __( 'My Custom Endpoint', 'woocommerce' );
   
           // Insert back the logout item.
           $items['customer-logout'] = $logout;
   
           return $items;
       }
   
       add_filter( 'woocommerce_account_menu_items', 'my_custom_my_account_menu_items' );
       ```
   
 * Bit it doesn’t work.
 * I’ve checked from [here](https://github.com/woothemes/woocommerce/wiki/2.6-Tabbed-My-Accout-page).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Add new tab in 'My Account' page](https://wordpress.org/support/topic/add-new-tab-in-my-account-page/)
 *  Thread Starter [iabdullah](https://wordpress.org/support/users/iabdullah/)
 * (@iabdullah)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/add-new-tab-in-my-account-page/#post-7481764)
 * I’ve used this: [https://gist.github.com/claudiosmweb/a79f4e3992ae96cb821d3b357834a005#file-custom-my-account-endpoint-php](https://gist.github.com/claudiosmweb/a79f4e3992ae96cb821d3b357834a005#file-custom-my-account-endpoint-php)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Add new tab in 'My Account' page](https://wordpress.org/support/topic/add-new-tab-in-my-account-page/)
 *  Thread Starter [iabdullah](https://wordpress.org/support/users/iabdullah/)
 * (@iabdullah)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/add-new-tab-in-my-account-page/#post-7481744)
 * I’ve tried that, but the problem is it redirects the customer to a not-existing
   page. I’ve set the endpoint as “Support” and I’ve created a new file into wp-
   content/plugins/woocommerce/templates/my-account named support.php, but it still
   shows a 404 error.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Awesome Support - WordPress HelpDesk & Support Plugin] WooCommerce login](https://wordpress.org/support/topic/woocommerce-login-3/)
 *  Thread Starter [iabdullah](https://wordpress.org/support/users/iabdullah/)
 * (@iabdullah)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/woocommerce-login-3/#post-7477787)
 * Thank you so much!

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