ddubbua
Forum Replies Created
-
Forum: Plugins
In reply to: [Download Attachments] Shortcode Options / Page IDOr even better would be some guidance on PHP I could add to the homepage that would display downloads for a few pages I select.
Forum: Plugins
In reply to: [WP Customer Reviews] Sidebar widget placement for reviewsYes, you are correct. Then you add this part to the head of your header.php file to call that file that you saved:
<script type=”text/javascript” src=”<?php bloginfo(‘stylesheet_directory’); ?>/js/cycle.js”></script>That will call the document you saved, then this will actually get the slide show going if you placed it in the sidebar:
<script type=”text/javascript”> jQuery(document).ready(function(){ jQuery(‘#secondary #wpcr_respond_1′).cycle(); }); </script>If you send a link we can help you debug if this doesn’t work.
Forum: Plugins
In reply to: [Galleria Galleria] Galleria Galleria – Changing Thumbnail sizesFound it! the height attribute for .galleria-thumbnails-container does the trick!
Forum: Plugins
In reply to: [Galleria Galleria] Galleria Galleria – Changing Thumbnail sizesI’m also looking for this! Any help will be rewarded with how to make a √ on a mac 🙂
Forum: Plugins
In reply to: [WP Customer Reviews] Sidebar widget placement for reviewsOver lunch I made a little more detailed explanation of how to add cycle and make it cycle through your testimonials including the plugin file that I modified to clean up the HTML so that it would work well with cycle. It was a quick explanation that just did over lunch so let me know if there are any questions.
Forum: Plugins
In reply to: [WP Customer Reviews] Sidebar widget placement for reviewshttp://jquery.malsup.com/cycle/download.html is the actual javascript you’ll need. If you’d like it to cycle all of the divs within the sidebar (my sidebar has an id of secondary you’d add this code to your header.php after adding the js you download to a js folder in your theme.
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/cycle.js"></script> <script type="text/javascript"> jQuery(document).ready(function(){ jQuery('#secondary #wpcr_respond_1').cycle(); }); </script>If you’d like to see it in action it’s currently running at portland.monkeybarstorage.com
Forum: Plugins
In reply to: [WP Customer Reviews] Sidebar widget placement for reviews@cbrazy The shortcode works when you put add_filter(‘widget_text’, ‘do_shortcode’); in your functions.php file. @prcface you can add the jquery cycle js to your site to cycle through the reviews. @bompus It’d be nice if the widget html didn’t have the same ID’s so that there aren’t conflicts between the widget and main review content. Love the plugin!
If anyone’s interested in how to get the cycle to work I could write a post, but it’s pretty simple if you’ve played with basic js at all.
Forum: Plugins
In reply to: [TubePress] [Plugin: TubePress] Thumbnail and Title not clickableI had problems with the thumbnails, no JS errors. Reverted to an old version. Works great.
Forum: Plugins
In reply to: [WP-Cycle] [Plugin: WP-Cycle] OutstandingI’ve posted the code for the WP-Cycle Plugin with alt and title tags. Thanks to Matt of ultrawebsites.com for adding fields to add the alt tags. I also modified the plugin to set the title for each image to be the same as the alt tags.
Forum: Plugins
In reply to: [WP-Cycle] [Plugin: WP-Cycle] 'alt' tagsI’ve posted the code for the WP-Cycle Plugin with alt tags. Thanks to Matt of ultrawebsites.com for adding fields to add the alt tags. I also modified it to set the title to be the same as the alt tags.