shane-g
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Add date and author’s nameHi,
To add Date and Time stamp in wordpress we need to modify index.php file of the current active theme. Please check the code here:
For author add this code in index.php file of your theme where you want to display the author name:
<?php the_author() ?>
Thanks,
Shane G.
Forum: Fixing WordPress
In reply to: changing fontHi,
As richarduk said, you need to edit the style.css file of your theme. If you face any issue in editing the stylesheet file then paste your stylesheet code here to get more feedback.
regarding media upload you need to edit the core files of wordpress which is too hard and get a perfect programmer assistance.
Thanks,
Shane G.
Forum: Fixing WordPress
In reply to: Centering an image on the sidebar.Hi,
You need to copy the following code and paste it in style.css of the theme.
img.centered { display: block; margin-left: auto; margin-right: auto; } img.alignright { padding: 4px; margin: 0 0 2px 7px; display: inline; } img.alignleft { padding: 4px; margin: 0 7px 2px 0; display: inline; } .alignright { float: right; } .alignleft { float: left; }
Add this code in style.css file.of your theme and it should be resolve the problem. If it does not solve the problem then replace the .img{} tags with the above code in style.css.
Thanks,
Shane G.
Forum: Fixing WordPress
In reply to: 404 Error on EVERY page?Hi,
Set your desired permalink from wordpress admin area -> settings -> permalinks and then add this code in htaccess:
`# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress`
Thanks,
Shane G.
Forum: Fixing WordPress
In reply to: envoke 404 manualyHi,
Set your desired permalink and add this code in htaccess:
`# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress`
Thanks,
Shane G.
Forum: Fixing WordPress
In reply to: Admin login failure – helpForum: Fixing WordPress
In reply to: Unable to create directoryHi,
Assign 766 recursive permissions to wp-contents directory from SSH. If you does not have an access of SSH then contact your hosting service provider to grant the permissions.
Permissions 777 may cause the hacking issue.
Thanks,
Shane G.
Forum: Fixing WordPress
In reply to: Moved WP directory and WP stopped workingHi,
It seems that you have not copied all the files from here to there. so check all the files and make sure that they are completely copied.
Thanks,
Shane G.
Forum: Fixing WordPress
In reply to: Previous post link WAS working. Now it’s not.Hi,
Check with these plugins:
https://www.ads-software.com/extend/plugins/wordpress-navigation-list-plugin-navt/
https://www.ads-software.com/extend/plugins/wp-pagenavi/Thanks,
Shane G.
Forum: Fixing WordPress
In reply to: 500: Internal Server ErrorHi,
Check with these options:
-> Disable all the plugins
-> Reinstall wp-admin and wp-includes directory.
-> Upgrade your wordrpess to the latest version
-> Check with default theme to rules out theme level problem.
-> Remove all unwanted code from htaccessThanks,
Shane G.
Forum: Fixing WordPress
In reply to: Changin permalink to outside wordpress installationHi,
Set your desired wordpress custom permalink and then add this code in htaccess:
# BEGIN WordPress <IfModule mod_rewrite.c> ErrorDocument 404 /index.php?error=404 RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
https://codex.www.ads-software.com/Settings_Permalinks_SubPanel#Customize_Permalink_Structure
https://codex.www.ads-software.com/Using_Permalinks#Choosing_your_permalink_structure
Thanks,
Shane G.
Forum: Fixing WordPress
In reply to: WP Permalinks Not Working. Tried WP Codex but didn’t workHi,
Set your desired permalink settings and add this code in htaccess:
# BEGIN WordPress <IfModule mod_rewrite.c> ErrorDocument 404 /index.php?error=404 RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Thanks,
Shane G.
Forum: Fixing WordPress
In reply to: Sticky Post Title Set as <h1>Hi,
You can use the custom stylesheet for your sticky post. Refer this article for more details
https://codex.www.ads-software.com/Theme_Development#Theme_Style_Sheet
Thanks,
Shane G.
Forum: Fixing WordPress
In reply to: Variable Conditional TagsForum: Fixing WordPress
In reply to: Adding a link to forum?Hi,
Check with this plugin:
https://www.ads-software.com/extend/plugins/sem-external-links/
Thanks,
Shane G.