enderandrew
Forum Replies Created
-
Forum: Plugins
In reply to: [Menu Icons by ThemeIsle] PHP 8.1 CompatabilityWP nightly and it was on the front page of my site with WP_DEBUG on after first activating PHP 8.1.
Forum: Plugins
In reply to: [Easy Footnotes] Footnote not inline with other contentBy the way, the %%footer%% showing at the bottom of all of my pages was a bug with WordPress Jetpack. I had to disable Infinite Scroll because that isn’t working currently and others have the same issue.
Forum: Plugins
In reply to: [Easy Footnotes] Quotes and tickmarks in tooltip not displayed correctlyAny idea how to fix this?
If you’re using Google Captcha v3, the captcha is meant to be invisible.
Forum: Plugins
In reply to: [Easy Footnotes] Footnote not inline with other contentMy parent and child themes have a footer.php with <?php wp_footer(); ?>
I’m trying to figure out what is causing the %%footer%% to appear at the bottom.
Forum: Plugins
In reply to: [Easy Footnotes] Footnote not inline with other contentThanks!
That CSS helped. I don’t know why the theme isn’t using wp_footer(). The theme does have a footer. Maybe because it uses infinite scroll?
Is there something I can add in my child theme to add wp_footer() support in and test that out?
Forum: Plugins
In reply to: [Easy Footnotes] Footnote not inline with other contentI have the same issue. I tested the “Footnotes” plugin and it had a setting to fix responsive layout to align the Footnotes with the main container for the post. That plugin had far more options, but I couldn’t get the hover tooltip to work. Your plugin is far simpler and the tooltip works for me, but the footnote isn’t really aligned with any other content inside the container.
Lowering the “easy_footnote_after_content” value in the pinned post didn’t help sadly.
I have a container with padding on the left and right that the page is in, but the footnotes alone are fully left aligned with no padding. Here is an example where I’m testing.
https://omahachapterone.org/about-us/capitular-degrees/
- This reply was modified 3 years, 9 months ago by enderandrew.
I don’t have a Gutenberg plugin. It may be because I’m running the nightly dev version of WordPress (to always get updates for exploits nightly). I think Gutenberg is just a built-in core component of 5.6.
Same thing here. I’m using Neve theme and WordPress nightly. I have to disable the plugin to be able to create a new page or post at the moment.
Forum: Plugins
In reply to: [Bad Behavior] Referer White ListeningI tried to expand this to other password managers:
if ($package['headers_mixed']['Origin'] === 'https://passwordmanager.my-url.com') { return true; } if ($package['headers_mixed']['Origin'] === 'https://lastpass.com') { return true; } if ($package['headers_mixed']['Origin'] === 'https://keepersecurity.com') { return true; } if ($package['headers_mixed']['Origin'] === 'https://www.dashlane.com') { return true; } if ($package['headers_mixed']['Origin'] === 'https://bitwarden.com') { return true; } if ($package['headers_mixed']['Origin'] === 'https://www.logmeonce.com') { return true; } if ($package['headers_mixed']['Origin'] === 'https://www.passwordboss.com') { return true; } if ($package['headers_mixed']['Origin'] === 'https://1password.com') { return true; } if ($package['headers_mixed']['Origin'] === 'https://www.roboform.com') { return true; } if ($package['headers_mixed']['Origin'] === 'https://www.stickypassword.com') { return true; } if ($package['headers_mixed']['Origin'] === 'https://www.truekey.com') { return true; } if ($package['headers_mixed']['Origin'] === 'https://www.zoho.com') { return true; }
However, when I put WordPress into debug mode (to troubleshoot something else) I see that this is throwing errors:
Notice: Undefined index: Origin in /var/www/omahachapterone/wp-content/plugins/bad-behavior/bad-behavior/whitelist.inc.php on line 6 Notice: Undefined index: Origin in /var/www/omahachapterone/wp-content/plugins/bad-behavior/bad-behavior/whitelist.inc.php on line 9 Notice: Undefined index: Origin in /var/www/omahachapterone/wp-content/plugins/bad-behavior/bad-behavior/whitelist.inc.php on line 12 Notice: Undefined index: Origin in /var/www/omahachapterone/wp-content/plugins/bad-behavior/bad-behavior/whitelist.inc.php on line 15 Notice: Undefined index: Origin in /var/www/omahachapterone/wp-content/plugins/bad-behavior/bad-behavior/whitelist.inc.php on line 18 Notice: Undefined index: Origin in /var/www/omahachapterone/wp-content/plugins/bad-behavior/bad-behavior/whitelist.inc.php on line 21 Notice: Undefined index: Origin in /var/www/omahachapterone/wp-content/plugins/bad-behavior/bad-behavior/whitelist.inc.php on line 24 Notice: Undefined index: Origin in /var/www/omahachapterone/wp-content/plugins/bad-behavior/bad-behavior/whitelist.inc.php on line 27 Notice: Undefined index: Origin in /var/www/omahachapterone/wp-content/plugins/bad-behavior/bad-behavior/whitelist.inc.php on line 30 Notice: Undefined index: Origin in /var/www/omahachapterone/wp-content/plugins/bad-behavior/bad-behavior/whitelist.inc.php on line 33 Notice: Undefined index: Origin in /var/www/omahachapterone/wp-content/plugins/bad-behavior/bad-behavior/whitelist.inc.php on line 36 Notice: Undefined index: Origin in /var/www/omahachapterone/wp-content/plugins/bad-behavior/bad-behavior/whitelist.inc.php on line 39
Forum: Themes and Templates
In reply to: [Neve] Mobile menuThanks! That was exactly what I needed!
I’ve also combined cacert.pem and origin_ca_rsa_root.pem into one file, made sure www-data owns it and set it in /etc/php and tried pointing to that.
Still no bueno. ??
Forum: Fixing WordPress
In reply to: Server 500 error every time I try to save menusAnyone? I’m at a loss here and I need to update my menu.
Forum: Fixing WordPress
In reply to: Recaculate tagsI think I answered my own question in a sense. I can’t think of a good way to automate the second step. However, I just made a backup from SQL and then:
update wp_term_taxonomy set count = 0
Now I’m just “updating” each post real quick, which is saving tag data and updating the count for the tags in that post at least. When I’m done, just delete any row where the count = 0.
Forum: Fixing WordPress
In reply to: Recaculate tagsI’m assuming what I really need is something that sets the count of all my tags to 0. That’s simple enough to do in SQL.
The next step is tricky. Look through each post and check for tags, and then increment the count accordingly.