idbwebmaster
Forum Replies Created
-
Forum: Plugins
In reply to: [URL Shortener by MyThemeShop] Broke after try to add new linkSame issue. No response from the team ?
Forum: Themes and Templates
In reply to: [Neve] Manage the width of widgets in the header menuHello 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
In reply to: [DX Delete Attached Media] Delete button on pluginHello @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
In reply to: [My WP Glossary] Décalage de la page en mode responsiveBonjour,
Le plugin est-il toujours maintenu ?
Bien à vous,
Forum: Themes and Templates
In reply to: [Mesmerize] Breadcrumb support (with Yoast ?)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 2 years, 9 months ago by idbwebmaster.
Forum: Themes and Templates
In reply to: [Mesmerize] Breadcrumb support (with Yoast ?)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
In reply to: [Mesmerize] Breadcrumb support (with Yoast ?)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
Kind regards,
Forum: Themes and Templates
In reply to: [Mesmerize] Search Facility?@marko2002, However, there are alternatives: https://www.ads-software.com/plugins/add-search-to-menu/
Forum: Plugins
In reply to: [Social Media Auto Publish] Publication in a Facebook group is not possibleStill 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
In reply to: [Social Media Auto Publish] Publication in a Facebook group is not possibleI 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/) by adding the application “SAMP Lite” to the group.Forum: Themes and Templates
In reply to: [Mesmerize] AMP incompatibilityHi,
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
In reply to: [Mesmerize] AMP incompatibilityHello 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
In reply to: [Starbox - the Author Box for Humans] CSS Issue – description shiftIt’s perfect ! A huge thank you for your help !
Bug fixed (specific theme involved, plugin ok).
- This reply was modified 3 years, 1 month ago by idbwebmaster.
Forum: Plugins
In reply to: [My WP Glossary] Error “Warning: preg_match(): Unknown modifier ‘L'”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
In reply to: [Mesmerize] Issue with sticky navigation menuHello,
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,