Mohammed Mazhar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hiding dates in postsRemoving the date from wordpress post is very simple, all you have to do is search for these lines of code in your theme file and delete them.
Lines to delete:<?php the_date(); ?> or this function <?php the_time(); ?>
Or you can use some plugins also. You can also read the entire tutorial on this topic Remove date from WordPress posts
Hope this solves your problem, buddy
Forum: Fixing WordPress
In reply to: Images on sub-domain not getting indexed on googleNope, i haven found the solution, but i noticed that some of my images are indexed on google images. but it does not reflect on webmasters tools. Do you have any ideas about this?
Forum: Themes and Templates
In reply to: Problem by visiting website in Internet ExplorerYou website seems to have caught the ie bug.. Check if your theme has an ie fix or you will have to write it by your self..
Forum: Themes and Templates
In reply to: How to put a favicon?First, in your wordpress theme check if you have this html code. <link rel=”shortcut icon” href=”https://yoursitename.tld/directory1/directory2/favicon.ico” /> , if you do then just replace the .ico image file.if you dont have this line of html then need to modify your theme a little bit,it is very easy. You can read this tutorial to add favicon to your wordpress site .
Forum: Themes and Templates
In reply to: Fresh & Clean theme, remove date/categories from post?It is advisable to create child theme first. To remove date from your wordpress index page, you need to edit your Themes index.php file, search for the date function and delete it [Or comment this function]. You can follow the steps given at this link https://bornvirtual.com/wordpress/remove-date-from-wordpress-post/926/ . And regarding categories where do u want to remove the categories from?? the navigation bar??
Forum: Themes and Templates
In reply to: How do I make the author and date not visible on all postsBefore you start editing. It is advisable to create child theme first. To remove date from your wordpress index page, you need to edit your Themes index.php file, search for the date function and the author function and delete it [Or comment this function]. You can follow the steps given at this link https://bornvirtual.com/wordpress/remove-date-from-wordpress-post/926/
It is advisable to create child theme first. To remove date from your wordpress index page, you need to edit your Themes index.php file, search for the date function and delete it [Or comment this function]. You can follow the steps given at this link https://bornvirtual.com/wordpress/remove-date-from-wordpress-post/926/
Forum: Themes and Templates
In reply to: How To Remove Date From PostsIt is advisable to create child theme first as esmi said . To remove date from your wordpress posts all you have to do is to open the single.php file and search for the date function and delete it [Or comment this function]. You can follow the steps given at this link https://bornvirtual.com/wordpress/remove-date-from-wordpress-post/926/
Hey you can create redirects without a plugin as well, read https://bornvirtual.com/wordpress/redirect-404-error-in-wordpress/906/ for more details and also, if you 404-redirects are for humans and for bots as well. and for ‘/’ error have u edited your .htaccess file for www or non www canonical for your domain Name??
Forum: Plugins
In reply to: [Redirectioner] [Plugin: 404 Redirected] how to do with the 404 errorsThere are 3 ways of doing this
1. By changing your 404.php Source code,
2. By using wordpress plugins,
3. By editing your .htaccess file . There is a complete tutorial about 404 redirection in wordpress at the link given.Forum: Fixing WordPress
In reply to: How to remove author, date, and category from posts?Removing date is very simple, Remove date by opening your themes index.php file, and search for this code ‘<?php the_time(‘j’)?>’, once you find it then comment of delete this, dates will stop showing up on the post page and the for author and category, find out which line of code renders the text accordingly you can delete or comment. Also read https://bornvirtual.com/google/remove-date-stamp-from-google-search-results/892/ for better understanding
Forum: Fixing WordPress
In reply to: Remove Date on PostsRemoving dates from wordpress posts is very easy. All you have to do is open your themes index.php file, and some where in that file these is a piece of code which looks like
<?php the_time(); ?>
, you can comment or delete this. If you want the complete guide then you can visit the link that i have given above. Hope this helps
Forum: Fixing WordPress
In reply to: Plugin Install Asks for FTP DetailsYou can stop wordpress asking for your FTP details by just tweaking you wp-config.php file a little bit. Read the Entire Tutorial at Stop WordPress asking FTP credentials . Hope this helps