Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi @ssgads

    If “Plugins → Add New” isn’t working in WordPress, it’s usually caused by one of a few common issues. Here’s a structured way to fix it:-

    You can only install plugins if you are an Administrator.

    • Go to Users → All Users
    • Confirm your role is Administrator
    • If you’re “Editor” or “Author,” plugin installation will be blocked

    Please check if plugin installation is disabled in wp-config.php

    Some sites disable plugin installation for security.

    Please check for this line in wp-config.php:-

    define('DISALLOW_FILE_MODS', true);

    If it exists, change it to:

    define('DISALLOW_FILE_MODS', false);

    or remove it.

    PHP memory limit too low

    Low memory can break plugin installation.

    Check or increase in wp-config.php:

    define('WP_MEMORY_LIMIT', '256M');

    Hope you find this helpful.

    Hi @danielteadt

    No, PHP extended support is not required to revert your PHP version. The issue is most likely due to compatibility problems with PHP 8.4, as some themes or plugins may not yet support it.

    You can simply switch back to a stable version like PHP 8.2 or 8.3 from your hosting control panel to restore the site. Once the site is accessible again, update WordPress core, themes, and plugins before considering another upgrade to PHP 8.4.

    Hi @rolandco19,
    A WordPress core update by itself typically does not replace your homepage with a blog post or delete your content. More likely causes include:

    • Homepage settings were changed during or after the update, causing WordPress to display a post or the latest posts instead of your intended homepage.
    • A theme or page builder conflict (such as Elementor, Divi, WPBakery, etc.) occurred after the update.
    • A plugin conflict caused the homepage to fail, prompting WordPress to fall back to another page.
    • The homepage page was accidentally deleted, unpublished, or corrupted.
    • Database corruption or a failed update affected site settings.
    • Hosting issues during the update interrupted the process.
    • No working backups meant there was no easy way to restore the site when the problem occurred.

    How to prevent it in the future:-

    • Use automated backups before every WordPress core, theme, and plugin update. Store backups off-site (cloud storage or another server), not just on the hosting account.
    • Test updates on a staging site before applying them to your live website.
    • Verify compatibility between WordPress, your theme, and plugins before updating.
    • Monitor your site immediately after updates so problems can be caught and reversed quickly.

    Hope this helps!

    Hi @knowislamnow
    It sounds like a permissions issue rather than a problem with the page itself. First, make sure your account has Administrator access and that the email address in your WordPress profile is correct. Check your Spam or Junk folder in case the notification was filtered. If everything looks correct, try temporarily disabling any security or user-permission plugins, as one of them may be blocking edits. If the issue continues, let me know whether you’re using WordPress.com or a self-hosted WordPress site and whether the message appears when you click Edit or Update.

    Hi @biurokapuscinscy

    First, go to Pages > All Pages in your WordPress dashboard. This will display all the pages of your website. Click on Edit on the page you want to change the URL.

    If you use the classic editor, you’ll see the permalink option just below the title of the page. Click Edit.

    edit permalink change page url in wordpress

    Then, it will allow you to change the path on your link for the particular web page. Once you enter the new URL here, click on Ok and Update the page to change the URL.

    Change Page URL using Gutenberg Editor:-

    On the other hand, if you use the Gutenberg editor, you can change your page URL from the page settings on the right sidebar. Just click on the link on the URL option.

    This will let you change the URL of the page. Just enter the new URL path in the PERMALINK option. Finally, Update the page.

    Hi @rjbinney

    Kindly use this code to change the menu color in mobile devices:-

    @media (max-width: 921px){
     body .ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .menu-link {
        color: #624A3C !important;    
    }   
    }

    Hope it works!

    Forum: Fixing WordPress
    In reply to: Change Font Style

    Hi @digitalworld20

    You can use custom CSS to change the produce title font style. Here is a code:-

    .box-text-products .title-wrapper a {
        font-family: fantasy;
    }

    Please replace the font family name as required.

    To add custom CSS, please follow these steps:-

    Please go to WordPress dashboard » Appearance » Customize » Additional CSS page.

    You need to put the above code and then save it.

    I hope this helps.

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