Sage Brownell
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: What's wrong with my Permalinkshttps://codex.www.ads-software.com/Using_Permalinks
“Make sure to end your structure with either %post_id% or %postname% (e.g. /%year%/%monthnum%/%day%/%postname%/) so that each permalink points to an individual post.
For performance reasons, it is not a good idea to start your permalink structure with the category, tag, author, or postname fields. The reason is that these are text fields, and using them at the beginning of your permalink structure it takes more time for WordPress to distinguish your Post URLs from Page URLs (which always use the text “page slug” as the URL), and to compensate, WordPress stores a lot of extra information in its database (so much that sites with lots of Pages have experienced difficulties). So, it is best for the first structure tag to be a numeric one, such as /%year%/%postname%/. (Some people recommend /%post_id%/%postname%/ which works for performance reasons but others recommend against it because it is unfriendly to users in the many contexts in which users interact with URLs.) See Otto’s technical writeup on the topic as well as this wp-testers discussion.”Try that…
Forum: Fixing WordPress
In reply to: How to delete a sticky postHave you tried refreshing your cache? Your computer may be remembering a nothing post.
Forum: Fixing WordPress
In reply to: Adding bbPressWhy not follow the installation guide from the author?
https://www.ads-software.com/extend/plugins/bbpress/installation/As well, you could always go to Dashboard > Plugins > Add New
And search it up, letting WordPress do the installatiion for youHope this helps
have you tried like this?
<a href="URL"><img src="image URL"></a>
Forum: Alpha/Beta/RC
In reply to: If I Upgrade to Beta…Thank you very much ??
Forum: Plugins
In reply to: looking for a widgetI am pretty sure (but not positive) that HTML code would work in the text widget, meaning that you could put an image in with HTML:
<img src="image URL"/>
No problem, glad I could help
https://codex.www.ads-software.com/WordPress_in_Your_Language
Does this help?Forum: Fixing WordPress
In reply to: permalinks problems with Static Frontpage/Blog postshttps://codex.www.ads-software.com/Using_Permalinks
“For performance reasons, it is not a good idea to start your permalink structure with the category, tag, author, or postname fields. The reason is that these are text fields, and using them at the beginning of your permalink structure it takes more time for WordPress to distinguish your Post URLs from Page URLs (which always use the text “page slug” as the URL), and to compensate, WordPress stores a lot of extra information in its database (so much that sites with lots of Pages have experienced difficulties). So, it is best for the first structure tag to be a numeric one, such as /%year%/%postname%/. (Some people recommend /%post_id%/%postname%/ which works for performance reasons but others recommend against it because it is unfriendly to users in the many contexts in which users interact with URLs.) See Otto’s technical writeup on the topic as well as this wp-testers discussion.”Might that be your problem?
Forum: Installing WordPress
In reply to: Index page brings up install page- helpOn the post page, next to where it says title, there is a box…if you click it it will select all posts on that page (instead of you clicking each one individually)
Forum: Fixing WordPress
In reply to: How to check where a site is hosted?Does this help in any way?
https://www.whois.net/whois/ourkenyaholiday.comForum: Fixing WordPress
In reply to: URL problem —————– #.TpW0PBpumCMhttps://codex.www.ads-software.com/Using_Permalinks
“For performance reasons, it is not a good idea to start your permalink structure with the category, tag, author, or postname fields. The reason is that these are text fields, and using them at the beginning of your permalink structure it takes more time for WordPress to distinguish your Post URLs from Page URLs (which always use the text “page slug” as the URL), and to compensate, WordPress stores a lot of extra information in its database (so much that sites with lots of Pages have experienced difficulties). So, it is best for the first structure tag to be a numeric one, such as /%year%/%postname%/. (Some people recommend /%post_id%/%postname%/ which works for performance reasons but others recommend against it because it is unfriendly to users in the many contexts in which users interact with URLs.) See Otto’s technical writeup on the topic as well as this wp-testers discussion.”Maybe that’s your problem?
Forum: Fixing WordPress
In reply to: permalinks problems with Static Frontpage/Blog postsHave you read through this?
https://codex.www.ads-software.com/Creating_a_Static_Front_PageForum: Fixing WordPress
In reply to: anchor link jpeg to text on different page<a href="url"> <img src="image url"> </a>
You could just insert the image using the text widget and some HTML if all you need is a linked image.