kantell
Forum Replies Created
-
I took a screenshot to show what happens. It just says that the link isn’t valid.
http://chickgeek.org/Untitled-1.gif
Thanks
Forum: Plugins
In reply to: [Slideshow Satellite] Full ThumbnailSorry I never got back. I was slammed. I installed the new version, but can’t seem to find the place to mark it so that the thumbnails are not cut off.
Forum: Plugins
In reply to: [Special Recent Posts] Can't Get Columns to WorkWhen I view the source, I see your css code in between <!– BOF Special Recent Posts PRO Edition ver2.5.0 –>.
<h3 class=”widget-title srp-widget-title”></h3><div class=”srp-widget-container”><div id=”-srp-singlepost-1″ class=”srp-widget-singlepost srp-single-column”><h4 class=”srp-post-title”><a class=”srp-post-title-link”…
I uploaded all of the files again except for the config file where I have the options set.
If you would prefer to go in and take a look, I can make a login for you.
Thanks for your help on this. It’s such a great plugin that I want to make it work. 🙂
Forum: Plugins
In reply to: [Special Recent Posts] Can't Get Columns to WorkOkay, I added display: table-cell and made sure the css is not disabled. They are now the width of the area and on top of each other.
Forum: Plugins
In reply to: [Custom Permalinks] [Plugin: Custom Permalinks] No luckI would go to Settings –> Permalinks and change it to a custom link of /%postname%/. As long as your htaccess is set up correctly, this should work just fine.
Forum: Plugins
In reply to: [EZ Staff List] [Plugin: EZ Staff List] Remove "Hours:" from the bottomTry deleting the following from /ez-staff-list/plugins/staff_management.class.php
$staff_members[$next_key][‘staff_hours’] = $_POST[‘staff_hours’];
$staff_members[$key][‘staff_hours’] = $_POST[‘staff_hours’];
$staff_hours = ”;
$form->add_label(‘Hours’);
$form->add_element(new textbox(‘staff_hours’, $staff_hours, 75));
$staff_members[$key][‘staff_about’] .= gen_content(‘strong’, ‘Hours’) . $staff_member[‘staff_hours’];
. div(gen_content(‘strong’, ‘My Hours: ‘) . $staff_member[‘staff_hours’], array(‘class’=>’my_hours’)), array(‘class’=>’staff_data’)See if that works. I have another error in the code, but I think that is only on my end.
Forum: Plugins
In reply to: [Author Avatars List/Block] [Plugin: Author Avatars List] Horizontal MenuFinally figured it out. Put the following into your themes css.
.author-list { text-align: left; }
.author-list .user { padding: 0.2em; display: inline-block; vertical-align: top; /* IE 7 */ zoom: 1; *display: inline; }
.author-list .with-name { display: block; }
.author-list .user .name { display: block; }
.author-list .with-biography { text-align: left; margin-bottom: 0.5em; }
.author-list .with-biography .name { font-size: 1.1em; }
.author-list .with-biography .avatar { float: left; margin: 0.2em 0.3em 0.2em 0; }
.author-list .avatar img { float: none !important; /* is set to left on some themes */ }Forum: Plugins
In reply to: [Author Avatars List/Block] [Plugin: Author Avatars List] Horizontal Menuanybody?
That worked great, but the submit button is now below the field. is there a way to move it to the right of the field?
what is the class name I need to edit in the css file?
Forum: Plugins
In reply to: [Wordpress Tabs] [Plugin: GT Tabs (formerly postTabs)] Adding Sub-headerswell, I guess I am going to go to a different plugin since nobody responded.
Forum: Themes and Templates
In reply to: [p2 theme] Hide comments home page onlyFirst off, you have errors in your code. Remove “>RSS anywhere it appears.
Second, I don’t see a call to comments.php. What is the URL?
Forum: Themes and Templates
In reply to: [p2 theme] Hide comments home page onlyYou put this in the index file. Basically, this code says that if the page is NOT the home page, then show comments. Otherwise, hide them. Put it in place of the comments line that is currently on the index page.
Forum: Themes and Templates
In reply to: [p2 theme] Hide comments home page only<?php if (!is_home () ) : ?>
<?php
include(TEMPLATEPATH . ‘/comments.php’); // Display comments
?>
<?php endif; ?>Forum: Themes and Templates
In reply to: [p2 theme] Hide comments home page onlyI was able to do so by putting the following around the comments area.
<?php if (!is_home () ) : ?>
<?php endif; ?>