Thejas Kamath
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Centering Images In TablesAdd the image in between the code below. (NOTE: Make sure that you have a copy of the file you are attempting to edit)
<div align="center"> enter the code of the image here </div>
Thanks
Forum: Fixing WordPress
In reply to: Changed theme, thumbnails don't workI think since you are using the Thumbnail Gen plugin, it don’t listen to your media settings. Ignore the settings.
Please change the status of this thread as RESOLVED so that anyone won’t enter to this thread!
Thanks
Forum: Fixing WordPress
In reply to: Changed theme, thumbnails don't workhmmmmmmmm! This is the problem. But it works perfectly with me. Try to edit the thumbnail size from WP admin panel by Going to Settings >> Medias.
Thanks
Forum: Fixing WordPress
In reply to: Changed theme, thumbnails don't workYou can use Thumbnail generator plugin.
download the plugin from https://wordpress.shaldybina.com/plugins/generate-post-thumbnails/
Thanks. Hope you have a good day/
Forum: Fixing WordPress
In reply to: How To Insert A Logo/Image Into My Title Header?Dear. Can I get your header.php code. You can find the code by editing the header.php file.
To edit the file:
1) Login to WP admin panel
2) Click Appearance in the left sidebar
3) Click Editor
4) In this page click on the header.php link (to edit the file) in the right side of the screen.
5) Copy the code and paste in this forum.
Put the code between
Your code here
Thanks
Forum: Fixing WordPress
In reply to: Stopping Spammers From RegisteringYou can redesign it. But the better thing you can do is using the plugin which is meant above by Samuel B.
Thanks!
Forum: Fixing WordPress
In reply to: Display category posts on a wp pageIf PHP codes does not come in to play with you, then you can switch on to amazing plugins!
Forum: Fixing WordPress
In reply to: Dynamic the_excerptPaste the following code in Function.php file
function new_excerpt_length($length) { return 20; } add_filter('excerpt_length', 'new_excerpt_length');
and
The following code in index.php file
<?php the_excerpt(); ?>
Forum: Fixing WordPress
In reply to: Display category posts on a wp pageUse the following code where ever you want. Before adding the code into the file, please make sure that you have a copy of that file.
<?php wp_list_categories('title_li=&orderby=id'); query_posts('cat=enter the category number here'); ?>
Thanks
Forum: Fixing WordPress
In reply to: wp-admin loop, can't access index.phpYeah! I suggest you to disable all the plugins and then reinstall one by one till you find the culprit!
Thanks
Forum: Fixing WordPress
In reply to: Change Comment FormYou can change the styles from Style.css in your theme file.
Forum: Fixing WordPress
In reply to: restrict access to wp-admin@helyos
Welcome~ If you have found out your answer, just change the status of this thread as RESOLVED!Forum: Fixing WordPress
In reply to: After logging out – weird error messages flood my screenIts my pleasure!
Forum: Fixing WordPress
In reply to: restrict access to wp-adminNo, Nothing would happen like that. If you restrict access to wp-admin, the thing which would happen is that the following page would not appear in Google.
Forum: Fixing WordPress
In reply to: Link to categoryFrom the widgets page add a TEXT widget with the following code which is below:
<?php wp_list_categories('title_li=&orderby=id'); ?>
OR
You can use a SIDEBAR CATEGORY plugin.
Thanks