bvbaked
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I can’t access the elementor edit page. Please help me.Did you get any email about the error?
These errors generally are not very well documented without the debug settings turned on, so it is very hard to tell what the problem is without seeing the message. That email should contain what is going wrong to help point you in the right direction.
It should also be in the error log, so if you can check that as well.
Forum: Fixing WordPress
In reply to: Reference for block optionsWhat you refer to as macros are just the settings that get applied to a block I think. Blocks are a bit of and odd bird when it comes to what they actually are. On one hand, they are an HTML comment, but on the other there is a JSON object inside it that applies a bunch of settings.
For the spacing you mentioned check the theme.json reference
You’ll find that padding is nested under spacing which is also nested under styling, so it is actually correct and in the right place according to this file.
I can’t 100% know what the error is here, but from my experience with blocks and block development so far is that if what gets saved and what is meant to display in the editor don’t align you’ll end up with this error. For example, using any sort of dynamic or unique ID generating function will always fail because the saved data will never matchForum: Fixing WordPress
In reply to: Reference for block optionsI am fairly new to block development, but this usually comes from editing the save function. I think it does log the differences it found with the saved content in the console and sometimes that can help shed light on what is failing.
I don’t know what you mean by the macros, and this might be the wrong link, but the Core Blocks Reference page of the Block Editor Handbook lists the block supports. Worth looking around in the handbook if that page isn’t right, as it could be listed there somewhere
Forum: Fixing WordPress
In reply to: This block has encountered an error and cannot be Previewed Error?I’m assuming you’re in the admin editing a page with a block you’re developing?
There could be a number of reasons why you see that error and it does not come down to one simple answer. What I have found to be the best way to check how to resolve it is opening your browser console as the error message might be output there.
Hopefully there is something useful there and it can tell you what happened. I’ve seen different errors like undefined constants or functions so it could be something as simple as a typo
Forum: Fixing WordPress
In reply to: Forced WordPress Core Update 6.8.2I’m pretty sure they can’t force anything to update.
Has this ever happened before? Generally these sorts of auto-updates are provided or done by your hosting provider so it is worth checking with them as to whether or not something changed there
To help troubleshoot the problem, you can check the error log on the server or also try your browser console to see if there are error messages.
For non-descript errors like this, finding a message that explains what is going wrong is pretty key into finding a solution
Forum: Fixing WordPress
In reply to: Problem with CSV Event UploadDo you mean you had to individually update each event prior to it showing on the front end?
If they just appeared after some time, I’d say that was likely due to cache. But if they required a save first, I suspect there is some meta values that may not have been set. That could be due to other plugins if used that didn’t quite carry over?
Forum: Fixing WordPress
In reply to: Site updated to 6.8.2; now contact form no longer worksThis may be something you need to take up with the plugin support – there may be an incompatibility with the new version of WordPress.
If you see a random test submission, I just sent one and the form submitted with a success message and no console errors. You may have some clues in the error log as well about any potential issues
Forum: Fixing WordPress
In reply to: Best plugin for product custom fieldsAdvanced Custom Fields is what I have the most experience with, and one to recommend.
Forum: Fixing WordPress
In reply to: WooCommerce Grid Widget not showing on Front PageWhere were you adding the shortcode when it rendered only the text?
That suggests the rendering hooks might not be working, which can sometimes be caused by text formatting from wherever they are entered.
Forum: Fixing WordPress
In reply to: Click to save to the other table pluginThis request sounds quite customized, and that probably means that it also needs a highly customized solution.
There are still a lot of questions, but something like https://wordpress.org/plugins/wp-data-access/ might help you with the SQL portion of it and getting the queries written. To note: I have not worked with this plugin before, and I cannot guarantee it does what you want or what it says.
I doubt it will add some of the other features you noted though, so maybe only a partial solution.
You say you’re new to WordPress, but do you have any coding experience? Short of writing it yourself, sometimes these solutions require much more than just installing a plugin
Forum: Fixing WordPress
In reply to: WP login to python siteAre we talking two separate sites, similar to a headless setup?
https://wordpress.com/plugins/headless-single-sign-on An SSO plugin similar to this is probably what you need. WordPress manages the stored login through cookies and all the credentials and user information is stored in the database which your python site is not likely able to access.
I have not used or tested this particular plugin: it is only linked to provide an example. You will need to do some research to ensure that it fits your site configuration and handles your specific use case if this one does not
Forum: Fixing WordPress
In reply to: Moving a siteCheck in the General section of Settings from the admin menu.
There are two options there: WordPress Address and Site Address. I suspect your site address has /wp included at the end. If you remove it, that should fix this issue.
After changing, visit the Permalinks to make sure they get updated, and you may need to clear cache as well to see these updates reflected
Forum: Fixing WordPress
In reply to: MySQL?Yup, you’re best off using a forms plugin.
However, you may need to write a custom query to handle fetching records with specific criteria like that. Using the wpdb global class can help if you can write it yourself.
I don’t know if there are plugins that allow you to easily add custom database queries, and I suspect there aren’t many options. Being able to filter records this way may be one of the features you need to prioritize when selecting a form plugin though
Forum: Fixing WordPress
In reply to: Header not displaying but stylesheet is loadingAs mentioned in the previous comment, there are definitely a few “WordPress Ways” of doing things but these are not mandatory – your nav should still show as you have it but it would be better to manage that via the built in menu system. The scripts and styles are also better off added via the wp_enqueue_style/wp_enqueue_script functions but all of this is irrelevant to the issue
All that said, things should still be rendered so I suspect there is still something wrong – probably in file naming or structure. I am guessing you borrowed the conditional from the codex entry for get_header()?
In that entry it also mentions a fallback to wp-includes/theme-compat/header.php which enqueues the theme stylesheet and outputs the site name. Kind of sounds like what you’re running into.
Can you check that your file is named header.php and located in the root directory of your theme (same as index.php)?
Side note: you’ll want to include wp_head() inside your head tag of the header to ensure that scripts get loaded π