triggame
Forum Replies Created
-
Forum: Plugins
In reply to: [Gutenberg] Gutenberg Editor Font ChangedThanks for responding.
Twenty Twenty-Three block theme with child theme. FSE displays new font perfectly with fonts added. Post editor and Page editor also display fonts perfectly when added. Its only when you activate the “gutenberg plugin” does the font display break in the post and page editor. The full site editor is not affected.Forum: Plugins
In reply to: [Gutenberg] Gutenberg Editor Font Changed@thelmachido did you add your new font to the theme.json file? and did you compare the editor with and without the plugin active? The point is that the block editor works perfectly well with a new font added. As soon as you activate this “Gutenberg plugin” the fonts added to a child theme do not display in the block editor. The only reason I wanted this plugin is to use the new css grid blocks available. The current blocks only use flexbox for the rows and stacks.
Forum: Plugins
In reply to: [Gutenberg] Gutenberg Editor Font ChangedI can confirm that the plugin also breaks my font preview in the post and page editor screens. The font previews on the appearance editor and website frontend work fine.
@menhairline did you find a solution?Forum: Plugins
In reply to: [Expandable Menus] Some fixes I've made…Thanks DannyUnitel!
Hi, thanks for responding.
No, the main container does not move. The submit button element moves and becomes an input submit element. It moves into the hidden advanced container which does not make logical sense why you would want to do something like that. Look at the code below:Styles enabled:
<div class="em-search-main"> <button class="em-search-submit loading" type="submit"> <div> <div class="em-search-advanced" style="display:none"> </div>Styles disabled:
<div class="em-search-main"> <div> <div class="em-search-advanced" style="display:none"> <input class="em-search-submit" type="submit" value="Search"> </div>Sorry, I don’t understand. I’ve figured out a hack by using my own jquery toggle function and css visibility, but it just all seems a little crazy to have to do that.
Forum: Plugins
In reply to: [Wp-Pro-Quiz] Cloze Questions ProblemYou find a solution? As soon as I add the curly braces: {} , it also breaks for me.
Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] Search placed in HeaderI had a horrible feeling that might be the case, thank you so much for responding so quickly.
Forum: Plugins
In reply to: [Meta Box] [Plugin: Meta Box] Simple checkboxFound a work-around – replaced it with a “select” box.
Thanks for a great plugin.Yup! It would be a bit strange trying to make a full permalink into a class. 🙂
Thanks, unfortunately that gives the full permalink address.
Thanks Marcus for the tip! This query worked for me:
<?php $my_query = new WP_Query( array( 'post_type' => 'event', 'event-categories' => 'my-category-slug-name' ) ); while ($my_query->have_posts()) : $my_query->the_post(); ?> <div> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <div class="excerpt"><?php the_excerpt(); ?></div> </div> <?php endwhile; ?>Forum: Fixing WordPress
In reply to: Two Different Excerpt Length'sFantastic. Thanks Keesiemeijer!
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Crop thumbnails?BEAUTIFUL!!!! Thank you so much for that patch. The irregular cropping was driving me crazy.
Forum: Plugins
In reply to: [Plugin: WP ImageTagger] does this work with WP Galleries?No worries, found another plugin which works on Galleries. For those of you who come across this post the “Media Tags” plugin has no problem with images in WordPress galleries.
Forum: Fixing WordPress
In reply to: How can I get the img src url using phpThanks Esmi.