Andrei Draganescu
Forum Replies Created
-
Hey @laww88 and welcome! I think you should check which one of the many WordPress giveaway plugins has a “like to enter contest” feature. This I believe it’s closest to what you describe.
Forum: Requests and Feedback
In reply to: Disabling commentsHi there @ayrancd! I also use a plugin to disable comments to remove the possibility of the individual post to override the setting mentioned by @t-p and make a global permanent setting.
I think the fact that this heavy duty disabling of a feature can be done via a plugin is easy enough. Is it more that just installing a plugin that makes this a problem?
Also since adding the option seems easy, try opening a ticket to see if a discussion there could reveal some potential issues with a default implementation, perhaps even propose a patch!
Forum: Installing WordPress
In reply to: Unable to use customize.php theme-install.php after new installHi @geoffsven what version of PHP is your WAMP using? What browser are you using?
Forum: Fixing WordPress
In reply to: Suppression category url Bug ?Hey there @shelko54! Could you explain in more detail how you want your permalinks to look and what is the setup that makes your categories unavailable? What do you mean by “unavailable”? Do you get 404s?
Forum: Fixing WordPress
In reply to: Problems with WordPress editorHey there @teststig which version of WordPress is your site on? You can see the current version of your website at the bottom right corner of the admin screen.
If your WordPress version is higher than 5.0 make sure to check that you don’t have installed the classic editor plugin.
Forum: Fixing WordPress
In reply to: Images disappear from Media LibraryHowdy @ottobe! Do the images still exist on the server?
Forum: Fixing WordPress
In reply to: Site Health Change: Authorisation Header is InvalidHowdy @zinam I tested this and after logging in with Safari on a default install the Site Health section reports: The Authorization header is working as expected.
This check appears to be rather new. Could you try to see if any of the plugins is causing the error by disabling them all and then re-enabling them one by one?
Also, there is some “Why is Authentication not working?” help available.
Forum: Everything else WordPress
In reply to: Loads page resources using protocol relative URIsHowdy @robmcp This looks like a theme or plugin handles some of the content in the
<head>
part of your website’s pages. To chnge how that is output you need to see where the problematic code is coming from. If you are sure the theme is not doing it, then you could try disabling plugins and enabling them one by one to pinpoint where the<link>
element is coming from.Forum: Developing with WordPress
In reply to: PDFs browserHi @tnrsm2! There is no such functionality in core WordPress. There may be plugins that enable indexing and searching in PDF files.
Forum: Fixing WordPress
In reply to: Login, site lost?Hey! Did you get any email on the address that you used when you installed WordPress? This looks like one of the situations when an email is sent notifying you about the error and allowing via a link to enter a “safe mode” (plugins disabled) of your website.
Forum: Fixing WordPress
In reply to: Upgrade to 5.6 and all my Pages in WP are now WhiteHey @adminlajj no it is not common to have your website broken after an upgrade. I understand that the admin works, and the user facing part (the front end) is just white pages. What do you mean by:
But on the internet…you can still see the website.
If you can deactivate the plugins, I suggest that you deactivate all of them, then enabling them one by one and checking of the pages are still white. This way you may find which one – if any – is causing issues.
Forum: Developing with WordPress
In reply to: WordPress 5.6 removed “An active PHP session was detected”Hey there! It doesn’t seem that any changes occurred recently that could break this. Could you provide more details? What plugin was causing the error?
Forum: Fixing WordPress
In reply to: Dashboard admin menu collapse icon brokeHi @jostler1000 welcome to the WordPress support forums. Does everything else work but the sidebar in the admin? If you try to expand the sidebar, does it expand?
Forum: Plugins
In reply to: [Gutenberg] Fatal Error from Gutenberg Plugin, Can’t log in to fix itHowdy @jpoyo. As @bonkerz mentioned above you should have an email (on the email address you used to install WordPress). The quick solution is the one mentioned above to simply remove (via FTP or the administration panel of your host) the Gutenberg folder from
[wodpress_directory]/wp-content/plugins
.I am trying to reproduce this problem but am unable to. What version of WordPress were you using? Did you install Gutenberg from the plugin directory or uploaded a zip file?
Forum: Reviews
In reply to: [Gutenberg] Extends the power of WordPressHi @acurran there currently are three ways to solve the problem you mentioned, one in the UI and two via code.
Gutenberg provides a settings menu via the vertical dots in the top right corner of the screen. In that menu there is an option called Block Manager. Once clicked you will get an UI where you can deselect any blocks you don’t want available in the editor.
If you want to do it via code in a theme or a plugin you can either use the
allowed_block_types
hook to manually create the list of available blocks (including core) or you may deregister at run time one block at a time withwp.blocks.unregisterBlockType
.