cottonrohrscheibplethcom
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Open RSS Widget Links in New Window?If you should stumble across this post, there is a fix for this, you can find documentation on it here if you are interested:
http://www.cottonrohrscheib.com/blog/2009/03/02/wordpress-rss-widget-targetblank-fix/
Forum: Plugins
In reply to: RSS Links Widget (_blank)If you should stumble across this post, there is a fix for this, you can find documentation on it here:
http://www.cottonrohrscheib.com/blog/2009/03/02/wordpress-rss-widget-targetblank-fix/
Forum: Fixing WordPress
In reply to: Help needed: How to open rss-links in new window?I have posted a documented fix on my blog here:
http://www.cottonrohrscheib.com/blog/2009/03/02/wordpress-rss-widget-targetblank-fix/Forum: Fixing WordPress
In reply to: How do I remove downloaded themes?They are located in your /wp-content/themes directory, just delete them, you don’t need to do anything inside of the dashboard unless one of the themes is your active theme. It’s a good idea though to at least leave your default theme in there, in my opinion.
Forum: Fixing WordPress
In reply to: Help needed: How to open rss-links in new window?Does anyone know of a paid service where we might could locate an answer to this question? I am not having very much luck in getting a response on these forums. Not complaining, these things exist on a volunteer basis but would like to know of some alternatives. This is one of those rare cases where an answer to an issue is not readily available from within the community.
Forum: Your WordPress
In reply to: New Blog using custom Revolution Theme – CreativityPro.comGood Job! Revolution Themes are awesome!
Forum: Your WordPress
In reply to: How To Integrate Your osCommerce Store in WordPress BlogJust curious about CReloaded? My partners and I have been contemplating this solution for e-commerce platform on some client projects. I know that the two are pretty closely related. Any plans to include CReloaded?
Forum: Your WordPress
In reply to: The Church AliveIt looks like you have it figured out on your site, did you still need some help? If you are using the featured content plugin (looks like you are), a lot of people forget to specify the featured content image as the ‘articleimg’.
Forum: Your WordPress
In reply to: How To Integrate Your osCommerce Store in WordPress BlogThis is very interesting, I briefly looked over your website, I am assuming that the management of the store will run seperately from the Dashboard in wordpress correct? Meaning that it’s a seperate installation altogether (directory, database, etc.)
Forum: Fixing WordPress
In reply to: Help needed: How to open rss-links in new window?This seems to be a mystery…
Before stumbling onto this post I also posted the same question here:
http://wordpress.org/support/topic/229767?replies=2So far I haven’t gotten a response yet either.
Forum: Requests and Feedback
In reply to: WordPress is NOT user friendlyI have never had any issues installing wordpress, I don’t see how it could be much easier to install.
Forum: Requests and Feedback
In reply to: unable to upload imageOnce you have CHMOD the directory to 777 you might want to try using the browser uploader instead of the Flash Uploader, the flash uploader has been problematic for us in the past because we also run mod_security. The Browser Uploader has worked well for our clients.
Forum: Everything else WordPress
In reply to: Artisteer – feedback please?I have been using it for a little while now and only have one real gripe about the software. In your generated theme it doesn’t automatically throw up bullet points for your posts in the sidebar. It kind of runs everything together, I contacted the company and got this tip back from them:
Currently you cannot add bullets in Artisteer, but you can change the list style later, after exporting the design. For this open the generated style.css file for edit and alter the
# style definitions, e.g.:style.css, line 1667:
.sidebar1 ul li, .sidebar2 ul li, .sidebar3 ul li
{
…
list-style-type: square; <== add this line (you can also use decimal, circle or upper roman types here)
margin-left: -20px; <== remove this line
…
}Forum: Themes and Templates
In reply to: Anybody using ArtisteerI have been using it for a little while now and only have one real gripe about the software. In your generated theme it doesn’t automatically throw up bullet points for your posts in the sidebar. It kind of runs everything together, I contacted the company and got this tip back from them:
Currently you cannot add bullets in Artisteer, but you can change the list style later, after exporting the design. For this open the generated style.css file for edit and alter the
- style definitions, e.g.:
style.css, line 1667:
.sidebar1 ul li, .sidebar2 ul li, .sidebar3 ul li
{
…
list-style-type: square; <== add this line (you can also use decimal, circle or upper roman types here)
margin-left: -20px; <== remove this line
…
}Forum: Everything else WordPress
In reply to: Home Menu TabI have seen a lot of newer themes out there that have the home hardcoded in this like this:
<li><a href="<?php echo get_settings('home'); ?>">Home</a></li>And when you actually put in a home page, you will often find yourself w/ two “Home” links in your navbar. It’s kind of an aggravation for me, but I know why the theme developer does it this way, what I usually do is go in and delete this line out and leave this:
<?php wp_list_pages('title_li=&depth=2&sort_column=menu_order'); ?>Usually works pretty well.