Title: idbwebmaster's Replies | WordPress.org

---

# idbwebmaster

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[URL Shortener by MyThemeShop] Broke after try to add new link](https://wordpress.org/support/topic/broke-after-try-to-add-new-link/)
 *  [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/)
 * (@idbwebmaster)
 * [3 years ago](https://wordpress.org/support/topic/broke-after-try-to-add-new-link/#post-16917968)
 * Same issue. No response from the team ?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Neve] Manage the width of widgets in the header menu](https://wordpress.org/support/topic/manage-the-width-of-widgets-in-the-header-menu/)
 *  Thread Starter [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/)
 * (@idbwebmaster)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/manage-the-width-of-widgets-in-the-header-menu/#post-16351103)
 * Hello Vitis,
 * Thank you for your answer. I understand the reasons that pushed you to remove
   this feature.
   It would be interesting to have an alternative to be able to place
   a search field that makes the whole width in the header. This aspect of UX is
   essential and **used by all major e-commerce** in the world.Do you think it is
   possible to study it please ?
 * Thank you very much for the theme and your hard work 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DX Delete Attached Media] Delete button on plugin](https://wordpress.org/support/topic/delete-button-on-plugin/)
 *  Thread Starter [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/)
 * (@idbwebmaster)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/delete-button-on-plugin/#post-15715248)
 * Hello [@pgeorgiev](https://wordpress.org/support/users/pgeorgiev/)
 * Thank you for taking the time to answer me and for considering my proposal.
 * Small suggestion concerning this upcoming feature: it would be interesting to
   perform the deletion action in “bulk” mode so as not to trigger a server-side
   timeout 🙂
 * Best regards,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[My WP Glossary] Décalage de la page en mode responsive](https://wordpress.org/support/topic/decalage-de-la-page-en-mode-responsive/)
 *  Thread Starter [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/)
 * (@idbwebmaster)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/decalage-de-la-page-en-mode-responsive/#post-15498145)
 * Bonjour,
 * Le plugin est-il toujours maintenu ?
 * Bien à vous,
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mesmerize] Breadcrumb support (with Yoast ?)](https://wordpress.org/support/topic/breadcrumb-support-with-yoast/)
 *  Thread Starter [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/)
 * (@idbwebmaster)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/breadcrumb-support-with-yoast/#post-15390967)
 * If anyone is interested, I placed my Yoast breadcrumb directly under the title_hero(
   in /wp-content/themes/mesmerize/inc/header-options/content-options/inner-pages.
   php )
 * _Note : As mentioned by cristianbarbu, it is better to use a plugin or create
   a child theme to override Mesmerize._
 * I wanted to remove the title of the article from the breadcrumb trail. The trick
   is to remove the last element of the breadcrumb trail.
 * **Warning**: this works for articles, but it also deletes the element when we
   are in a category (which breaks the consistency of the breadcrumb trail).
 * I finally found a trick that consists in adding an additional condition to the
   filter of the breadcrumb trail by using the function :
    `is_singular('post')`
 * Here is the final code :
 *     ```
       /*
           template functions
       */
   
       function mesmerize_print_inner_pages_header_content()
       {
           do_action('mesmerize_before_inner_page_header_content');
           ?>
           <div class="inner-header-description gridContainer">
               <div class="row header-description-row">
           <div class="col-xs col-xs-12">
               <h1 class="hero-title">
                   <?php echo mesmerize_title(); ?>
               </h1>
               <?php if ( function_exists('yoast_breadcrumb') ) {
                   function adjust_single_breadcrumb( $link_output) {
       	            if (is_singular('post') AND (strpos( $link_output, 'breadcrumb_last' ) !== false )) {
       		            $link_output = '';
       	            }
          	        return $link_output;
                   }
                   add_filter('wpseo_breadcrumb_single_link', 'adjust_single_breadcrumb' );
   
                   yoast_breadcrumb( '<p id="breadcrumbs">','</p>' );
                   }
               ?>
               <?php
               $show_subtitle = get_theme_mod('inner_header_show_subtitle', true);
               $show_subtitle = apply_filters("inner_header_show_subtitle", $show_subtitle);
   
               if ($show_subtitle && mesmerize_post_type_is(array('post', 'attachment'))):
                   ?>
                   <p class="header-subtitle"><?php echo esc_html(get_bloginfo('description')); ?></p>
               <?php endif; ?>
           </div>
               </div>
           </div>
           <?php
   
           do_action('mesmerize_after_inner_page_header_content');
       }
       ```
   
    -  This reply was modified 4 years, 5 months ago by [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mesmerize] Breadcrumb support (with Yoast ?)](https://wordpress.org/support/topic/breadcrumb-support-with-yoast/)
 *  Thread Starter [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/)
 * (@idbwebmaster)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/breadcrumb-support-with-yoast/#post-15390852)
 * Thank’s a lot for your quick answer 🙂
 * I’ve added for test. I still have to create a child theme so that my changes 
   are not overwritten the next time I update Mesmerize.
 * Kind regards,
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mesmerize] Breadcrumb support (with Yoast ?)](https://wordpress.org/support/topic/breadcrumb-support-with-yoast/)
 *  Thread Starter [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/)
 * (@idbwebmaster)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/breadcrumb-support-with-yoast/#post-15390076)
 * Hello,
 * Sorry if I did not explain myself well.
 * My proposal is to integrate a Yoast breadcrumb to the Mesmerize theme. For exemple,
   in “post-meta” div ?
 * The little code for add this : [https://yoast.com/help/implement-wordpress-seo-breadcrumbs/#implement](https://yoast.com/help/implement-wordpress-seo-breadcrumbs/#implement)
 * Kind regards,
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mesmerize] Search Facility?](https://wordpress.org/support/topic/search-facility-5/)
 *  [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/)
 * (@idbwebmaster)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/search-facility-5/#post-15143267)
 * [@marko2002](https://wordpress.org/support/users/marko2002/), However, there 
   are alternatives: [https://wordpress.org/plugins/add-search-to-menu/](https://wordpress.org/plugins/add-search-to-menu/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Social Media Auto Publish] Publication in a Facebook group is not possible](https://wordpress.org/support/topic/publication-in-a-facebook-group-is-not-possible-i-paid-my-license/)
 *  Thread Starter [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/)
 * (@idbwebmaster)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/publication-in-a-facebook-group-is-not-possible-i-paid-my-license/#post-15133247)
 * Still the same problem, the following error message appears in spite of the applied
   authorizations and the SMAP Lite application installed and authorized to publish
   on the group.
    I lose hope 🙁
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Social Media Auto Publish] Publication in a Facebook group is not possible](https://wordpress.org/support/topic/publication-in-a-facebook-group-is-not-possible-i-paid-my-license/)
 *  Thread Starter [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/)
 * (@idbwebmaster)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/publication-in-a-facebook-group-is-not-possible-i-paid-my-license/#post-15132822)
 * I received an answer from your support by email.
    I test the solution mentioned
   here ([https://help.xyzscripts.com/docs/social-media-auto-publish/faq/how-can-i-add-or-remove-an-app-from-a-group-that-i-manage/](https://help.xyzscripts.com/docs/social-media-auto-publish/faq/how-can-i-add-or-remove-an-app-from-a-group-that-i-manage/))
   by adding the application “SAMP Lite” to the group.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mesmerize] AMP incompatibility](https://wordpress.org/support/topic/amp-incompatibility/)
 *  Thread Starter [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/)
 * (@idbwebmaster)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/amp-incompatibility/#post-15099178)
 * Hi,
 * I’ve continue to try a debugging, but white cabbage for the moment.
 * I’ve just discover an error un Browser console :
 * **Uncaught ReferenceError: heateorSssFloatingAlignment is not defined**
    at HTMLDocument.
   <anonymous> (customize.php?url=https%3A%2F%2Fwww.xxx.comr%2Ftitle-of-example-
   post%2Famp%2F&autofocus[panel]=amp_panel:6098) at e (jquery.min.js?ver=3.6.0:
   2) at t (jquery.min.js?ver=3.6.0:2)
 * I’ve try to disable all JS in AMP configurator, but the problem persist.
 * I also tried to change my AMP theme (I use Legacy, the only theme that seems 
   to be compatible with Mesmerize), but I still have the problem.
 * Hoping that these new elements can provide you with new avenues of investigation.
 * Regards,
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mesmerize] AMP incompatibility](https://wordpress.org/support/topic/amp-incompatibility/)
 *  Thread Starter [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/)
 * (@idbwebmaster)
 * [4 years, 9 months ago](https://wordpress.org/support/topic/amp-incompatibility/#post-15073976)
 * Hello cristianbarbu,
 * Thank’s for you interest. I tried to disable the cache and CSS/JS minification,
   but the problem persists.
 * I’m not sure how to get out of this problem, knowing that 80% of my traffic is
   mobile (and therefore AMP).
 * I’m thinking about disabling AMP for the moment, but Google might penalize me:-/
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Starbox - the Author Box for Humans] CSS Issue – description shift](https://wordpress.org/support/topic/css-issue-description-shift/)
 *  Thread Starter [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/)
 * (@idbwebmaster)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/css-issue-description-shift/#post-14965473)
 * It’s **perfect** ! A huge thank you for your help !
 * Bug fixed (_specific theme involved, plugin ok_).
    -  This reply was modified 4 years, 10 months ago by [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[My WP Glossary] Error “Warning: preg_match(): Unknown modifier ‘L'”](https://wordpress.org/support/topic/error-warning-preg_match-unknown-modifier-l/)
 *  Thread Starter [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/)
 * (@idbwebmaster)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/error-warning-preg_match-unknown-modifier-l/#post-14562128)
 * J’ai solutionné le problème (un “/L” dans un titre d’entrée du glossaire).
 * Je vous invite a protéger vos regexp avec la fonction preg_quote. Outre le bug,
   cela génère une **faille de sécurité**.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mesmerize] Issue with sticky navigation menu](https://wordpress.org/support/topic/issue-with-sticky-navigation-menu/)
 *  Thread Starter [idbwebmaster](https://wordpress.org/support/users/idbwebmaster/)
 * (@idbwebmaster)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/issue-with-sticky-navigation-menu/#post-14355700)
 * Hello,
 * I have news about my issue. Disabling Elementor solve the issue.
    However, elementor
   has become indispensable on my site.
 * **Synthetic** : Elementor (3.2.1) has become incompatible with the Mesmerize 
   theme.
 * Can we hope a bug fix ?
 * Best regards,

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

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