bvbaked
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: admin section of my wp is slow.You do not want page caching in your admin – you would want it on the front end though. The best way to handle that is via a plugin and you may already have one just not active? Memcached would be something added on the server so you could possibly request from your hosting provider
The admin shouldn’t have a lot running there, so I would guess any slowness comes from the hosting or if you are using a lot of plugins
Forum: Fixing WordPress
In reply to: URL Not Linking to New WordPress HomepageNo problem, looking good!
Forum: Fixing WordPress
In reply to: URL Not Linking to New WordPress HomepageIt is possible you still have the old files still there?
These might be getting in the way of WordPress picking up the URL and passing it to the proper templates. It may be named something like index.html and if one exists try renaming it
Forum: Fixing WordPress
In reply to: Block appearing in preview that is nowhere in editorIs it part of the template?
You wouldn’t see that in the editor but it is possible that if it was included in a specific template that you’d get extra blocks you may or may not want. In addition to checking with the theme support, you may want to look in the editor for this as well
Forum: Fixing WordPress
In reply to: Image aligned to the left in gutenberg editorIt sort of sounds like you have added some css or styles that are added to the frontend but not in the editor.
You may want to look into the wp_enqueue_block_style function so it applies in the editor as well, or some other hook to achieve the same. Without knowing where it has been added I’m just not sure offhand which one you’ll need to use.
Forum: Fixing WordPress
In reply to: Columns & Grid blocks – mobile layout problemThis is not wrong, and not a limitation of the theme or the block editor. It is the expected behavior of flex containers.
If you want it the other way around, you’ll have to use either a flex-direction: column-reverse or set an order. This then introduces some confusion with accessible technology that the content displayed is no longer following the order of what a screen-reader would announce…
I guess if you don’t care about that, then change it, but the way this works is best practice so it doesn’t have to be the other way – that’s just the way you want it
Forum: Fixing WordPress
In reply to: how to settle this issueThe previous advice will solve a plugin issue, but errors like this aren’t always plugin problems.
If you didn’t receive the email mentioned, you can use this article to help you turn on debugging which should provide information about the error. That might also be a more straightforward way of getting to the issue.
If you can get and share the error message, someone may be able to help from therer
Forum: Fixing WordPress
In reply to: login errorThere 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
Forum: Fixing WordPress
In reply to: How to add an image to multiple posts?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
Forum: Fixing WordPress
In reply to: right css for pagination codeFor 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….
Forum: Fixing WordPress
In reply to: Using WordPress formsIn 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.
Forum: Fixing WordPress
In reply to: WordPress Editor Crashing (Again)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
Forum: Fixing WordPress
In reply to: Theme menu edit error – “fatal error” and “warning”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
Forum: Fixing WordPress
In reply to: Problem when changing Text in a Text BlockUnfortunately 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
Forum: Fixing WordPress
In reply to: How do you add a class to the wysiwyg Dropdown?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