Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thank you for reaching out and providing detailed information about the issue you’re experiencing with your homepage. Based on your description, it sounds like there may be several potential causes. Let’s try the following steps to resolve this . This information is not 100% correct but based on my experience i hope following those steps will solve the problem:

    Clear Your Browser Cache: Sometimes, browsers cache old versions of the page, which can cause display issues. Try clearing your browser cache and refreshing the page.

    Check for Plugin or Theme Conflicts: Disable all plugins and switch to a default WordPress theme (like Twenty Twenty-One) to see if the issue persists. If the layout is corrected, reactivate each plugin one by one and then switch back to your theme to identify the culprit.

    Review Custom Code: If you’ve added custom CSS or JavaScript, there might be errors causing the layout to break. Double-check your custom code for any mistakes.

    Inspect with Developer Tools: Use your browser’s developer tools to inspect the elements that are not displaying correctly. Look for any errors in the console or issues in the network tab.

    If you’ve tried these steps and the issue persists, please let me know. I can take a closer look and help you further. I hope doing this will solve the problem.

    Best regards,

    Mostofa Kamal

    • This reply was modified 3 months, 3 weeks ago by Yui.
    • This reply was modified 3 months, 3 weeks ago by Yui. Reason: part of signature dropped

    You can adjust the header height and remove the padding from the menu in your Twenty Twenty Four theme by adding the following custom CSS to your WordPress site. Here’s how you can do it:

    1. Go to your WordPress dashboard.
    2. Navigate to Appearance > Customize.
    3. In the Customizer, click on Additional CSS.
    4. Copy and paste the following CSS code into the provided field:

    .nfd-py-sm.nfd-gap-2xl.wp-block-group.is-content-justification-space-between.is-nowrap.is-layout-flex.wp-container-core-group-is-layout-1.wp-block-group-is-layout-flex {
    padding: 0px !important; /* change to your needed value */ }

    nav.is-responsive.items-justified-right.nfd-gap-lg.wp-block-navigation.is-content-justification-right.is-layout-flex.wp-container-core-navigation-is-layout-1.wp-block-navigation-is-layout-flex { padding: 0px 136px; / *change to your needed value */
    }

    1. Click the Publish button to save your changes. Or use custom CSS plugin

    This CSS code will remove the padding from the menu in your header, which should adjust the height as desired. If you need any further adjustments or have any more questions, feel free to ask!

    Thanks,

    Mostak

    Forum: Fixing WordPress
    In reply to: iframe

    This is not an iframe; it is simply a “overflow-y” scrollbar. The scrollbar appears because the CSS for the description specifically defines this behavior. See this screenshot https://prnt.sc/twhpKE-Jylrh

    This is not a big issue because it is a result of the default theme CSS. The theme developer has designed it this way. I think it is good, not bad. However, if you want to change this, there are a few solutions:

    Quick Fix: If you want a quick solution, you can add one line of CSS to hide the overflow:

    .hubhood-scrollable-block .hubhood-listing-widget-content {
    max-height: 320px;
    overflow-x: hidden;
    overflow-y: hidden; (update line)
    }

    This will remove the scrollbar, but it will also hide any content that extends beyond 320 pixels.

    Adjust Height: A more flexible solution is to set a max-height that fits your content:

    .hubhood-scrollable-block .hubhood-listing-widget-content {
    max-height: 320px;(increase this your needed)
    overflow-x: hidden;
    overflow-y: auto;
    }

    This way, you can still control the height and avoid unwanted scrollbars, while ensuring that your content remains visible.

    Add the following code to your theme’s custom CSS option or custom CSS plugin:

      Please choose the method that best suits your needs.

      Best regards,

      MD Mostofa Kamal

      Hello There ,

      Thank you for bringing this issue to my attention. I understand that the Page List block inside your Navigation block is missing the elements that should wrap it. This is a critical issue because the correct semantic structure is essential for accessibility and proper rendering of your navigation menu.

      <ul class=”wp-block-navigation__container is-responsive items-justified-right wp-block-navigation”>
      <ul class=”wp-block-page-list”>…

      In this structure, the nested <ul class="wp-block-page-list"> should be wrapped in an <li> element to maintain the correct HTML hierarchy.

      Fix: To resolve this issue, the Page List block should be nested inside an <li> tag. Here’s how the corrected HTML structure should look:

      <ul class="wp-block-navigation__container is-responsive items-justified-right wp-block-navigation">
      <li>
      <ul class="wp-block-page-list">
      <!-- Page list items go here -->
      </ul>
      </li>
      </ul>

      Best regards,

      MD Mostofa Kamal

      Hello There,

      Thanks for your clear instructions. I understand you’re facing two errors:

      1. 999 pages of your website are getting an error.
      2. Multiple title tags on the same page.

      You tested with the “Health Check & Troubleshooting” plugin, disabled all plugins, and activated the default theme. You then ran the audit again, but the same errors persist. Too bad it still hasn’t been resolved. Troubleshooting Steps For the 999 Pages Error:

      When your WordPress site is encountering errors on multiple pages, it can be due to a variety of reasons. Here are some common issues and steps to troubleshoot and resolve them:

       If you understand coding, proceed with caution as incorrect changes can be harmful. 
      1. Enable Debugging in WordPress: To see detailed error messages, enable debugging by adding the following lines to your wp-config.php file:php define('WP_DEBUG', true); define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false); This will create a debug log file (wp-content/debug.log) that can provide more insights into the issues.
      2. Increase PHP Memory Limit: Add the following line to your wp-config.php file to increase the PHP memory limit:php define('WP_MEMORY_LIMIT', '256M');
      3. Check .htaccess File: Ensure your .htaccess file is not corrupted. Here’s the default content:apache # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress

      For Multiple Title Tags:

      Multiple title tags on the same page can often be caused by SEO plugins, such as Yoast SEO.

      1. Disable Yoast SEO Plugin: Temporarily disable this plugin.
      2. Clear Cache: Clear your browser cache and any caching on your hosting server.
      3. https://prnt.sc/f9Xm3GDsU7lX

      I hope these steps help resolve your issues. For further guidance .

      Best regards,

      MD Mostofa Kamal

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