Forum Replies Created

Viewing 15 replies - 1 through 15 (of 94 total)
  • Forum: Fixing WordPress
    In reply to: login error

    There is little anyone can do without more information. If you follow that link you’ll find some information about debugging

    If you enable debugging you should be able to find the source of the error so it can be resolved

    There are no limitations to how many pages an image can be used on. I’m not sure what you mean by ‘attached’ either, since other than setting it as a featured image there isn’t a way to my knowledge images are assigned to a page/post other than in content.

    Is this a feature of your theme? How did you attach them to the first post? I would guess you can do the same to the second and it would act the same

    For the pagination: you are using grid, so the width of 100% is making it the full width of a cell not the container. You can use this instead:

    .navigazione2 { grid-column: 1 / -1; }

    For the shadow, I think you’re just seei ng the spread above the element and not three shadows. See if this is a better effect? It will be more like a drop shadow which I think is what you’re after

    .archive-header-bar,
    .custom-bc-container { box-shadow: lightgray 0px 5px 15px 0px; }

    You don’t really see the shadow from the top element though since it is covered by the next div….

    In something like this you wouldn’t be filtering the form submissions but rather a post type that is created based on the submissions. The reason I say this is unless you write the entire database queries yourself, there is not other built in method to query and filter. Al forms would store the data in a different way so you’d have to pick one first and write a lot of logic around how to pull it out

    I’m sure there are others that do this, but the one I have experience with is Gravity Forms. It allows form submissions to be created as a post type, but you’ll also need something to handle custom fields to store other information.

    bvbaked

    (@bvbaked)

    How are you ‘turning off Gutenberg’?

    You’re using a block theme, so you will need the block editor – if you’re trying to turn that off completely and use the classic editor then you’ll need to se a classic theme that uses the classic editor as well

    bvbaked

    (@bvbaked)

    I wouldn’t expect you to need to increase the execution time for this and this type of error probably hints as something bigger going wrong.

    If the email didn’t send, the PHP may not be working to send it, but maybe it logged an error at least? You can use this guide on debugging if needed to help narrow down the issue by seeing if you can get an error message. It is also possible your host can provide this information as well

    Unfortunately this would likely be a theme issue, which may need a code solution.

    Is your theme called Themeforest or is it a theme from Themeforest? I’m only aware of the theme retailer and nothing came up in a search for it

    See if this works for you https://codex.wordpress.org/TinyMCE_Custom_Styles

    I think it is what you’re asking for and would add specific selectors to the format tab. The Header 2/3, paragraph etc.. you mentioned controls the elements, which is not the same as adding a class or style and as far as I know they have all the elements you would want already covered

    bvbaked

    (@bvbaked)

    Image 2 over Image 1 is expected. Unless you use a z-index property, whichever is later in the markup will be above the earlier. The margin is only used to move one into the space of the other and that doesn’t control the layering

    While I’m not certain of how you’re doing it, the error is likely due to manual content that is not accounted for in the save function. What is saved in the database will need to match what is in the editor so if you’re adding it directly to a block it can cause issues. That CSS is best added somewhere else, and you can target your layout by including a class selector instead of directly editing the blocks

    • This reply was modified 2 months ago by bvbaked.

    It is possible that the sizes are created but the file is not. This might happen if you created a size after an image was uploaded. These are not retroactively built out. In the metadata for the attachment, it will list the sizes it has created and the path to the cropped image. So yeah, if you are missing a cropped image and the theme or layout is looking for one it won’t find a source. How the theme/plugin handles this case would be up to the developer so if there is no fallback then you may get blank images

    I would recommend you try a plugin that rebuilds thumbnails. This can ensure you have all the crop sizes you need

    Some things to consider:

    • If it is a server problem then it may be the directories are not writable. This should be easily tested by uploading an image. You should also get a notice in the media library
    • If your image is too small, larger crops may not generate since it is bigger than the image. You’ll need to double check this isn’t a problem or possibly upload a bigger image if needed

    It is possible with some JavaScript and a query parameter – something like – http://www.your-site.com?menu=the-one-to-open

    It does depend a lot on your theme on how it would have to be added, so there is no example code that could be given without a link

    Just to chime in here, unfortunately I can tell you that ordering posts by category is not quite as simple a task as it would seem. As a feature that introduces new functionality, this is also more likely to be found in a plugin rather than a theme – themes are intended to modify how a site is displayed without changing, adding, or removing features.

    That isn’t always the case, but it will likely be difficult to find a theme that does this. I’d say you are better off keeping your theme and looking for a plugin that may help. I don’t know any off-hand, but perhaps someone in the community knows of one?

    The site works for me with this theme using PHP 8.3, so I suspect there is a plugin at fault.

    The narrow display is typical of an error, although in cases like this there isn’t usually a nice message that helps diagnose what is happening. If you could enable debugging and check the logs that would help narrow down the problem

    This may just require updating WordPress and plugins as well for versions that support PHP 8

    Can you check the error log for any error messages, turning debugging on if it is off, to narrow the error down? It may just be one causing an error that you can update or deactivate to get admin access and update the rest.

    Unfortunately, updating from PHP 7 to 8 can cause some problems as there are functions that no longer exist. I suspect a theme, plugin, or your core WordPress version has one of these and will need to be updated. It is possible to manually update both if you have access to ftp or WP CLI (which I prefer) – check out the core, plugin and theme commands here.

    Both a user name and an email are required, however they do not need to be the same. You can choose to login using either, and you are allowed to change emails but not user names.

    So, if users are registering with the same email for both this is the possibility however the login should still work with either. On a side note, if the users are having emails blocked it is not likely due to their entered email. This would suggest something else that is flagging your emails are “spam” even though they aren’t. Some possibilities are that the domain and sending email are not the same, or possibly the service you use to send them. Having the emails sending now might just mean they used a more forgiving email client but that isn’t really solving the problem

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