Title: Mohamed Abkari's Replies | WordPress.org

---

# Mohamed Abkari

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Having Tagline Displayed Next The Title In Browser Title Area](https://wordpress.org/support/topic/having-tagline-displayed-next-the-title-in-browser-title-area/)
 *  Thread Starter [Mohamed Abkari](https://wordpress.org/support/users/patrekdev/)
 * (@patrekdev)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/having-tagline-displayed-next-the-title-in-browser-title-area/#post-12097020)
 * I solved the Issue which was coming from the title-tag support and the way it
   handles the document title parts. I simply wrote this filter to return an empty
   tagline when on home/front page.
 *     ```
       function document_filter_parts( $title_parts ) {
           // Alter the tagline output.
           $title_parts['tagline'] = '';
           return $title_parts;
       }
       add_filter( 'document_title_parts', 'document_filter_parts' );
       ```
   
 * Thanks for your help anyway.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Having Tagline Displayed Next The Title In Browser Title Area](https://wordpress.org/support/topic/having-tagline-displayed-next-the-title-in-browser-title-area/)
 *  Thread Starter [Mohamed Abkari](https://wordpress.org/support/users/patrekdev/)
 * (@patrekdev)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/having-tagline-displayed-next-the-title-in-browser-title-area/#post-12096897)
 * I developed theme myself from scratch for my business, I mean I’m not using the
   function wp_title which used to cause the problem but instead I’m using the support
   theme title-tag. Is there any suggestions you may have for me to help?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Contact Form 7 -There was an error trying to send your message. Please try again](https://wordpress.org/support/topic/contact-form-7-there-was-an-error-trying-to-send-your-message-please-try-again/)
 *  [Mohamed Abkari](https://wordpress.org/support/users/patrekdev/)
 * (@patrekdev)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/contact-form-7-there-was-an-error-trying-to-send-your-message-please-try-again/page/3/#post-11976868)
 * hey there,
 * I’m also struggling with this issue for days now, I tried almost all the above
   suggestions and still no results, and I have everything up to date just to make
   sure the problem isn’t coming from some conflicts in versions or updates.
    Any
   other suggestions please?

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