mrcardinal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Inserting code from another HTML page into a postThat’s precisely what I’m looking to do! I am afraid to run any more plugins on the site- I have about a dozen running right now and trying to add another plugin is like trying to find the right medicine for someone who is already on a dozen of them- they all interact with each other!
Forum: Fixing WordPress
In reply to: The LoopThanks!
Forum: Fixing WordPress
In reply to: Show all tags on my pageJust to clarify- the code for the tag archive on my site is this:
<?php wp_tag_cloud(‘number=1000&smallest=10&largest=28’); ?>Forum: Fixing WordPress
In reply to: Hover mouse over link colorsthanks for pointing me to the a:hover
Forum: Fixing WordPress
In reply to: Hover mouse over link colorsI must be overlooking it- can you point it out to me
Forum: Fixing WordPress
In reply to: How do I move text in sidebarWhat exactly are you trying to move
Forum: Fixing WordPress
In reply to: fluid width code for imagesSorry, site is https://www.lighthousealliance.org/site
Forum: Fixing WordPress
In reply to: Inserting The Loop into a pageForum: Fixing WordPress
In reply to: Inserting The Loop into a pageI can’t figure out the codex to do it. I tried to create a page template and started with this:
<?php wp_get_archives('type=postbypost&limit=10'); ?>
If I could only get it to display the teasers underneath the listings.
Forum: Fixing WordPress
In reply to: Blog snippletsGo to “Settings” and click “Reading”
Change front page displays to “Your latest posts”
Post your summary in the “Excerpt” field and that’s what you will see on the front page.
Forum: Fixing WordPress
In reply to: How to re-direct my WP subdomain to main domain?Tentative probably wants to just register the domain and have free hosting with a subdomain somewhere else. If that’s the case and he hasn’t already registered the domain, he can go to GoDaddy and just register a domain and have it point to his blog address. Then he wouldn’t even have to upload a redirect index.html page (although if he only registers the domain and doesn’t get any hosting, he won’t be able to uploading anything).
Forum: Fixing WordPress
In reply to: How to re-direct my WP subdomain to main domain?Make an index.html file with the following code in it and upload it to the root directory of https://www.yourdomain.com:
<head> <meta http-equiv="Refresh" content="0; url=https://blog.domainname.com"></head> <body> <a href="https://blog.domainname.com">Click here if not redirected to website.</a> </body>
Forum: Fixing WordPress
In reply to: how can i change the name of first page?the text for “Home” is stored in the header.php
You can edit it to say whatever you want
On the site I administer- https://www.lighthousealliance.org it says “Blog”
Forum: Fixing WordPress
In reply to: new category problemDo you have any posts in any of those categories? By default, Word Press will not show the categories unless they have posts in them.
Forum: Fixing WordPress
In reply to: Show all tags on my pageI also removed a horizontal rule, the “Posted on” code and the “Comments” code. You will need to copy and edit the single.php file of your theme to get it to match.