Hello Folks!
Where can i edit this broken link in the cms:
I have already looked in the footer templates and find link text or altext using notepadd++ find but can't find this culprit. Can someone guide?
Hello Folks!
Where can i edit this broken link in the cms:
I have already looked in the footer templates and find link text or altext using notepadd++ find but can't find this culprit. Can someone guide?
We can't help you if we don't have the WebShop to look at.
Anyway, if you searched every file and you couldn't find them, it's possible that is retrieved from the a table in the database and not just as a simple string.
Here is the file which i decode just to find that thing:
https://mega.nz/file/8YoHyCrB#tjhp81...5yC-Cb4fjtWtUk
Here is the original file to install:
https://mega.nz/file/oYw2zbDB#LFROPX...UYth6xqaJEnYfI
I know your already expert at this but i use this dll to connect with mssql using php 5.6 in case you will use xampp to connect:
extension=php_dblib.dll
https://mega.nz/file/oNoW1bIR#_Vrqqn...VJfQiEfmxqDJBc
I tried looking at the tables can't find it.
If you can try installing and look?
The HTML is visible at DMNCMS.
try to check the views files of webshop + view sidebar + header + footer.
worst case — you can fix (or remove) that broken image using JavaScript.
jQuery (used in DMN), put this in footer.php:
change .image to your img identifier (can be an ID, class, alt, data attr, find your way using F12.)<script> jQuery(document).ready(function ($) { $(".image").remove(); });</script>
edit:
it is possible that this image is also arriving from a JavaScript code or some type of iframe.
it is better to give us a direct link to your website (plus account to access into webshop image) so we can do more digging.
this is the website: https://mushop.nofeara.com
you can create account here: https://mu.nofeara.com/
i uploaded the files i used above.
https://mega.nz/file/oYw2zbDB#LFROPX...UYth6xqaJEnYfI
Last edited by nofeara; 28-06-22 at 04:04 PM.
<script> jQuery(document).ready(function ($) {
$('img[alt="MMOSERVER Mu Online, Maplestory, Aion Private Server Top"]').remove();
});</script>
or via CSS:
img[alt="MMOSERVER Mu Online, Maplestory, Aion Private Server Top"] {
display: none !important;
}
P.S - it's better to use DMN 1.2.1 (open source) or getting webshop plugin for WebEngine. you may contact me for more information.