Forum Replies Created

Viewing 15 replies - 1 through 15 (of 77 total)
  • Thread Starter Gabe462

    (@gabe462)

    I resolved this using the Yoast Test Helper plugin, and following these instructions to reset Yoast indexables.

    https://yoast.com/help/how-to-reset-yoast-indexables/

    Thread Starter Gabe462

    (@gabe462)

    As I said in my second comment, I’ve tested disabling all plugins. This removes the noindex. when I activate only Yoast, the noindex appears again.

    With only yoast active, I see this

    <!DOCTYPE html><html lang="en-US"><head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name='robots' content='noindex, follow' />
    <!-- This site is optimized with the Yoast SEO plugin v23.7 - https://yoast.com/wordpress/plugins/seo/ --> <!-- Admin only notice: this page does not show a meta description because it does not have one, either write it for this page specifically or go into the [Yoast SEO - Settings] menu and set up a template. --> <meta property="og:locale" content="en_US" class="yoast-seo-meta-tag" /> <meta property="og:type" content="website" class="yoast-seo-meta-tag" /> <meta property="og:title" content="Gabe Herbert" class="yoast-seo-meta-tag" /> <meta property="og:url" content="https://gabeherbert.com/" class="yoast-seo-meta-tag" /> <meta property="og:site_name" content="Gabe Herbert" class="yoast-seo-meta-tag" /> <meta name="twitter:card" content="summary_large_image" class="yoast-seo-meta-tag" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"CollectionPage","@id":"https://gabeherbert.com/","url":"https://gabeherbert.com/","name":"Gabe Herbert -","isPartOf":{"@id":"https://gabeherbert.com/#website"},"about":{"@id":"https://gabeherbert.com/#/schema/person/55918cc706f3c6b510e6ebafaebf3deb"},"breadcrumb":{"@id":"https://gabeherbert.com/#breadcrumb"},"inLanguage":"en-US"},{"@type":"BreadcrumbList","@id":"https://gabeherbert.com/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home"}]},{"@type":"WebSite","@id":"https://gabeherbert.com/#website","url":"https://gabeherbert.com/","name":"Gabe Herbert","description":"","publisher":{"@id":"https://gabeherbert.com/#/schema/person/55918cc706f3c6b510e6ebafaebf3deb"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://gabeherbert.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https://gabeherbert.com/#/schema/person/55918cc706f3c6b510e6ebafaebf3deb","name":"Gabe","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://gabeherbert.com/#/schema/person/image/","url":"https://secure.gravatar.com/avatar/69ba1f72dcf7d460e5d6623ca5011cab?s=96&r=g","contentUrl":"https://secure.gravatar.com/avatar/69ba1f72dcf7d460e5d6623ca5011cab?s=96&r=g","caption":"Gabe"},"logo":{"@id":"https://gabeherbert.com/#/schema/person/image/"},"sameAs":["https://gabeherbert.com"]}]}</script> <!-- / Yoast SEO plugin. -->
    <title>Gabe Herbert</title>

    With all plugins disabled, including mu-plugins, I see this

    <!DOCTYPE html>
    <html lang="en-US">
    <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name='robots' content='max-image-preview:large' />
    <title>Gabe Herbert</title>

    I also tested switching from twentytwentyfour to twentytwentythree, and see the same.

    Thanks for you help!

    Thread Starter Gabe462

    (@gabe462)

    I should add that I also tested with all other plugins disabled, and Yoast still added <meta name=’robots’ content=’noindex, follow’ /> to the blog.

    Gabe462

    (@gabe462)

    I’m running into the same issue.

    Turnstile JS is inserted before the form, whereas jQuery is enqueued in the footer.

    Thread Starter Gabe462

    (@gabe462)

    Thank you for your quick response!

    Thread Starter Gabe462

    (@gabe462)

    I’m getting a clean response now.

    https://thecontractorfight.com/testimonials/

    I noticed the issue because all of the avatar images were broken. I deleted all the reviews and reloaded, and you’re right- no avatars at all now. Better than broken images at least.

    Thread Starter Gabe462

    (@gabe462)

    IMO, you’ve added two menus to my dashboard that only contain set-it-and-forget-it items. The CRM Perks menu should be a tab in Zendesk settings, which should be in the CF7 menu, or a settings page. The extra clutter adds no value.

    Plugin works great though.

    Thread Starter Gabe462

    (@gabe462)

    There is definitely a small icon added to the left of the WP menu in the top left corner of the screen when I activate Total Upkeep.

    Thread Starter Gabe462

    (@gabe462)

    Oh, are you saying that the “send update notification” checkbox is designed as a manual switch for sending notifications on the next post save? That would make sense as to why it never stays checked!

    I only have this on a local dev site, so I can’t share a URL.

    Thread Starter Gabe462

    (@gabe462)

    Alerts are not sending on post updates.

    That’s related to the fact that I can’t permanently select “send update notification”. When I click that and hit update, a notification email is sent twice. Upon reloading the editor, the box is again unchecked.

    I’ve looked at the database and see that the ‘alertme_enable_post_alertme’ meta is never set.

    We can try a bit more, it should work- I’m pretty sure regex is interpreted via PHP, so there shouldn’t be anything that can break it on your server.

    What happened when you went to one of the /product-category/urls ? Just no redirect? What about just going to /product-category/ ?

    Here’s that regex demonstrated in a great learning tool: https://regex101.com/r/sP0sD6/4

    Click on Modules. When you hover over WordPress or Apache you’ll see CSV appear. That exports rules to a CSV file.

    try
    from:
    (?i)\/product-category\/(.*)

    to:
    /destination-page

    The (?.i) makes the test string case-insensitive. Are you also trying to catch requests via FTP? I’m pretty sure that’s beyond the scope of what Redirection or WordPress can handle. You don’t need to specify http or the hostname in general, and can just focus on the path.

    So this isn’t about regex, right? You’re not checking the regex box?

    If it’s not sensitive, maybe provide the actual URL’s you’re redirecting from and to.

    Forum: Plugins
    In reply to: [Redirection] Query String

    Try this

    source:
    \/default\.aspx(.*) [click regex]

    target:
    https://www.example.com/$1

    See this tested on regex101.com
    https://regex101.com/r/sP0sD6/1

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