Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • davidjason

    (@davidjason)

    Great that you got it sorted! Just a follow-up in case anyone else hits this: The WP_Dependencies deprecation warning typically appears when themes or plugins are written for older WordPress versions. Sometimes the issue appears because:

    1. A plugin or theme hasn’t been updated since WP 5.x and uses deprecated code
    2. You have an old custom code snippet using WP_Dependencies directly

    If the warning comes back in future, updating Kalidasa theme might fix it. You can also check the debug.log in /wp-content/ to see exactly which plugin/theme is causing it.

    Thanks for sharing the solution!

    davidjason

    (@davidjason)

    Since this happened after the WP 6.9 update, here are a few more things to try:

    1. Check if it’s an Eduma theme issue: Try switching to a default theme temporarily to see if images load. If they do, it’s likely an Eduma CSS or compatibility problem.
    2. Flush your image cache: Go to Settings → Media, then check if image sizes need to be regenerated. Use a plugin like “Regenerate Thumbnails” to reset all image sizes.
    3. Check file permissions: Make sure /wp-content/uploads folder has correct permissions (usually 755)
    4. Check .htaccess: Sometimes WP 6.9 changes need .htaccess rules updated. Try temporarily disabling it to test.
    5. Contact Eduma/Learnpress support: Since this is a specific plugin/theme combo, they may have known compatibility issues with WP 6.9.

    Let us know what you find and we can dig deeper!

    davidjason

    (@davidjason)

    One more thing to try: Sometimes CSS caching issues can cause block layout problems. Try these quick fixes:

    1. Deactivate all non-essential plugins except CoBlocks temporarily to see if a plugin conflict is causing it
    2. Switch to a default WordPress theme (like Twenty Twenty-Four) to test if it’s a theme CSS issue
    3. Clear your browser cache and hard refresh (Ctrl+Shift+R or Cmd+Shift+R)

    If those don’t work, it’s likely a CoBlocks issue as threadi mentioned. Update the plugin or contact their support. Let us know what you find!

    davidjason

    (@davidjason)

    Hi there,

    The issue is likely that WordPress needs to recognize the correct URL in wp-options. Try these:

    1. Go to wp-config.php and add:
      define(‘WP_HOME’, ‘https://wp.mywordpress.com’);
      define(‘WP_SITEURL’, ‘https://wp.mywordpress.com’);
    2. Or via database: Update wp_options table:
      siteurl = https://wp.mywordpress.com
      home = https://wp.mywordpress.com
    3. Make sure haproxy is forwarding the Host header correctly. Add to haproxy:
      reqadd X-Forwarded-Proto: https
      reqadd X-Forwarded-Host: wp.mywordpress.com

    This tells WordPress the external URL when accessed through the proxy. Give these a try!

    davidjason

    (@davidjason)

    Hi Garion,

    You can update contact info in a few places:

    1. Settings → General – for site-level info
    2. Check your theme settings – many business themes have custom fields for address, phone, email
    3. Create a Contact page with a form plugin like WPForms
    4. Look for a Business Info plugin in the plugins directory

    What theme are you using? That’ll help pinpoint the exact location. Feel free to reply with your theme name and I can give more specific directions!

Viewing 5 replies - 1 through 5 (of 5 total)