straight to the point and very simple and good explanation! Thank you my head was in pain cus there is so many things to click and finally when you think you did it you just figure out you just hide it T-T
Thanks a lot! I had done it before seeing your tutorial and I was trying to replace the old page with a new one. My issue is that the slug/url (although different from the original page) doesn't seem to be working and now I can't see the old or new page. I'm glad I unpublished the old page properly. But any idea why my new updated page won't work? It's published, it's on the menu and the url is not the same as the old page. I'm going crazy here! Thanks 😊
1. Permalink Structure Reset your permalinks: Sometimes, permalink structures can cause issues. To fix this: Go to Settings > Permalinks in your WordPress dashboard. Without making any changes, click Save Changes to refresh the permalink settings. After saving, check if the new page works. 2. Cache Issues Browser Cache: Your browser may be loading an old version of the page. Clear your browser cache and try accessing the page again. Server Cache: If you’re using any caching plugins (e.g., WP Super Cache, W3 Total Cache), clear the cache from the plugin’s settings. Hosting Cache: If your hosting provider has server-side caching (like Varnish), you may need to clear it via your hosting dashboard or contact your host. 3. Conflicting Page or Post Check if there’s any other post or page with the same slug or URL that could be conflicting. Even though you’ve created a new URL, it’s good to ensure that no drafts, pages, or custom post types are conflicting. 4. Database Issues Sometimes, page data might not be properly saved in the database. Try: Saving the page again: Open the page in the WordPress editor, make a minor edit (e.g., add and remove a character), and then click Update. Database repair: If you suspect database issues, you can repair your database via phpMyAdmin or by adding this line to your wp-config.php file: php Copy code define('WP_ALLOW_REPAIR', true); Then go to yourdomain.com/wp-admin/maint/repair.php to repair your database. Remember to remove the line afterward. 5. Menu Link Issue Check if the menu link is pointing to the correct URL. Sometimes, the link can point to an incorrect or broken URL. To verify: Go to Appearance > Menus. Find your new page in the menu, and check that the URL is correct and matches the one in the page editor. 6. Theme or Plugin Conflicts A plugin or theme might be interfering with the page’s functionality. To troubleshoot: Temporarily switch to a default WordPress theme (like Twenty Twenty-Three). Deactivate all plugins temporarily and then activate them one by one to see if any of them is causing the issue. 7. 404 Redirect or Error If the page is throwing a 404 error, there might be a redirection issue. Check if you have any redirect plugins (like Redirection) or server-level redirects that might be causing the problem. You can use a tool like Redirect Path (Chrome extension) to check if any redirects are active for that URL. 8. WordPress Rewrite Rules WordPress uses rewrite rules for pretty permalinks. Sometimes, these rules can get corrupted. To reset them: Add the following line to your .htaccess file (if you're using an Apache server): bash Copy code RewriteRule ^index\.php$ - [L] Then refresh the permalinks as mentioned in Step 1. 9. SSL or Mixed Content Issues If your site uses SSL (https), make sure that the new page is being served over HTTPS and not HTTP. Sometimes, mixed content issues (where some resources are loaded over HTTP while the page is HTTPS) can break the page.
Hello! If i have pages with no traffic, should i delete them or redirect? These was test pages and static blocks what have url and google started to index them. Thanks for help, good video!
Thank you so much! This was so helpful! Please keep doing more wordpress theme Tutorials. I am totally new to this. How do I add a page? How do I add or delete links? How can I add ads to my page? Just some tutorials that can help!
hello. how to restore the deleted menu? i accidentally deleted it in bulk because i have two home bar so i tried to delete the other one but after the home menu was missing.
If we change our page to private, Will it affect the SEO? And will it stop showing in Google Search ? I have created 3 demo menu pages , but only want to show 1 . Let me know, if it will work if I private other 2 pages in a live website? Thanks in advance
If those pages are old on your site, and google already indexed it, it may keeps there, but if someone clicks on it, will loads your site's 404 page template and this will affect your SEO
Do all the changes on your site, generate a sitemap xml and submit it to your google webmaster tools (search console) this is a gentle way to ask Google to re-index your site th-cam.com/video/gkfVB8HBlJY/w-d-xo.html
Great cotnent, thank you so much for the WordPress beginners
I'm glad you found it helpful!
straight to the point and very simple and good explanation! Thank you my head was in pain cus there is so many things to click and finally when you think you did it you just figure out you just hide it T-T
Thank you so much for your comment!
Thanks a lot! I had done it before seeing your tutorial and I was trying to replace the old page with a new one. My issue is that the slug/url (although different from the original page) doesn't seem to be working and now I can't see the old or new page. I'm glad I unpublished the old page properly. But any idea why my new updated page won't work? It's published, it's on the menu and the url is not the same as the old page. I'm going crazy here! Thanks 😊
1. Permalink Structure
Reset your permalinks: Sometimes, permalink structures can cause issues. To fix this:
Go to Settings > Permalinks in your WordPress dashboard.
Without making any changes, click Save Changes to refresh the permalink settings.
After saving, check if the new page works.
2. Cache Issues
Browser Cache: Your browser may be loading an old version of the page. Clear your browser cache and try accessing the page again.
Server Cache: If you’re using any caching plugins (e.g., WP Super Cache, W3 Total Cache), clear the cache from the plugin’s settings.
Hosting Cache: If your hosting provider has server-side caching (like Varnish), you may need to clear it via your hosting dashboard or contact your host.
3. Conflicting Page or Post
Check if there’s any other post or page with the same slug or URL that could be conflicting. Even though you’ve created a new URL, it’s good to ensure that no drafts, pages, or custom post types are conflicting.
4. Database Issues
Sometimes, page data might not be properly saved in the database. Try:
Saving the page again: Open the page in the WordPress editor, make a minor edit (e.g., add and remove a character), and then click Update.
Database repair: If you suspect database issues, you can repair your database via phpMyAdmin or by adding this line to your wp-config.php file:
php
Copy code
define('WP_ALLOW_REPAIR', true);
Then go to yourdomain.com/wp-admin/maint/repair.php to repair your database. Remember to remove the line afterward.
5. Menu Link Issue
Check if the menu link is pointing to the correct URL. Sometimes, the link can point to an incorrect or broken URL. To verify:
Go to Appearance > Menus.
Find your new page in the menu, and check that the URL is correct and matches the one in the page editor.
6. Theme or Plugin Conflicts
A plugin or theme might be interfering with the page’s functionality. To troubleshoot:
Temporarily switch to a default WordPress theme (like Twenty Twenty-Three).
Deactivate all plugins temporarily and then activate them one by one to see if any of them is causing the issue.
7. 404 Redirect or Error
If the page is throwing a 404 error, there might be a redirection issue. Check if you have any redirect plugins (like Redirection) or server-level redirects that might be causing the problem.
You can use a tool like Redirect Path (Chrome extension) to check if any redirects are active for that URL.
8. WordPress Rewrite Rules
WordPress uses rewrite rules for pretty permalinks. Sometimes, these rules can get corrupted. To reset them:
Add the following line to your .htaccess file (if you're using an Apache server):
bash
Copy code
RewriteRule ^index\.php$ - [L]
Then refresh the permalinks as mentioned in Step 1.
9. SSL or Mixed Content Issues
If your site uses SSL (https), make sure that the new page is being served over HTTPS and not HTTP. Sometimes, mixed content issues (where some resources are loaded over HTTP while the page is HTTPS) can break the page.
Hello! If i have pages with no traffic, should i delete them or redirect? These was test pages and static blocks what have url and google started to index them. Thanks for help, good video!
I would try to update the pages, try to add more content, relevant links and interlinks. so they can get indexed
Very good video guide for WP
Thanks for your comment!
great vid thank u very much, keep a great work
Thanks, will do!
Thank You so much it helped me a lot
Thank you so much for your comment!
Thank you so much! This was so helpful! Please keep doing more wordpress theme Tutorials. I am totally new to this. How do I add a page? How do I add or delete links? How can I add ads to my page? Just some tutorials that can help!
Please follow th-cam.com/video/BC-nE3Jf_uM/w-d-xo.html - th-cam.com/video/gwmVz5iClbE/w-d-xo.html - th-cam.com/video/RQ1wMKZByNM/w-d-xo.html
hello. how to restore the deleted menu? i accidentally deleted it in bulk because i have two home bar so i tried to delete the other one but after the home menu was missing.
Do you have a site backup? It's the only way, but I think it's easier to create the menu again.
@@visualmodo its theme on wordpress so its working now thank you
Great
All the best
If we change our page to private, Will it affect the SEO? And will it stop showing in Google Search ?
I have created 3 demo menu pages , but only want to show 1 .
Let me know, if it will work if I private other 2 pages in a live website? Thanks in advance
If those pages are old on your site, and google already indexed it, it may keeps there, but if someone clicks on it, will loads your site's 404 page template and this will affect your SEO
@@visualmodo Any suggestions how to make it correct?
Do all the changes on your site, generate a sitemap xml and submit it to your google webmaster tools (search console) this is a gentle way to ask Google to re-index your site th-cam.com/video/gkfVB8HBlJY/w-d-xo.html
@@visualmodo Thanks for your valuable advice. 🤝
Hello, can you make a tutorial on how to hide a tab on a specific page please.
What tab are you referring to?
thank you im working on my dads web and this was the worst thing i couldnt do yesterday this is a game changer
Thanks for your comment, All the best
Thank you so much
Welcome!
Thankyou
Thanks for your comment =D
TOPPPPPP!!!!!!!!
Thanks for your comment!
Obrigada!!
Sempre bem vindo
astra theme
Thanks for the comment
Fazool
desfazool
The most annoying voice on TH-cam has officially been found
The most useless comment on TH-cam has officially been found =D
🐯🦧😘😘😘😘🤩🤩🤩
Thanks for your comment!
Thanks
Welcome