Website Rob
Forum Replies Created
-
Forum: Plugins
In reply to: [wp-Monalisa] Limited Use with GuttenburgDid you look at the source code for a Comment? As that the only option available to me, I had first noticed the code inserted in the Comment area is exactly the same code used after Submit.
img class=’wpml_ico’ alt=’ht tps ://example . com/wp-content/plugins/wp-monalisa/icons/wpml_cool.gif’ src=’ht tps://example . com/wp-content/plugins/wp-monalisa/icons/wpml_cool.gif’
[Links altered so they don’t turn into links in this post]My Admin page also shows different then as shown in the image in the Plugin area. Not sure if the image just needs updating though. As my Admin does show the Javascript checkbox and the image doesn’t, I was left wondering what the Javascript was for. I don’t use the JS and the Plugin inserted the image. So when you say; “The Javascript is used to copy the smiley into the textarea if you click on it.” I’m a bit confused. Perhaps a small amount of Documentation should be included? 😉
Forum: Everything else WordPress
In reply to: Image links gone …“If I’m not mistaken there was a note about not linking when I posted.”
The note you mention probably referred to when URLs are posted to these Forums they will not be removed except for legal or personal identifying information is included.
Also note that for some, using a CDN for International sites may argued as a good thing. There have always been Pro’s & Con’s to using a CDN. My personal thinking is that whenever anything is to given to a 3rd party site (such as images or information) one can never know for sure, the respect they will be given. It’s a security issue for me.
A Plugin you might want to try is: Type Attribute Warnings Removal By Sumit Malviya, to help clean some of your HTML code/errors.
Forum: Fixing WordPress
In reply to: Hacking attempt of via WP- manager installationIf WordFence was not able to scan you should find their Plugin page and post in their Support, with any details you received about what happened.
Forum: Fixing WordPress
In reply to: Site Hacked – Doesn’t Load From Search – Please HelpCheck your .htaccess file for any code with ‘weddingsinger’ in it and delete. If not sure then Copy just those the lines and Post them here.
Forum: Everything else WordPress
In reply to: Image links gone …Little known fact that with the advent of HTTP/2 (which your Hoster is providing) one does not need to use CDN. The presumed speed increase people use CDN for is no longer needed if using HTTP/2 as it provides a much faster download. Many people will find some known and unknown problems suddenly “go away” when the start serving images from their own website.
Forum: Fixing WordPress
In reply to: Homepage randomly redirected to WP login pageGo to any of your website pages and View Source. Then use your Brower’s Find.
Actually, you never stated what you tried to solve the problem and it sounded like you hadn’t done anything, hence my question. Now it sounds like you’re upset you have to provide some details. Easier to catch Bees with honey rather than vinegar.
Forum: Fixing WordPress
In reply to: The editor has encountered an unexpected errorGood to hear you solved the problem. Perhaps your solution will help someone else who comes across this post.
Forum: Everything else WordPress
In reply to: Image links gone …When troubleshooting coding problems it’s best to first Validate the code that is there to see what is going on.
https://validator.w3.or/ is your friend for this.
Using it shows there are many problem to dealt with. Three repeating errors I see are:
Problems with characters: NÜ
It’s fine to use these type characters in text but not in URLs or other type coding.
Rename any images or files or ask your Hoster about this. There are ways at the server level to overcome this problem.—
Outdated Code
<script type=
<style type=These are no longer used and although most times will be a Warning notice, they turn into an Error notice when used like this:
<script type=”cf7ec43bf052b9ffb0a0897d-text/javascript”You can remove all instances of ‘type=’ using this Plugin:
Type Attribute Warnings Removal By Sumit Malviya—
Incorrect Code
<span><h1 class=”hero-title”>As H level tags cannot be placed in a <span> tag, all instances have to be recoded
—
And I still haven’t got to your stated problem because I don’t know what to look for. On the Home page, I think you’re talking about images not showing above the H.W.U. image/link but not sure. Can you describe the steps to take to see the problem?
Forum: Fixing WordPress
In reply to: White Screen when posting or editingLooks like a problem with these files:
notices.min.js?ver=cbb5435defb0daf022a906a77356cb96:1 Uncaught SyntaxError: Unexpected token ‘<‘
quicktags.min.js?ver=5.7:1 Uncaught SyntaxError: Unexpected token ‘<‘
react-dom.min.js?ver=16.13.1:125 TypeError: Cannot read property ‘store’ of undefined
at editor.min.js?ver=5210dd1dd91e796c406f0aacfa4b9620:12It’s a cascading error so if you fix the first two the rest should go away.
Easiest fix might be to just replace the files with originals. If the errors still occur then they will have to manually be found & fixed.
Forum: Fixing WordPress
In reply to: website errorSounds like an issue you should take up with your Hoster. Perhaps they changed some things on their end, maybe other accounts are having the same problem?
Forum: Everything else WordPress
In reply to: Does anyone know a solution to the “? Replytocom” problem?Install the Plugin: Bad Bot by Jeff Starr — it was designed for situations like this.
Forum: Developing with WordPress
In reply to: Remove trailing slash from linksNot sure where you got the idea a trailing slash was wrong–as it is the correct thing to do.
Do this quick test, presuming you have a Search feature on your site/theme. Search for anything and see what happens without a trailing slash. Will be interesting to know the results and how WordPress handles it.
Forum: Everything else WordPress
In reply to: How to add a follow atribute to the image widgetTry the Plugin: External Links By WebFactory Ltd and let us know how it works out. May help others in the future who have the same problem.
Forum: Fixing WordPress
In reply to: The editor has encountered an unexpected errorDid this start happening after an upgrade to WP 5.7? The error msg. is stating jQuery was not found.
I ask because your page is trying to load v1.12.1 and v3.5.1. Unfortunately, the v3.5.1 is a web page titled “Pagina niet gevonden” which I don’t know what it means but I know it’s not a jQuery script.
Either swap the web file with the actual jQuery v3.5.1 script or remove it; and the jQuery Migrate 3.5.1 as well. Then move the v1.12.1 further up in the page–line #132 or thereabouts.
There can only be one version of jQuery used and it has to be loaded “before” other .js scripts so that when they need it, it will already be there.