ilnar_kan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: CSS helpYou could try this css code
.woocommerce-LoopProduct-link img{ cursor: default; }It should work, but only css doesn’t resolve the problem, you have to prevent redirecting when image is clicked, JS code will handle that.. and the code below in your main theme JS file
$( ".woocommerce-LoopProduct-link img" ).click(function(e) { e.preventDefault(); return false; });Forum: Fixing WordPress
In reply to: nav-menu.php hackedDid you buy that theme or download it nulled version from somewhere? If the second the problem should be somewhere in files of this theme. And if you bought it problem might be anywhere and no one will be able to help you through the forum.
Forum: Fixing WordPress
In reply to: Website not working after deleting last line in footerI am not sure but I think “powered by wordpress” string is hooked to the ‘presscore_after_main_container’ action.
Did you try to delete only that line?Forum: Fixing WordPress
In reply to: CSS helpOf coure it is possible, you just need to change a little your html in a file that outputs this page.
Right now you have
<a href="smthing"><img src="smthing"><h3>Lot 0001</h3></a>
All you need is to change it to
<img src="smthing"><a href="smthing"><h3>Lot 0001</h3></a>Forum: Plugins
In reply to: [Widget Shortcode] Debug NoticesHello. Thats just php notices, they are not critical for plugin working.