[Solved] Retrieving username from MYSQL database [closed]

In Login Page, add this: $_SESSION[‘uid’] = $row[1]; Suppose row[1] includes the user id or username Then in the sidebar: <?php echo $_SESSION[‘uid’]; ?> I dont know what the rank is for but you can echo out the rank in a similar way as username 4 solved Retrieving username from MYSQL database [closed]

[Solved] sidebar on the shop page is not showing but showing in blog and single product pages only [closed]

Answer: To make appear sidebar in shop page or else first we should check some default possible ways . step 1: check in theme customising- layout&styling the size of layout switched to full width.() step 2: after clicking widget option to customise widget in the shop page ,if you see notice as ‘your theme has … Read more

[Solved] Sidebar broken on wordpress site

The problem is in your CSS, specifically these 3 attributes: @media (max-width: 991px) .sidebar { top: 0; max-width: 80%; position: fixed; } Position:fixed and top:0 means your sidebar is forced to stick to the top of the page element, where on a mobile-view, you want the sidebar to stack above or below the content. Changing … Read more