Dzynit
Forum Replies Created
-
Thank you so very much for continuing to follow up! I know it’s tough when it’s narrowed to a certain environment you don’t have.
The plugins and themes vary from site to site, so the only specifically in common on all is that the hosting is wpengine and they all have the managewp plugin so they can be updated using managewp.
The new update has the same error, but it triggers a database update and stops the rest of the updates for other plugins.
Yes, just the once and I’ve checked the sites and the plugin seems fine afterwards.
The sites it’s happened on are all on WPEngine and running php 8.2.
Forum: Plugins
In reply to: [Privacy Policy Generator - WPLP Legal Pages] New Release Fatal Error: 3.3.4@prasadaeightnine I changed line 244 of wc-am-client-legalpages.php to:
require_once plugin_dir_path( '/includes/settings/class-wp-legal-pages-settings.php' );- This reply was modified 1 year, 2 months ago by Dzynit.
I just went in circle for the last two days because we had a site with the same problem. What fixed it for us, was the permalink migration setting in the site tab of the redirection plugin settings. It had the same tag in it as is in the normal wordpress permalinks settings page. When I removed it from the redirection plugin settings, the posts are correctly showing the 404 again.
This one had a lot of changes needed and I couldn’t get it working by just going through making fixes. I copied a new file from the wordpress core in it’s place. It’s here:
https://core.trac.ww.wp.xz.cn/browser/trunk/src/wp-includes/l10n.php
Since they’re no longer maintaining this plugin, I had to go through and make a fix for each error that came up. I of course didn’t make a list as I went like I should’ve. For this first one, you need to go to that file and change line 1050 to this: $current = ord($value[$i]);
For each you fix, another will pop up and most of them are changing the curly brackets { } to this style bracket [ ] in the line of code. I “think” there were 5 files that needed fixes.
Another note to others: You can’t see it correctly while logged in. So you will need to view in another browser logged out and adjust the top: xx as needed. The top header can vary in height according to your font settings etc.
Thank you very much. This is what ended up working for there:
.simple-banner { position: fixed; } .et_fixed_nav #top-header { top: 38px; } body.et_fixed_nav.et_secondary_nav_enabled #main-header { top: 76px!important; } .simple-banner .simple-banner-text { font-size: 14px; } #et-main-area { margin-top: 38px; } @media only screen and ( max-width: 980px ) { body.et_fixed_nav.et_secondary_nav_enabled #main-header { top: 38px!important; } #et-main-area { margin-top: auto; } #breadcrumbs { color: #fff; } }(The two #et-main-area shouldn’t be used unless breadcrumbs are in use. Providing the full css for any other Divi users that may find this post helpful.)
Forum: Plugins
In reply to: [SEO Tools] Wrong Shortcodes!!!SEO Tools has been updated. Happy New Year to you too.
Forum: Plugins
In reply to: [SEO Tools] Wrong Shortcodes!!!Thank you for pointing this out. I’ll be sure to edit the shortcodes this week. I believe the thinking using the caps was to make them stand out when reading the description, but it didn’t occur to me it would be incorrect when someone copy/pastes them.
Forum: Plugins
In reply to: [Better Search Replace] Unsupported ampersand &oops – see how my first comment auto made the qoute mark because I entered the character code?
minus spaces: & # 8220;
- This reply was modified 7 years, 5 months ago by Dzynit.
Forum: Plugins
In reply to: [Better Search Replace] Unsupported ampersand &What I found is it’s actually character codes that is the cause. An example is
“which is a beginning quote mark. When I tested searching for just that code to see the results, it automatically converted it to that forward quote mark “. So when it’s trying to find that in the database, it’s looking for the actual quote mark rather than the character code.