eMBurr
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Find out is block is attached to post/pageThanks! Cool little plug-in. That help with something else.
And thanks for the answer that th info is in the post content. That help me find what in needed.
- This reply was modified 1 year, 11 months ago by eMBurr.
thanks for the help. Appreciated.
As you can see in the screenshot the top grid is set to one post and one column. Under it has another instance of the same grid block but with 2 post shown and one column selected. But both show two columns not one.
Sorry one more.. set up a local host test with 6.1 and the plug-in works as expected. Menu not hidden. So must be a change in 6.2.
Nick I think we are lookin g at different things. Picture attached.
- This reply was modified 1 year, 11 months ago by eMBurr.
Nick,
just tried a fresh 6.2 install (localhost running in mamp server) with only this plugging running. I get the same results in FSE (hidden menu). Works on post edit screens.
Thanks for the reply.
i have this set to only one column but on mobile it shows one post but with two columns. You can replicate this I am sure.I will submit the feature suggestion as noted.
Morning Nick,
For me I noticed it first on my Mac book using chrome. I actually thought the plug-in didn’t work for me at all as every time I clicked a button nothing happened. I tried again at work from my windows machine (2 big screens) running the latest windows and updated chrome.
So mac and windows both using newest version of chrome.
since I know you can’t replicate it I will try the other browsers and start killing plugins off to see what I can figure out.
Edit..
Same thing with MS Edge for me.
Deactivated all plug-ins and I get the same results. Menus hidden in FSE.
Hey Nick,
of course I should have mentioned it. 6.2 sir! No Gutenberg using the FSE twenty twenty three custom.
Forum: Plugins
In reply to: [Code Snippets] Can’t delete pluginI think it was a caching plugin. After a few hours I was able to delete it.
Forum: Plugins
In reply to: [Theme My Login] Reset link invalidForum: Plugins
In reply to: [Event Organiser] problem with enabling pluginftp to your server go to this file..
/wp-content/plugins/event-organiser/includes/event-organiser-register.php
and remove lines 117 to 134 and save. All should be well.Forum: Plugins
In reply to: [Eazyest Gallery] Attachment click settings being ignoredSo I changed
' . the_title_attribute() . '
to this' .the_title_attribute('echo=0') . '
from the below and that got rid of the extra text. Also FYI this bit did not output the title to the html href. But now it does.$next_link = ezg_add_popup( '<a href="' . $next_attachment_url . '" title="' . the_title_attribute() . '" rel="attachment">', $post->ID ) . wp_get_attachment_image( $post->ID, $attachment_size ) . '</a>';
What does ezg_add_popup do? I do not get any popup or info? Is it just the link function.
Forum: Plugins
In reply to: [Eazyest Gallery] Attachment click settings being ignoredIf the setting is theme default the next prev links work (clicking the image). But if set to do nothing it links to full image.
I got rid of the extra image in
the_content();
doing this.<?php $content = get_the_content(); $postOutput = preg_replace('/<img[^>]+./','', $content); echo $postOutput; //the_content(); ?>
But I can not find where the text above the image (on attachment page) is coming from. It is the title text and is output in the html like this.
<div class="entry-attachment"> <div class="attachment"> TITLE TEXT HERE?? <a rel="attachment" title="" href=".../gallery/fall/imgp0183/">
…etc
How can I stop that text output?
Forum: Plugins
In reply to: [Eazyest Gallery] Attachment click settings being ignoredI did changed everything in all templates to be sure (functions too). I keep digging around…
Forum: Plugins
In reply to: [Eazyest Gallery] Attachment click settings being ignoredSorry I thought I read through most posts here.
Seems the same with this version 0.1.0-RC-8-241?