• tstaruk

    (@tstaruk)


    I currently have a WP running on 6.3, i have disabled all plugins to see if they were the issue but they are not.

    What i am seeing is that the query loops are all correct on the design page BUT on the actual site the titles do not match the articles… I am trying to filter out certain categories and it seems to work EXCEPT on the live site.

    Does anyone have an idea?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @tstaruk

    It sounds like you’re encountering a mismatch between the titles of articles on your WordPress website’s design page and the actual titles displayed on the live site.

    Try the following:

    1. Clear Cache – Try to clear any form of caching, server-side, from caching plugin, and also browser cache.
    2. Permalink Settings – Check your permalink settings. If they are not set up correctly, it might cause discrepancies between the URLs and the actual content. Go to Settings > Permalinks and ensure you’re using a structure that works for your site.
    3. Theme Compatibility – possibly conflict from your theme? Try to switch to WordPress default theme.
    4. Category Filters – Since you mentioned that the issue seems to be related to filtering out certain categories, review your category filtering code (if you’ve implemented it) to make sure it’s correctly targeting the categories you want to exclude. Ensure you’re using the correct category slugs or IDs.
    5. Custom Code – If you have custom code snippets or modifications in your theme’s functions.php file or elsewhere, review them to see if they could be affecting the titles and content display.
    6. Enable WordPress debugging mode – to see if any errors are being generated. To do this, add the following code to your wp-config.php
    define( 'WP_DEBUG', true );
    define( 'WP_DEBUG_LOG', true );
    define( 'WP_DEBUG_DISPLAY', false );

    This will log any errors to a debug.log file in your wp-content directory which you can check and can give you a clue.

    Let me know how it goes. If you can also give more details like steps to replicate, that will be really help.

    Thread Starter tstaruk

    (@tstaruk)

    I am not currently using caching.

    this is in the editor

    This is the live… as you see, they are different… confuses TF out of me

    Thread Starter tstaruk

    (@tstaruk)

    I am using the lotusx theme… i might need to try customizing a different theme… I can only guess that there is something in the theme code that is causing this issue

    Hi @tstaruk ,

    You might want to consider creating a support ticket in Lotusx theme forum as well. https://wordpress.org/support/theme/lotusx/

    The theme dev might be able to help you or someone from the community of Lotusx theme.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Query loop showing a title with wrong content’ is closed to new replies.