Can I alter the block editor’s paste text behavior?
This is apparently Gutenberg bug 24895. The problem being that Hello: is a well-formed URI scheme, so WP shouldn’t rely on new URL() alone to recognize a pasted link. new URL(‘Hello: world’);
This is apparently Gutenberg bug 24895. The problem being that Hello: is a well-formed URI scheme, so WP shouldn’t rely on new URL() alone to recognize a pasted link. new URL(‘Hello: world’);
Short and anticlimactic answer: the big fancy corporate firewall protecting the server was set to HTTP “application” mode. We switched it over to simply allowing all traffic on port “80” and the issue was solved. Rarst♦ was right!
If you’re running the Video Download Helper in your browser, try disabling that, and it will likely disappear. If it does, this also explains why it’s not on every page. Not every page will have that type of media, and what’s tricky is that it will not show up in View Source at all. Also … Read more
Install and activate User Meta Manager plugin. Go to Users -> User Meta Manager. Under your user click on Edit Meta. From pull down list of meta keys select edit_post_per_page and click Submit. Change the value to 10 and click on Update. All done.
Something that generates the image links is broken. You are not getting a valid src attribute in the title tag. The result is: <p class=”thumb”> <a href=”http://paper-backgrounds.com/red-grunge-concrete-texture-3/” title=”Red Grunge Concrete Texture”> <img src=”undefined” alt=”Red Grunge Concrete Texture” height=”132″ width=”236″> </a> </p> Without that src attribute the image can’t load. As you don’t post the code … Read more
Mariolex, Have you tried using meta_query? I wrote something quick and untested but it may do the trick: $args = array( ‘post_type’ => ‘posts’, ‘showposts’ => ‘-1’, ‘meta_query’ => array( array( ‘key’ => ‘pickup_address’, //meta_key ‘value’ => ’43 Longview Drive, Papamoa’, //meta_value ‘compare’ => ‘LIKE’, //compare ), ), ); $query = new WP_Query( $args ); … Read more
I’ve had this happen to me in the past at least 3-4 times but I don’t really know what caused it. More often than not I was able to solve it by deleting the menu I was having problems with and creating a new one.
Word count not accurate – potential bug
I too experience this when I go to the [domain]/wp-admin page to login. The issue seems to be with the redirect which loops back to the login page instead of going to the Dashboard. Instead of going to the [domain]/wp-admin to login, try going to [domain]/wp-login.php instead. The redirect seems to work correctly this way. … Read more
WordPress Multisite logout conflict