ucfknight10
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: One recent post from each categorywhy not just use wordpress’s built in functions? you could grab all categories, and then foreach category, grab the most recent post. let us know if you need help doing this.
Forum: Fixing WordPress
In reply to: wpdb on a separate pagei personally always just write the mysql statement myself, rather than using the wpdb functions.
$wpdb->query("UPDATE $wpdb->posts SET
likecount= $newvalue WHERE
post_title= '$posttitle'");
that shouhld work
Forum: Hacks
In reply to: Modifying 'the_contents' before saving?*mark as resolved*
Forum: Requests and Feedback
In reply to: Suggestions for www.ads-software.com profilesoh ok yeah that works. nice catch. i guess i was just looking for something a little more obvious then the lighter blue, but i’ll def pay more attention to that now. thanks @james.
Forum: Fixing WordPress
In reply to: Posts listing on starting letter (alphabetical)welcome *mark as resolved*
Forum: Fixing WordPress
In reply to: how to link blog header to my website?lol use https://pastebin.com. just copy and paste the code into the box, and then post the url here on the thread.
Forum: Fixing WordPress
In reply to: how to link blog header to my website?^^^ what they said
Forum: Fixing WordPress
In reply to: Posts listing on starting letter (alphabetical)well, it’s not incorrect. putting it in either place should work fine. just a matter of preferred organizational style.
Forum: Fixing WordPress
In reply to: Posts listing on starting letter (alphabetical)after
$curr_letter = $first_letter;
do a new line and type
echo '<a name="' . $curr_letter . '">' . ucfirst($curr_letter) . '</a>';
Forum: Fixing WordPress
In reply to: How to include custome fields in search result?lol or you can do a search for a plugin. i personally write everything myself: gives me more control, but yeah, a plugin like “search everything” or “search unleashed” should suffice.
Forum: Requests and Feedback
In reply to: Suggestions for www.ads-software.com profilesyeah i noticed the rss feed for the favorites, and i guess that makes sense. that’s fine. but i would like the links to be color coded to identify the status of the thread. would be simple enough, since it’s already displaying whether there was a new entry or not.
Forum: Themes and Templates
In reply to: Prototype 0.1: displaying images full sizeoh yes this is doable. create (or modify) attachment.php in your theme. if you need help doing this let me know.
Forum: Fixing WordPress
In reply to: Adding paragraphs not workingum, it appears to be working fine. can you tell me where specifically you are not seeing space between paragraphs?
Forum: Fixing WordPress
In reply to: Adding paragraphs not workingcan you provide a link to your web site?
Forum: Themes and Templates
In reply to: Prototype 0.1: displaying images full sizeok well this makes sense. i am not sure why you would want to display an image that is 1300 pixels wide on a theme that is only 900 pixels wide?
NOTE: if the user goes to save the image, they will get the original resolution of the image.