This topic is: not resolved
-
i recently cleaned my wp_postmeta table with the following sql command:
SELECT * FROM wp_postmeta pm LEFT JOIN wp_posts wp ON wp.ID = pm.post_id WHERE wp.ID IS NULL;
DELETE pm FROM wp_postmeta pm LEFT JOIN wp_posts wp ON wp.ID = pm.post_id WHERE wp.ID IS NULL;Now i see a little issue with produt slider navigation arrows: if i click an arrow to scroll the slider it works but it also scroll the page to the top and append an “/#” to the end of the URL. How can i fix it?