Title: Dave Loebig's Replies | WordPress.org

---

# Dave Loebig

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/pacesettermedia/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/pacesettermedia/replies/page/2/?output_format=md)

 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Filtering Query Loop Block with ACF User Field](https://wordpress.org/support/topic/filtering-query-loop-block-with-acf-user-field/)
 *  Thread Starter [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/)
 * (@pacesettermedia)
 * [11 months, 4 weeks ago](https://wordpress.org/support/topic/filtering-query-loop-block-with-acf-user-field/#post-18477043)
 * [@bcworkz](https://wordpress.org/support/users/bcworkz/) Thanks for moving the
   topic. And thanks for tips of what to research and try.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Completely disable events page?](https://wordpress.org/support/topic/completely-disable-events-page/)
 *  [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/)
 * (@pacesettermedia)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/completely-disable-events-page/#post-17881990)
 * [@davidmondok](https://wordpress.org/support/users/davidmondok/)
 * I had a similar problem in that Yoast published the tribe_events-sitemap.xml 
   sitemap. It included an entry for “~/events”. Then Google picked up thousands
   of links to empty calendar months and days, I think from that page.
 * I tried your code, and the XML sitemap still showed up. Though I didn’t rigorously
   test it, adjust it, or troubleshoot it.
 * For me the solution was in Yoast. Maybe just a partial solution.
    1. Go to Content Types > Events > Events archive > Search appearance.
    2. Deselect Show the archive for events in search results.
 * The page “~/events” still works, but with no links to it and without a sitemap
   entry, Google probably wouldn’t pick it up.
 * Hope this helps somebody who might find this.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Seriously Simple Podcasting] Changing Blog permalinks to Custom changes Podcast List Page URL](https://wordpress.org/support/topic/changing-blog-permalinks-to-custom-changes-podcast-list-page-url/)
 *  Thread Starter [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/)
 * (@pacesettermedia)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/changing-blog-permalinks-to-custom-changes-podcast-list-page-url/#post-17839933)
 * [@zahardoc](https://wordpress.org/support/users/zahardoc/)
 * I’m considering writing a blog post myself about this plus using Custom Post 
   Type Permalinks plugin to include the date in podcast urls.
 * Thanks for the filter option.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Seriously Simple Podcasting] Changing Blog permalinks to Custom changes Podcast List Page URL](https://wordpress.org/support/topic/changing-blog-permalinks-to-custom-changes-podcast-list-page-url/)
 *  Thread Starter [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/)
 * (@pacesettermedia)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/changing-blog-permalinks-to-custom-changes-podcast-list-page-url/#post-17834338)
 * Thanks. Wish I found that sooner. 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Seriously Simple Podcasting] Changing Blog permalinks to Custom changes Podcast List Page URL](https://wordpress.org/support/topic/changing-blog-permalinks-to-custom-changes-podcast-list-page-url/)
 *  Thread Starter [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/)
 * (@pacesettermedia)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/changing-blog-permalinks-to-custom-changes-podcast-list-page-url/#post-17823828)
 * First, I feel for you plugin makers… troubleshooting this stuff, especially with
   thousands of users. I’ve be tweaking and trying this and that; it can be tedious.
 * **Podcast Page Forwarding – Resolved, but I don’t know how**
 * The issue of the “~/podcast/” url forwarding to the feed is solved, but I don’t
   know how. As I tested more and cleared browser caches, it started working… “~/
   podcast/” shows the podcast list. And Yoast has this address in the XML site 
   maps. Yay.
 * **Prepending Podcast with Blog Permanlink Prefix – Fixed with Extra Code**
 * I used some code to set the “podcast” custom post type key “with_front” to false.
   Here’s the code.
 *     ```wp-block-code
       /** * Set 'with_front' to false for the 'podcast' post type. */add_filter( 'register_post_type_args', function( $args, $post_type ){    if( 'podcast' === $post_type && is_array( $args ) )            $args['rewrite']['with_front'] = false;    return $args;}, 99, 2 );
       ```
   
 * So far, so good. I’ve tested it on different browsers, cleared cashes and refreshed.
   It seems to work. There might be other implications of this, especially if SSP
   needs “with_front” set to true for some reason now or in the future.
 * **Quick Question if you Can: Does setting “with_front” to false have any known
   issues at the moment?**
 * This might have solved the podcast page forwarding, too, but I haven’t tested
   it well enough to be confident of that.
 * FYI: I found the code above here.
   [https://wordpress.stackexchange.com/questions/224371/how-to-change-with-front-key-from-an-existing-custom-post-type](https://wordpress.stackexchange.com/questions/224371/how-to-change-with-front-key-from-an-existing-custom-post-type)
 * Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Seriously Simple Podcasting] 3.4.0 upgrade makes default podcast feed URL 404](https://wordpress.org/support/topic/3-4-0-upgrade-makes-default-podcast-feed-url-404/)
 *  [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/)
 * (@pacesettermedia)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/3-4-0-upgrade-makes-default-podcast-feed-url-404/#post-17820976)
 * I’m researching how to redirect RSS feeds for a podcast I’m getting ready to 
   move, and I found this article.
   [https://www.rssboard.org/redirect-rss-feed](https://www.rssboard.org/redirect-rss-feed)
   It’s a bandage, not the best fix, but it might-could be a temporary fix. I haven’t
   tested either option (301 or XML redirect) yet.BTW, I found this post because
   I have a similar podcast URL issue with the site we’re building.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Seriously Simple Podcasting] Year, Month, Date in Episode URLs](https://wordpress.org/support/topic/year-month-date-in-episode-urls/)
 *  Thread Starter [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/)
 * (@pacesettermedia)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/year-month-date-in-episode-urls/#post-17814747)
 * Yes, let’s. I haven’t fully tested it yet, but that’s on me. If you want, I’ll
   update you if it doesn’t work or any lessons learned.
 * For future searchers, the slightly tested solution is the plug-in Custom Post
   Type Permalinks.
   [https://wordpress.org/plugins/custom-post-type-permalinks/](https://wordpress.org/plugins/custom-post-type-permalinks/)
 * [@zahardoc](https://wordpress.org/support/users/zahardoc/) , Thanks for the good
   plugin.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Block Visibility — Conditional Visibility Control for the Block Editor] Amazing, Highly Useful, Practical](https://wordpress.org/support/topic/amazing-highly-useful-practical/)
 *  Thread Starter [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/)
 * (@pacesettermedia)
 * [2 years ago](https://wordpress.org/support/topic/amazing-highly-useful-practical/#post-17755001)
 * 👍Good to hear. Well deserved.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Theme.json FontFace src Using External Source Like Google](https://wordpress.org/support/topic/theme-json-fontface-src-using-external-source-like-google/)
 *  Thread Starter [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/)
 * (@pacesettermedia)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/theme-json-fontface-src-using-external-source-like-google/#post-17085996)
 * Thanks [@bcworkz](https://wordpress.org/support/users/bcworkz/), I’ll read up
   on “wp_print_styles”
   [@chrleon](https://wordpress.org/support/users/chrleon/),
   I don’t have a specific answer, but try looking up  “wp_print_styles” and theme
   function.php. You’ll find at least some explanation and tutorials on the hook
   and adding functions to functions.php.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Custom Fields (ACF®)] ACF shortcodes not working in Full Site Editing templates](https://wordpress.org/support/topic/acf-shortcodes-not-working-in-full-site-editing-templates/)
 *  [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/)
 * (@pacesettermedia)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/acf-shortcodes-not-working-in-full-site-editing-templates/#post-17073923)
 * [@asafm7](https://wordpress.org/support/users/asafm7/) And I’m another it helped.
   Thanks for posting here for others to find.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twenty-Three] 2023 theme mobile menu break point](https://wordpress.org/support/topic/2023-theme-mobile-menu-break-point/)
 *  [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/)
 * (@pacesettermedia)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/2023-theme-mobile-menu-break-point/#post-16990666)
 * Thanks, [@uxl](https://wordpress.org/support/users/uxl/) , that answers the question
   I searched.
    -  This reply was modified 2 years, 8 months ago by [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Change Default Block Inserted with +](https://wordpress.org/support/topic/change-default-block-inserted-with/)
 *  Thread Starter [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/)
 * (@pacesettermedia)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/change-default-block-inserted-with/#post-16967100)
 * D’oh. That’s it. I did it to myself by forgetting I’ve been using that plugin
   for a long time. And that’s it.
 * So for future searchers, if WordPress Gutenberg inserts a classic paragraph by
   default, check if the plugin **Advanced Editor Tools** (previouslyTinyMCE Advanced)
   is installed. Then in settings for the plugin, deselect “Make the Classic Paragraph
   or Classic block the default block (hybrid mode)”.
 * Thanks.
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [Does WP Update on Local Wampserver?](https://wordpress.org/support/topic/does-wp-update-on-local-wampserver/)
 *  Thread Starter [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/)
 * (@pacesettermedia)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/does-wp-update-on-local-wampserver/#post-16964165)
 * Ugh… I caused the problem.
 * **I have the plugin WP Downgrade | Specific Core Version installed and set to
   6.2.**
 * So the “try again” always matched the current version to available version.
 * I want to delete this question because it’s almost embarrassing to post it.
 * Anyway, I’ll leave this answer and include the plugin name again, WP Downgrade
   | Specific Core Version, and the problem again “WordPress update try again not
   working”. Maybe the search engines will lead future searchers to this solution.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Manual updates to styles are lost when selecting a new style variation?](https://wordpress.org/support/topic/manual-updates-to-styles-are-lost-when-selecting-a-new-style-variation/)
 *  Thread Starter [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/)
 * (@pacesettermedia)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/manual-updates-to-styles-are-lost-when-selecting-a-new-style-variation/#post-16904399)
 * Thanks @anthonybartoli , I’m using Twenty Twentythree and clicking on a new style
   variation. That removes my manual changes under Style >typography.
 * For now, I’m using manual changes only for development, to see what the changes
   look like. When I’m satisfied, I put those settings in my own style variation.
   json file, and that makes them more permanent.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twenty-Three] Where is CSS for Body border-width: max(1vw, 0.5rem) Stored?](https://wordpress.org/support/topic/where-is-css-for-body-border-width-max1vw-0-5rem-stored/)
 *  [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/)
 * (@pacesettermedia)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/where-is-css-for-body-border-width-max1vw-0-5rem-stored/#post-16896433)
 * Thanks [@uxl](https://wordpress.org/support/users/uxl/) , that’s the info I was
   looking for, right down to the line number. Perfect.
 * For future searchers, I also found this bit of documentation on theme.json, Top
   Level Styles.
 * “Styles found at the top-level will be enqueued using the `body` selector.”
   [https://developer.wordpress.org/block-editor/how-to-guides/themes/theme-json/#top-level-styles](https://developer.wordpress.org/block-editor/how-to-guides/themes/theme-json/#top-level-styles)
    -  This reply was modified 2 years, 10 months ago by [Dave Loebig](https://wordpress.org/support/users/pacesettermedia/).

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

1 [2](https://wordpress.org/support/users/pacesettermedia/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/pacesettermedia/replies/page/2/?output_format=md)