peterjharrison
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Chained Selects For CategoriesHi All,
Did a lot of searching and there doesn’t seem to be a plugin out there that does this, so guess what, I went and built one.
If you want you check it out it should be available here soon, in the extend section of www.ads-software.com.
Let me know your feedback on my website https://www.peterjharrison.me.
Regards
PeteForum: Fixing WordPress
In reply to: Changing the name of the “Home” pageHi,
Do you have a link to your blog because this should be straight forward.
Regards
PeterForum: Fixing WordPress
In reply to: Adding custom colorsHi,
You should be able to change all the colours in the stylesheet. If you have a look in the theme directory you will see a file called style.css. In this file you will see elements that refer to colours, such as:
color: #FFFFFF;
If you find the hex colour code of the colour you would like to use you can replace them in the style sheet and your theme will change to match.
Regards
PeterForum: Fixing WordPress
In reply to: hide comments default themeHi,
I have had a look at your website and can see that you are using the classic theme. In this theme the ‘Filed under:’ section you will find in your index.php file, if you remove the code I have pasted below this will get rid of that information.
<div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_tags(__('Tags: '), ', ', ' — '); ?> <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
The “Comments (0)” section is again in your index.php file, if you locate the code I have posted below and remove it this will get rid of the comments for you.
<div class="feedback"> <?php wp_link_pages(); ?> <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?> </div>
Regards
PeteForum: Fixing WordPress
In reply to: making comments completely disappearHi fidelzastro,
You can get rid of comments by removing any lines that relate to comments in your index.php or page.php page.
The lines should look like the one below:
<?php comments_template(); ?>
and
<?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
Regards
PeteForum: Fixing WordPress
In reply to: Changing the name of the “Home” pageHi lepenser,
Can you provide us with a link to the page so we can see which page you a refering to.
Regards
PeteForum: Fixing WordPress
In reply to: hide comments default themeHi,
Have you got a link to your website and i’ll take a look at the page and see if I can see what is happening.
Regards
PeteForum: Fixing WordPress
In reply to: Maintenance Mode BasicsHi,
Sorry got my wires crossed, this isn’t the same plugin as I use. Not quite sure how this one works. It seems strange because I get 404 error pages with your design (try /wp-login) but can’t get to a login page at all as you well know.
I would reccommend using this plugin as it works a treat for me [https://www.ads-software.com/extend/plugins/maintenance-mode/].
Regards
PeteForum: Fixing WordPress
In reply to: Resizing Comment BoxHi tompic823,
I have just had a look at your website and the reason why the comment box is to big is because of this line of code in your comments.php
<p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
You need to remove the cols setting as this is causing it to be to big. You will find this line in your comments.php file most likely.
Regards
PeteForum: Fixing WordPress
In reply to: Which folders i should NOT delete from my Host?Hi,
Just checked my files they all start with wp including the folders so keep them, also keep index.php and a file called xmlrpc.php.
That should be it all.
Regards
PeteForum: Fixing WordPress
In reply to: Maintenance Mode BasicsHi,
Can you get to /wp-login.php at all or does it do the same thing?
Regards
PeteForum: Fixing WordPress
In reply to: How make list of all links of post on 1 page ? like example givenHi,
Here is the code.
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class="post"> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> </div> <?php endwhile; else: ?> <p>Sorry, no posts matched your criteria.</p> <?php endif; ?>
Regards
PeteForum: Fixing WordPress
In reply to: Maintenance Mode BasicsHi,
Can you see the login page at all?
Regards
PeteForum: Fixing WordPress
In reply to: Google not searching my latest post :-(Hi,
Google can take while to index new post. The bigger and more popular your website the fast google will index it but it can take a few days at time to index new posts.
Regards
PeteForum: Fixing WordPress
In reply to: Maintenance Mode BasicsHi,
When you activiate this plugin you won’t be able to view your website unless you login as an admin. If you go to https://www.yourdomain.com/wp-admin and login you should be able to view your website as normal.
Very useful plugin use it all the time.
Any problems let me know.
Regards
Pete