estjohn
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Add a link within the text of my blogColin – I just posted something similar in
https://www.ads-software.com/support/topic/90538?replies=4
see if that helps
Forum: Fixing WordPress
In reply to: Add a link somewhere in your template tonot a problem. i try to at least get a direction going or ask for more info.. if it is soemthing i cannot answer or someone else understands better, its a direction to start at.
what skippy means is that say your page is subscribe.php
you would get your sidebar.php (or whatever the file is that has the menu on ot – depends on the theme – the names of the files can change from theme to theme) and add soemthing like (opening the file sidebar.php in wordpade or notepad and manually inserting the link for the code)in the default theme, it would be the file sidebar.php
you could look through the code and manually add a link to sidebar.php
((<a href="sidebar.php">Subscribe Link</a>
here in the code:
))<li><h2>Archives</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<li>
<a href="sidebar.php">Subscribe Link</a>
</li>
<li><h2>Categories</h2>
<ul>
<?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=0'); ?>
</ul>
</li>See how I manually added the link between the code for The Subscribe Link between Archives and the code for categories?
Does that make a little bit of sense?
Or, you could goto your links manager in the admin panel and add the link there so it would show up wherever your links are listed at automatically
Forum: Installing WordPress
In reply to: 404 errorslooks like your permalinks are not working… what are the permissions you have on your .htaccess
set the permalinks back to the default ones (?=234) and see if that works, then you will know it is the rewrite rules in the .htaccess for permalinksForum: Plugins
In reply to: Reverse Post OrderIm not sure if this will work…
$posts = query_posts($query_string .
'&orderby=date&order=desc&posts_per_page=-1');
}
Forum: Installing WordPress
In reply to: 404 errorsI can go from link to link fine on https://globalpsychics.com/
are there specific posts you are talking about?
Forum: Fixing WordPress
In reply to: Add a link somewhere in your template toWell, it depends on what theme you have and what you are adding
it wants you to open a file like single.php, index.php, post.php, page.php or such, look for some code and paste their code whereever it is supposed to go
you might want to be a little more specific what it is asking you to link or put where since different plugins have different places for links and codes
Forum: Fixing WordPress
In reply to: Rotating banner in index.phpphp itself can be set up to pull a single image and associated url from a directory you specify and have it change randomly each time the page is reloaded.
Forum: Plugins
In reply to: A Newbie That Need 2 Things for a Perfect Post!well.. im not sure offhand how you can show how many times someone has read a comment since many of the themes have comments all displayed at once instead of having to go to a specific page to read the comment
Forum: Fixing WordPress
In reply to: Theme/CSS not being shown(Well… might want to include a link.. my mind reading ability is dampened by the aluminum foil hat i wear to keep the mindreaders at bay ??
Forum: Fixing WordPress
In reply to: iFilmyou might want to supply a link to where you are doing this and paste what code you are using and where you are putting it
Forum: Fixing WordPress
In reply to: get a list of the more reader postWP-PostViews, aw-stats, wpstats, google analytics
thos will all give you stats on pages read, the plugins you can put in the single.php
Forum: Plugins
In reply to: A Newbie That Need 2 Things for a Perfect Post!Post teaser will let you specify how many characters you want the article to have in the index page https://dev.wp-plugins.org/wiki/PostTeaser
and then you can use a plugin that will show how many times the single.php is read
wp-stats, aw-stats, google analytics, WP-PostViews
Forum: Themes and Templates
In reply to: list and sublistswhy dont you paste the code you have for your style.css for this?
you can slo try validating your style.css from w3.org and see if the style.css is correct format
Forum: Everything else WordPress
In reply to: Permalink Structurewhat did you change the permissions to?
Forum: Themes and Templates
In reply to: Collapsing Category PluginDid you take out the old command and replace it with the new or did you just add the new also with the old. What version of WP do you have?