Title: eric3d's Replies | WordPress.org

---

# eric3d

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/eric3d/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/eric3d/replies/page/3/?output_format=md)…
[7](https://wordpress.org/support/users/eric3d/replies/page/7/?output_format=md)
[8](https://wordpress.org/support/users/eric3d/replies/page/8/?output_format=md)
[9](https://wordpress.org/support/users/eric3d/replies/page/9/?output_format=md)
[→](https://wordpress.org/support/users/eric3d/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Prevent customers from placing orders](https://wordpress.org/support/topic/prevent-customers-from-placing-orders/)
 *  Thread Starter [eric3d](https://wordpress.org/support/users/eric3d/)
 * (@eric3d)
 * [5 months, 1 week ago](https://wordpress.org/support/topic/prevent-customers-from-placing-orders/#post-18741541)
 * Thanks for the quick response.
 * Customers need to be able to create accounts as there are many repeat customers
   and we want them to be able to keep track of their orders. So I’ll look at other
   options to restrict access by user role.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutenberg] Cover block borders not available with custom theme](https://wordpress.org/support/topic/cover-block-borders-not-available-with-custom-theme/)
 *  Thread Starter [eric3d](https://wordpress.org/support/users/eric3d/)
 * (@eric3d)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/cover-block-borders-not-available-with-custom-theme/#post-16967806)
 * Thanks Felipe. A simple sentence like “this features requires a theme with Appearance
   Tools enabled” would have helped greatly without adding much length to the announcement.
   It seems to me that mentioning dependencies is a must.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutenberg] Cover block borders not available with custom theme](https://wordpress.org/support/topic/cover-block-borders-not-available-with-custom-theme/)
 *  Thread Starter [eric3d](https://wordpress.org/support/users/eric3d/)
 * (@eric3d)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/cover-block-borders-not-available-with-custom-theme/#post-16966119)
 * Thanks. I figured it out after examining the Twenty Twenty Three theme closely
   and can confirm it works. Just wish that was mentionned in the announcements 
   touting the new feature.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutenberg] Prepend query loop block](https://wordpress.org/support/topic/prepend-query-loop-block/)
 *  Thread Starter [eric3d](https://wordpress.org/support/users/eric3d/)
 * (@eric3d)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/prepend-query-loop-block/#post-16945719)
 * Done: [https://github.com/WordPress/gutenberg/issues/53316](https://github.com/WordPress/gutenberg/issues/53316)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutenberg] Disable Cover Block text color](https://wordpress.org/support/topic/disable-cover-block-text-color/)
 *  Thread Starter [eric3d](https://wordpress.org/support/users/eric3d/)
 * (@eric3d)
 * [3 years ago](https://wordpress.org/support/topic/disable-cover-block-text-color/#post-16693835)
 * Thanks, but this still sets a specific color for all text within a cover block.
 * The third CSS rule ( .wp-block-cover h1:not(.has-text-color),… ) with color: 
   inherit will make all those elements white.
 * With my workaround, the text color is defined 3 times:
   1. By me, in theme.json
   elements2. By Gutenberg, changing everything to black or white3. By me again,
   in CSS targeting the elements within a cover block
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Grid Master — Post Grids & AJAX Filters] Link in featured image](https://wordpress.org/support/topic/link-in-featured-image/)
 *  [eric3d](https://wordpress.org/support/users/eric3d/)
 * (@eric3d)
 * [3 years ago](https://wordpress.org/support/topic/link-in-featured-image/#post-16689464)
 * One way would be to edit the plugin file ajax-filter-posts.php, line 312 from:
 *     ```wp-block-code
       <div class="am_thumb">
       	<?php the_post_thumbnail('full'); ?>
       </div>
       ```
   
 * to:
 *     ```wp-block-code
       <div class="am_thumb">
       	<a href="<?php echo get_the_permalink(); ?>"><?php the_post_thumbnail('full'); ?></a>
       </div>
       ```
   
 * But that will get overwritten by the next plugin update. It would be better if
   the developer could add a “link_thumbnail” parameter to the shortcode and update
   the template to something like:
 *     ```wp-block-code
       <div class="am_thumb">
       	<?php } if( $args['link_thumbnail'] == true ){ ?>
       		<a href="<?php echo get_the_permalink(); ?>"><?php the_post_thumbnail('full'); ?></a>
       	<?php } else { ?>
       		<?php the_post_thumbnail('full'); ?>
       	<?php } ?>
       </div>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutenberg] Disable Cover Block text color](https://wordpress.org/support/topic/disable-cover-block-text-color/)
 *  Thread Starter [eric3d](https://wordpress.org/support/users/eric3d/)
 * (@eric3d)
 * [3 years ago](https://wordpress.org/support/topic/disable-cover-block-text-color/#post-16686410)
 * The only solution I found was to redefine the styles in my theme CSS. I would
   have preferred a more elegant solution.
 *     ```wp-block-code
       // Cover Block override
       .wp-block-cover .wp-block-cover__inner-container,
       .wp-block-cover-image .wp-block-cover__inner-container{
       	color: inherit;
       }
       .wp-block-cover-image.is-light .wp-block-cover__inner-container,
       .wp-block-cover.is-light .wp-block-cover__inner-container{
       	color: inherit;
       }
       .wp-block-cover h1:not(.has-text-color),
       .wp-block-cover-image h1:not(.has-text-color),
       .wp-block-cover h2:not(.has-text-color),
       .wp-block-cover-image h2:not(.has-text-color) {
       	color: var(--wp--preset--color--secondary);
       }
       .wp-block-cover h3:not(.has-text-color),
       .wp-block-cover-image h3:not(.has-text-color),
       .wp-block-cover h4:not(.has-text-color),
       .wp-block-cover-image h4:not(.has-text-color),
       .wp-block-cover h5:not(.has-text-color),
       .wp-block-cover-image h5:not(.has-text-color),
       .wp-block-cover h6:not(.has-text-color),
       .wp-block-cover-image h6:not(.has-text-color) {
       	color: var(--wp--preset--color--tertiary);
       }
       .wp-block-cover p:not(.has-text-color),
       .wp-block-cover-image p:not(.has-text-color) {
       	color: inherit;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Keep Product short description metabox open](https://wordpress.org/support/topic/keep-product-short-description-metabox-open/)
 *  Thread Starter [eric3d](https://wordpress.org/support/users/eric3d/)
 * (@eric3d)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/keep-product-short-description-metabox-open/#post-16197322)
 * Thanks. While the CSS works, it’s not a very elegant solution.
 * I did a bit more troubleshooting since a test site was not exhibiting this problem.
   I updated the test site’s plugins one at a time and as soon as I updated WooCommerce
   from 6.9.3 to 7.1, the same problem appeared.
 * Since I’ve had the issue before 7.1, I assume it’s a regression in WC 7.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] Jetpack “Speed up image” messes gallery code](https://wordpress.org/support/topic/jetpack-speed-up-image-messes-gallery-code/)
 *  Thread Starter [eric3d](https://wordpress.org/support/users/eric3d/)
 * (@eric3d)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/jetpack-speed-up-image-messes-gallery-code/#post-16187480)
 * All set. Although it’s weird that it’s the default gallery type.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] Jetpack “Speed up image” messes gallery code](https://wordpress.org/support/topic/jetpack-speed-up-image-messes-gallery-code/)
 *  Thread Starter [eric3d](https://wordpress.org/support/users/eric3d/)
 * (@eric3d)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/jetpack-speed-up-image-messes-gallery-code/#post-16187044)
 * Update: activating image optimization converts the gallery to a tiled gallery.
   Changing it to a thumbnail gallery fixed the issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[List category posts] Tags instead of Categories](https://wordpress.org/support/topic/tags-instead-of-categories-3/)
 *  Thread Starter [eric3d](https://wordpress.org/support/users/eric3d/)
 * (@eric3d)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/tags-instead-of-categories-3/#post-16014579)
 * Perfect. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackWPup – WordPress Backup & Restore Plugin] WARNING: Trying to access array offset on value of type null](https://wordpress.org/support/topic/warning-trying-to-access-array-offset-on-value-of-type-null/)
 *  Thread Starter [eric3d](https://wordpress.org/support/users/eric3d/)
 * (@eric3d)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/warning-trying-to-access-array-offset-on-value-of-type-null/#post-14664867)
 * Thanks. I downgraded to PHP 7.4 and the warning went away.
 * Eric
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Lightbox with PhotoSwipe] Remove webkit button shadow](https://wordpress.org/support/topic/remove-webkit-button-shadow/)
 *  Thread Starter [eric3d](https://wordpress.org/support/users/eric3d/)
 * (@eric3d)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/remove-webkit-button-shadow/#post-14662257)
 * You’re correct, it came from somewhere else in the theme. Thanks for looking 
   into it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[3D FlipBook – PDF Embedder, PDF Flipbook Viewer, Flipbook Image Gallery] Lightbox CSS conflicts with Twenty Fifteen theme](https://wordpress.org/support/topic/lightbox-css-conflicts-with-twenty-fifteen-theme/)
 *  Thread Starter [eric3d](https://wordpress.org/support/users/eric3d/)
 * (@eric3d)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/lightbox-css-conflicts-with-twenty-fifteen-theme/#post-14293964)
 * For clarification, the lightbox itself works fine. It’s the body:before CSS rule
   that gets messed up.
 * Twenty-fifteen CSS:
 *     ```
       body:before {
       	background-color: rgba(20, 20, 45, 0.8);
       	box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
       	content: "";
       	display: block;
       	height: 100%;
       	min-height: 100%;
       	position: fixed;
       	top: 0;
       	left: 0;
       	width: 29.4118%;
       	z-index: 0; /* Fixes flashing bug with scrolling on Safari */
       }
       ```
   
 * 3D Flipbook client.css:
 *     ```
       body::before {
         position: fixed;
         content: ' ';
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background-color: #000;
         z-index: -10;
         opacity: 0;
         transition: opacity 0.5s, z-index 0.5s step-end;
       }
       ```
   
 * But being able to prevent client.css from loading would also allow me to adjust
   other things.
 * Eric
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[3D FlipBook – PDF Embedder, PDF Flipbook Viewer, Flipbook Image Gallery] Lightbox CSS conflicts with Twenty Fifteen theme](https://wordpress.org/support/topic/lightbox-css-conflicts-with-twenty-fifteen-theme/)
 *  Thread Starter [eric3d](https://wordpress.org/support/users/eric3d/)
 * (@eric3d)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/lightbox-css-conflicts-with-twenty-fifteen-theme/#post-14293901)
 * Thanks,
    I have tried _wp\_deregister\_style(‘3d-flip-book-client’);_ and _wp\
   _dequeue\_style(‘3d-flip-book-client’);_ both as add_action and add_filter but
   cannot prevent that style sheet from loading.
 * I see my style flash for 1 second and get overwritten as soon as client.css is
   loaded.
 * Eric

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

1 [2](https://wordpress.org/support/users/eric3d/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/eric3d/replies/page/3/?output_format=md)…
[7](https://wordpress.org/support/users/eric3d/replies/page/7/?output_format=md)
[8](https://wordpress.org/support/users/eric3d/replies/page/8/?output_format=md)
[9](https://wordpress.org/support/users/eric3d/replies/page/9/?output_format=md)
[→](https://wordpress.org/support/users/eric3d/replies/page/2/?output_format=md)