Forum Replies Created

Viewing 15 replies - 1 through 15 (of 46 total)
  • Hi,

    Yes, if you want different navigation styling for desktop and mobile, custom CSS is usually the practical solution.

    The theme/editor gives you the base styling, but for different styles at different screen sizes, you would normally use media queries, for example:

    @media (max-width: 781px) {
    /* mobile menu styles */
    }

    @media (min-width: 782px) {
    /* desktop menu styles */
    }

    So your understanding is basically correct: for separate desktop/mobile navigation styling, custom CSS is the normal approach.

    Hi @goutm

    As far as core WordPress is concerned, the Query Loop block does not currently have a built-in carousel mode for mobile or desktop.

    So if you want Query Loop results displayed as a carousel, you would normally need one of these:

    1. a plugin/block that outputs posts as a slider/carousel
    2. a custom block or pattern
    3. a custom JavaScript/CSS solution

    If you want to stay close to core, a simpler fallback is to reduce the number of posts shown on mobile or adjust the layout there. But for a true swipeable carousel, the standard Query Loop block by itself does not currently provide that option.

    Hi,

    api_key: invalid usually means the SMTP.com API key saved in WP Mail SMTP is incorrect, expired, or does not match the SMTP.com account currently being used.

    I would check this first:

    1. Open WP Mail SMTP settings
    2. Re-copy and paste the API key directly from your SMTP.com account
    3. Make sure there are no extra spaces before or after the key
    4. Save the settings and run a new Email Test

    If it still fails, then:

    1. confirm the SMTP.com account is active
    2. generate a new API key in SMTP.com
    3. replace the old key in WP Mail SMTP
    4. test again

    So this looks more like an SMTP.com credential issue than a problem with Broken Link Checker itself.

    Hi @muyijiang

    A 429 error usually means too many requests are being triggered, so the first goal is to confirm whether TranslatePress is causing extra requests or whether the host/security layer is rate-limiting them.

    I would try these steps:

    1. Temporarily deactivate TranslatePress and confirm the 429 errors stop
    2. Clear any cache/server cache after activating or deactivating the plugin
    3. Temporarily disable any security, firewall, bot protection, or rate-limiting feature in your hosting panel and test again
    4. Check whether automatic translation or language switch requests are generating too many requests in a short time

    If the site works normally with TranslatePress disabled and starts returning 429 only when it is enabled, then the most likely cause is a conflict with server-side rate limiting, caching, or firewall rules rather than WordPress core itself.

    Hi @nayan9718

    That usually means the two images are not actually being used in the same block/context.

    The Aspect Ratio control is normally available for a plain Image block, but it may not appear if:

    1. the image is inside another block or pattern
    2. it is being used in a different context such as Cover/featured image/media layout
    3. the layout is already controlling the dimensions

    I would compare both images in List View and confirm the exact block type for each one. If one is a normal Image block and the other is part of another block/pattern, that would explain why the Aspect Ratio option only appears in one place.

    Hi @tomg802

    In Twenty Twenty-Five, that space is usually not coming from the Navigation block itself, but from spacing on either:

    1. the Header template part, or
    2. the first block below the header

    I would first check this in Appearance > Editor:

    1. Open the template you are using
    2. Select the Header template part and reduce its bottom padding/margin
    3. Select the first block below it and reduce its top padding/margin

    If you want to force it with CSS, a simple starting point is:

    header {
    margin-bottom: 0;
    padding-bottom: 0;
    }

    main {
    padding-top: 0;
    }

    Hi @paulmini

    The easiest way is usually to open List View in the editor, find the whole “New items” section, and drag that block/group to the top.

    If drag-and-drop is awkward, select that block and use the block toolbar arrows or the “Move to” option to place it higher on the page.

    If it will not move at all, then that section is probably coming from a template or synced pattern rather than the page content itself. In that case, you would need to edit the template/pattern instead of only editing the page.

    Hi @tmhazen81,

    Yes, absolutely! If you use PNGs, optimizing them is highly recommended.

    What I usually do is compress the images at https://tinypng.com/ before uploading them to the Media Library. It shrinks the file size dramatically but keeps the image crystal clear without that cloudy look.

    Alternatively, you can use optimization plugins like Smush, EWWW, or the TinyPNG plugin to handle this automatically on your site. Many of these can also serve your images in WebP format, which gives you PNG quality at a fraction of the size.

    Give it a try 😀

    Hi @tmhazen81

    Glad the PNG workaround solved it

    Just a heads-up: PNGs have much larger file sizes than JPGs, so keep an eye on your page loading speed if you add a lot of them.

    If you ever want to go back to using JPGs without WordPress compressing them, you can add this simple snippet to your theme’s functions.php file (or use a Code Snippets plugin) to force 100% upload quality:

    PHP

    add_filter( 'jpeg_quality', function( $arg ) {
        return 100;
    } );
    

    Feel free to mark this topic as resolved. Cheers!

    Hi @tmhazen81,

    At this point, I think the best way to isolate the cause is to test the same image in a clean WordPress environment.

    If possible, please do this on a staging copy of the site first:

    1. Temporarily switch to a default WordPress theme such as Twenty Twenty-Six
    2. Deactivate all plugins
    3. Upload one of the original images that previously appeared cloudy
    4. Check whether it already looks cloudy in the Media Library

    Then:

    • If the image still looks cloudy with a default theme and all plugins deactivated, the issue is probably not your active theme or MetaSlider, and is more likely related to the image file itself or server-side image processing.
    • If the image looks normal in that clean setup, switch back to your normal theme and then reactivate plugins one by one, testing the same upload each time.

    That should help identify whether the problem is caused by:

    1. the active theme
    2. a specific plugin
    3. or something outside the theme/plugin layer

    Hi @jenniferluke

    Please try:

    1. Confirm the Administration Email Address in Settings > General is correct, and check spam/junk
    2. Try a smaller JPG or PNG image for the site icon
    3. Temporarily disable any image optimization, security, or media-related plugins and test again
    4. Enable WordPress debug logging, repeat the action, and then check /wp-content/debug.log

    If the failure only happens when setting the Site Icon, the PHP error log or debug.log will usually show the exact plugin, theme, or function causing it.

    Hi @sfm1320

    If both the categories and the search bar disappeared at the same time, that usually means the area containing them is no longer being output, rather than the categories themselves being deleted.

    A few things to check:

    1. Did this start after a theme change, widget/sidebar change, or plugin update?
    2. If you use a block theme, check Appearance > Editor and confirm the Search block and Categories/List block are still present in the relevant template or template part.
    3. If you use classic widgets, check Appearance > Widgets and confirm that those widgets are still assigned to the correct sidebar.
    4. Temporarily switch to a default theme or disable any recently changed plugin and test again.

    If they return after switching theme or disabling a recent plugin, that will narrow it down quickly.

    The main place to set this is:

    Settings > Reading > Your homepage displays > A static page

    If it still does not work, please check these:

    1. Make sure the page is Published
    2. Make sure the same page is not also selected as the Posts page
    3. Save changes and clear any cache
    4. Check whether your theme or page builder has its own homepage setting that may be overriding WordPress

    If the page is missing from the dropdown entirely, that is a different issue than being able to select it but still seeing another page on the front end.

    If the original JPEG looks fine before upload, then the “cloudy” result is usually caused by one of these:

    1. a resized image being stretched
    2. image compression/optimization
    3. slider settings or an overlay/effect

    A good first check is:

    1. Open the uploaded image directly from the Media Library and compare it with the original file
    2. Check which exact image size MetaSlider is using
    3. Temporarily disable any image optimization / CDN / lazy-load features and test again

    If the Media Library image itself already looks cloudy, the problem is likely happening during upload/compression.
    If the Media Library image looks sharp but the slideshow looks cloudy, the issue is more likely the slider settings.

    For site-wide left/right spacing in Twenty Twenty-Five, the usual place is:

    Appearance > Editor > Styles > Layout

    There you can adjust the global layout widths, especially:

    • Content width
    • Wide width

    For one specific block, select that block and use its alignment/width settings (normal, wide, or full width).

    If you need a custom max width for only one block, the simplest approach is usually a custom CSS class with max-width and auto margins.

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