Muhammad Jawad Abbasi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Saying administrator Email address Not foundIf you don’t know about phpmyadmin database no problem we will help you
Forum: Fixing WordPress
In reply to: Saying administrator Email address Not foundyou know about the phpmyadmin database panel because add email in the database user table & kindly share website link?
Forum: Developing with WordPress
In reply to: How to remove side gap in footerKindly share website link?
Forum: Fixing WordPress
In reply to: My website has turned to codePlease install & activate “Fusion Builder” plugin
Forum: Fixing WordPress
In reply to: Broken Site + URL IssuePlease go to the Website files and if already .htaccess file open it then remove existing code & put this code if you are not able to find .htaccess file then create new one and put this below code
# BEGIN WordPress RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPress
- This reply was modified 11 months ago by Muhammad Jawad Abbasi.
Forum: Fixing WordPress
In reply to: How to remove previous/next navigation on posts?Please use that CSS code with !important
.post-navigation{ display: none !important; }
ok Possible to create a short video of the issue that you have faced?
Please go to WordPress website files and create .htaccess file and put that code
# BEGIN WordPress RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPress
If already .htaccess there then simply open and remove previous code add this new one
Forum: Everything else WordPress
In reply to: horizontal linePlease go to WordPress dashboard & open Appearance->Customize->Additional CSS option then add that code
#line { display: none; }
If not work the first one remove it and add this one please
#line { display: none !important; }
Forum: Fixing WordPress
In reply to: Banner IssuePlease open that link and download that file https://drive.google.com/drive/folders/1Chc9Z_tNxEoCrBij7U8A1zXu8_EQLSMs?usp=drive_link
Then follow that to import: https://ibb.co/Zgshrbg
After that go to that page https://immortaljellyfishcreations.com/purpose-challenge/ and click on “Edit with Elementor” and then further follow that steps to insert on the page
Step 1: https://ibb.co/ZL9b8Zt
Step 2: https://ibb.co/BsFJpQR
Forum: Developing with WordPress
In reply to: Adding Padding to Top of PagePlease share the exact page link that you want to add padding on top?
Forum: Developing with WordPress
In reply to: Moble Menu not colapsedPlease install that plugin https://www.ads-software.com/plugins/insert-headers-and-footers/
Step 1: Open that https://freeimage.host/i/JAAobZx
Step 2: Click on that https://freeimage.host/i/JAAxnGp
Step 3: Enter any name and select that option https://freeimage.host/i/JAAIfBR
Step 4: Then pasted that below code on this area then active and save that please see in the screenshot https://freeimage.host/i/JAA72It
<style> .mobile-menu-container ul ul { display: none; } </style> <script> const menuItems = document.querySelectorAll('.mobile-menu > li'); function showSubMenu() { const submenu = this.querySelector('.sub-menu'); if (submenu) { submenu.style.display = 'block'; } } function hideSubMenu() { const submenu = this.querySelector('.sub-menu'); if (submenu) { submenu.style.display = 'none'; } } menuItems.forEach(item => { const link = item.querySelector('a'); const submenu = item.querySelector('.sub-menu'); if (submenu) { link.addEventListener('click', function (e) { e.preventDefault(); submenu.style.display = submenu.style.display === 'block' ? 'none' : 'block'; }); } }); </script>
Forum: Fixing WordPress
In reply to: How to hide header image on “inner pages”Please go to Appearance->Customize->Additional CSS option then add that code
.header.v-align-top{ background: none !important; } .inner-header-description{ display: none; }
Forum: Fixing WordPress
In reply to: Submenu Transparent ColorPlease disable coming soon from https://allouttherapy.com/ because I can’t able to see your website
Forum: Everything else WordPress
In reply to: Remove Top bar bannerPlease go to Appearance->Customize->Additional CSS option then add that code
.top-bar{ display: none; }
If not work then remove and add that code please
.top-bar{ display: none !important; }