Not able to change WordPress Permalink Settings

Changing the permalinks in WordPress is a straightforward process. Here’s a step-by-step guide: 1. Login to Your WordPress Dashboard: Open your web browser and go to your WordPress admin login page (usually, it’s http://yourdomain.com/wp-admin/). Log in with your administrator username and password. 2. Navigate to Permalink Settings: After logging in, go to the left sidebar … Read more

Get Sub-Menu Dropdown to Show Over Page Content Avada

This is a relatively simple CSS issue. I just checked your output HTML and located the top most parent container for the navigation. Then I added, in dev tools the following CSS: .fusion-tb-header .fusion-fullwidth{ position: relative; z-index: 100; } That essentially moves the navigation’s parent container row to sit above (on the Z axis) the … Read more

Order posts base on last favorite post by user

To order favorite posts based on the last post favorited by a user, you need to modify the query to include the post IDs in the order they were favorited by the user WP does not directly store the order of favorites, you might need to store this information separately, for example, in user meta … Read more