thommeredith
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form DB] Exploit FoundWhen will this plugin be back on the site?
Forum: Plugins
In reply to: [SEO Ultimate] Media Editor Cannot Sort by Uploaded to This PostOK, strange since I turned it off and the issue went away, must have been a conflict with that and another plugin
Forum: Plugins
In reply to: [RSS Just Better] Some uncommon Latin alphabet characters not displayedI changed line 2002 to add html_entity_decode:
2002 $title = html_entity_decode(sanitxt( $title ));
Forum: Installing WordPress
In reply to: Errors after upgrade to 3.3.2 Admin bar in dashboardThere was a theme class for Custom Admin Bar that was conflicting.
add_filter(‘wp_admin_bar_class’, create_function(”, ‘return “Custom_Admin_Bar”;’))
Forum: Fixing WordPress
In reply to: 2.5 HTTP error when uploading Images from my computerI know this sounds obvious, but make sure that the file you are uploading does not exceed your upload size, I had a limit of 300KB and it just threw an HTTP Error without any verbiage about file size.
I changed it and it works great now
Forum: Fixing WordPress
In reply to: Adding Category DescriptionI figured out that I can place this on the main category page and it will show the category title and then the description,
... <?php if (have_posts()) : ?> <?php $this_category = get_category($cat);?> <dt><?php echo $this_category->cat_name; ?></dt> <dl><?php echo $this_category->category_description; ?></dl> <?php while (have_posts()) : the_post(); ?> ...
Here is also a link for more information:
https://codex.www.ads-software.com/Category_Templates#The_Custom_Category_TemplateForum: Plugins
In reply to: ClassifiedsRead this first,
https://www.ads-software.com/support/topic/11515?replies=14I tested Noah’s Classifieds, it worked, but not what I was looking for.
I was in a similar boat, building a site for a friend who wanted to show many different horses, with lots of descriptions and I wanted to create a form for her to input everything which would be formatted consistantly and professionally, basically, so she wouldn’t screw it up, I found this plugin to be very useful and simple for her to use:
Forum: Themes and Templates
In reply to: Side Bar Questionthe sidebar file is sidebar.php
you can move this from the template anywhere you want to by moving this tag
[code]
<?php get_sidebar(); ?>
[/code]more info:
https://codex.www.ads-software.com/Customizing_Your_Sidebar
https://codex.www.ads-software.com/Site_Architecture_1.5Forum: Plugins
In reply to: Problem with Event Calendarif you look at the links themselves, the top links that work are linking to ?m=date
and the list links are linking to ?p=XXXX, I have 3.0.4 and I get a different series of links, my list links point the the permalink and the calendar points to ?m=XXXXForum: Themes and Templates
In reply to: CSS footer positioningTry to include it in the center colum div, this will keep the foot div inside the center column.
<div id=”postcolumn”>
<div id=”posts”>
post stuff here
</div><div id=”foot”>
post stuff here
</div></div>
Forum: Installing WordPress
In reply to: making a blog a websiteI am not sure how your cPanel is configured,
my server at mediatemple asks me where to install the one-click installation of wordpress,
you might try store.yourwebsiteurl.com,
when it asks you about the database installation, use a different database entirely, if you can, or use a custom table tag instead of the default “wp_” use “wp_store_” this will keep things separated.
you will now have two blogs on the server running independently.