noelgreen
Forum Replies Created
-
Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Page Displays Table Instead of CartI will continue to recommend and promote your plugin as it is solid, well made, and excellent in every regard!
Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Page Displays Table Instead of CartWow.
Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Page Displays Table Instead of CartOKAY!
Here is the partial ANSWER if anyone wants to know.
You have make sure to set the products as available! 😀 hahaI know, I know… simple right?
The table is still there (for some reason) but the cart is working now.Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Page Displays Table Instead of CartOh, and the answer Quirm gave to that post was, “No, it’s not possible.” and “The forums work fine.”
Which also was very helpful. 😛
Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Page Displays Table Instead of CartYes, that post finally appeared after trying for 3 days before THAT.
Thanks so much for your help.
Forum: Fixing WordPress
In reply to: Network Solutions: Plugin Upgrades FailSame problem here…
Forum: Fixing WordPress
In reply to: previous_post_link image replacementHere’s how I did it.
PHP code for your template…posts_nav_link(”, ‘<div id=”entry_previous”><span>Previous Entry</span></div>’, ‘<div id=”entry_next”><span>Next Entry</span></div>’);
CSS code…
#entry_next { float: right; display: block; width: 159px; height: 38px; margin: 10px 20px 40px 0px; background: url("images/entry_next.png") no-repeat 0 0px; } #entry_next:hover { background-position: 0 -38px; } #entry_next span { display: none; } #entry_previous { float: left; display: block; width: 229px; height: 38px; margin: 10px 0 40px 20px; background: url("images/entry_previous.png") no-repeat 0 0px; } #entry_previous:hover { background-position: 0 -38px; } #entry_previous span { display: none; }Forum: Fixing WordPress
In reply to: Remove Img TitleFigured it out.
Based on this post I changed my code to this.<?php $featured_image = array(); $args = array( 'post_type' => 'attachment', 'numberposts' => 1, 'post_status' => null, 'orderby' => ID, 'post_parent' => $post->ID ); $attachments = get_posts($args); if ($attachments) { foreach ($attachments as $attachment) { $featured_image = wp_get_attachment_image_src($attachment->ID, $size='thumbnail', $icon = false); } } echo '<img src="' . $featured_image[0] . '" alt=""/>'; ?>Forum: Fixing WordPress
In reply to: How to remove boxes from the Dashboard?I just posted a quick “how to” on this very thing here.
http://wordpress.org/support/topic/393131Forum: Plugins
In reply to: Jquery cycle images captionsI’m wanting to do the same thing. Did you figure this out?
Forum: Fixing WordPress
In reply to: Edit Categories Creation DateI figured it out.
Just change it so that the dropdowns are organized by “slug” rather than name or ID / date. Then you can rename the slugs anything you want and have them order in the way you want.
Forum: Fixing WordPress
In reply to: Edit Categories Creation DateAnd I know about the “Category Order” plugin.
That doesn’t really change anything in the “core”… just for use with that plugin. I need to change the creation dates / ID in the core without entering into the MySQL manually.
Forum: Plugins
In reply to: Advanced search: selection by different categories, tags (multiple search)This is getting close to being answered here…
http://wordpress.org/support/topic/314519Forum: Fixing WordPress
In reply to: Multiple Category Drop Down Boxes to Search PostsHere’s an example of a site that does pretty much exactly what I want… though I don’t think they’re really using a “search” feature…
http://gorillathemes.com/broker/?wptheme=Broker-Real-Estate-White-Style
Forum: Fixing WordPress
In reply to: Multiple Category Drop Down Boxes to Search PostsThanks man!
I updated my function.php, but what does the actual search button look like… or the drop downs menus?
Here’s my search box / button…
<form method="get" id="searchform" action="<?php bloginfo('url'); ?>/"> <input type="text" value="<?php echo wp_specialchars($s, 1); ?>" name="s" id="s"/> <input type="hidden" name="cat" value="16" /> <input type="submit" id="searchsubmit" value="Search" /><br />And here’s one of my drop downs…
php wp_dropdown_categories('depth=0&child_of=22&orderby=name&hide_empty=0&show_option_all=Any');Can you post a full working multiple drop down example?????