JordiJV
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Visual Editor Not Working after Upgrade to 4.0If someone find how the malware is created please tell us to check our installations. I have removed malware code, it worked (visual editor), but suddenly malware code was inserted again.
I’m searching how it is done.
Forum: Fixing WordPress
In reply to: Visual Editor Not Working after Upgrade to 4.0It seems that my js files are hacked. There is a function in all them that try to write an iframe.
It’s strange because before I update wordpress and plugin versions I hadn’t that code and updating it from bakcoffice they are corrupted!I will try to remove that code and try again.
Forum: Fixing WordPress
In reply to: Visual Editor Not Working after Upgrade to 4.0Hi all, here the same problem. I have seen that at post editor screen I have a lot of javascript errors, all them ‘TypeError: HomeMader(…) is not a function‘.
If I disable all plugins and select a default instaled theme I get the same error but only once.Maybe this can help anybody to help us to solve it?
Forum: Plugins
In reply to: [SlideWizard] ShortcodeHi ColorLabs,
I have tried to use shortcode in the template but it doesn’t work.
I can see all images but not the slide effect. As I can see, the js and css includes are not set.
If I use the shortcode in the content of the post js and css files are included and it works fineForum: Fixing WordPress
In reply to: Move wordpress from root to directory and change domain homeI’ll do it.
Thanks.
Forum: Fixing WordPress
In reply to: Move wordpress from root to directory and change domain homeThanks graphical_force, I’ll read it and try.
What’s the difference with this other article: https://codex.www.ads-software.com/Giving_WordPress_Its_Own_Directory ?
Hi again, the problem is resolved.
The header.php file was always published but for an unknown reason an space introduced by me was deleted by wordpress or something else.I was writing something like:
…’ class=”style1 <?php echo ” style2″;?>” ‘…
But in navigator I obtained code: class=”style1style2″ (without space)
I have solved the problem writting something like:
…’ class=”<?php echo “style1 style2″;?>” ‘…