Written in response to Making values in meta box conditional?:
| Answers Given: | 119 (see them all) |
|---|---|
| Contests Won: | 51 |
| Prize Money Earned: | $848 |
| Questions asked: | 1 (see all of them) |
| Questions refunded: | 0 (see all?) |
| Is a top asker (has the power to vote on anything): | |
| Subscribes to all the discourse posted to the site?: | No |
| Country: | |
| City: | |
| Netvotes this month (upvotes minus downvotes): | 0 |
| Netvotes of all time (upvotes minus downvotes): | 1 |
| Joined the site: | February 17, 2010 |
AdamGold's upvoted answers:
This member has no downvoted answers
Answers given to these questions:
- Want to use specific CSS file for all single posts
- Include JS scripts in header.php only if template.php is used
- WooCommerce/Comment Notification Change Email and From name
- Get tags for current category
- Child theme is not styling elements
- Create PHP variable from form selection Winner!
- Custom Taxonomy Listings
- 500 Internal Server Error - with WordPress 3.0/3.1 & Widget Winner!
- Facebook comments on every blog post Winner!
- Altering the nav output
- A 'BUY' button on pics with 'Core' theme and wp-ecommerce Winner!
- Custom Post Type as Static Frontpage Winner!
- Need some help ordering a table...
- jQuery Solution Needed For Code Used In WordPress Loop
- redirect taxonomy page to buddypress page
- Adding a orange color navigation bar effect on the head menu
- Custom post type permalinks all load the homepage Winner!
- Help creating custom taxonomies/catagories & sorting
- Unable to display custom fields value in widget Winner!
- Better code for my shortcodes
- Making values in meta box conditional? Winner!
- Wordpress Multisite with RSS feed not working
- PHP Fatal errors Max exec. time of 90 seconds on multiple files
- Shortcode for Custom Query
- Wordpress - Making RSS feed links Unclickable
- What's wrong with my post_meta / update_post function?
- Put sidebar on homepage
- wp_update_post_meta example
- PHP Out of memory on Custom Post Type
- Boilerplate Winner!
- yet another 'Undefined index' notice
- StoreFront(templatic) adding more fields to product
- replace a text by another in all custom field
- Problems showing shortcode outside the_content! Winner!
- Need help with theme update API script
- Author template page issues Winner!
- Problem updating pages
- Custom Sql and code for category listed in hierarchy tree
- Wordpress Category Grid with images Winner!
- Custom walker to generate menu, integrated breadcrumb dropdowns
- Need help with wp_handle_upload
- Toggle on blog page for the_excerpt and the_content
- Various output/exclude category fixes on a theme Winner!
- Image picker
- AJAX Help for Portfolio Items Winner!
- Migrating Posts and Images Issues Winner!
- Sortables -> input field
- Wordpress Categories Dissapear
- jQuery Columnize problems Winner!
- XML sitemap for Pages, Posts & Custom Post Types Winner!
- Custom Post Types and Permalinks in Gridnik Theme Winner!
- Custom Page template, Not displaying page, but displaying post.
- Customization of custom post admin screen filter drop downs
- Another Undefined index in WP_DEBUG
- Undefined index in WP_DEBUG Winner!
- How to Add Captions to Image Upload Field in Meta Box
- Autofocus Pro: Expand width of slider images?
- nextgen gallery link to url on thumbnail and txt beneath tumbnail
- Headspace2 for Custom Post Type Problem Winner!
- regex
- Setting up post thumb/featured image on theme edit page Winner!
- WP Custom Menu Error - Invalid argument supplied for foreach()
- Edit Single.php Winner!
- Problem with Tweetable plugin Winner!
- Default 1 column width in write post Winner!
- Title Duplication Warning Winner!
- Twitter Plugin that only shows users tweets Winner!
- My home page and sidebar content is cut off Winner!
- how to make my content fit my web page Winner!
- (Shopp Plugin) Remove /category/ category.php in permalinks
- Post attachments not working with TimThumb on Multisite Winner!
- have different page title images for each page
- expanding boxes Winner!
- AUTOFOCUS PRO - Limit # of images on home page
- AUTOFOCUS PRO - Move Gallery Slider
- Current Menu Class for Single Page Menu Parent/s
- Ordering items on Category pages by a custom field Winner!
- Wp multisite > this url doesn' exist Winner!
- Conditional Tags
- WP vertical nav, Subpages should only display on hover of Parent Winner!
- Autofocus Pro - Changing the colour of the hover text
- Search with Custom Fields in search.php Winner!
- Image Resizing. TimThumb Alternative? Post Thumbnails?
- Custom Meta Box Checkbox Issue Winner!
- Change home page button colors Emporium theme frome templatic Winner!
- Add sub-menu to wp_nav_menu vertical list Winner!
- Multiple Featured Image Boxes - Custom Post Type Winner!
- jCarousel ALMOST works. Single CSS change?
- How to append blog_id to echo [functions-defined-constant]?
- Subscribe to Categories
- AutoFocus Pro / Thematic Theme - Sticky Posts Won't Display
- Need Widget to display new users
- Order By Multiple Meta Fields Winner!
- Filtering taxonomy archive by custom post type Winner!
- Excluding a few pages from a query to get all pages for links
- Permalink Error - Cannot "quick edit" the permalink
- Answers Template from templatics
- IF statement for a custom field
- Load Javascript & CSS Only on Add New Post & Add New Page Screen? Winner!
- Creating A Tricky/Complex Custom Post Type Navigation Winner!
- Sticky Posts with Latest Post if less then 3 posts are stickied Winner!
- Install not working, installed within another WP blog
- Is there a bug in navigation code of Flexibility3? Winner!
- Adding in an RSS Feed Display Winner!
- Error when trying to add posts - Internal Server Error - Godaddy
- NextGEN Gallery not finding its javascript when using child theme Winner!
- Integrate IDX to my search tab Winner!
- Author Archive for Custom Post Type Winner!
- estimate needed
- Solution for Matching Business People with Funding Sources
- Trying to activate a theme - 500 Internal Server Error
- Need a page in category
- plugin create a loop in a design of the theme Winner!
- Editing Plugin
- echo WP ECommerce Product ID After Purchase Winner!
- Help with IMG and href title attribute on wordpress site
- Images imported, wordpress not reading them. Winner!
- thematic page display posts
- menu item highlighting
AdamGold has not voted on any questions
Questions asked:
AdamGold's Recommendations
AdamGold's discourse:
Hi Sven, why didn't you vote for any question?
Written in response to Wordpress Category Grid with images:
Did you change the X and Y paramaters to your desired numbers?
Written in response to Wordpress Category Grid with images:
I can't reply to the question since you asked for a refund, but just change the IMAGE_HERE with:
<?php ciii_category_images( 'category_ids=' . $category->cat_ID ); ?>
Lawrence Krubner had responses to this.
Written in response to Image Resizing. TimThumb Alternative? Post Thumbnails?:
I think everyone already uses PHP 5, but anyways I am almost sure it will work without it (if it doesn't, there's always a fix). About the way of displaying the image, you have this in the code:
<?php
* $thumb = get_post_thumbnail_id();
$image = vt_resize( $thumb,'' , 140, 110, true );
?>
<img src="<?php echo $image[url]; ?>" width="<?php echo $image[width]; ?>" height="<?php echo $image[height]; ?>" />
Unfortunately you already picked the winner.. So good luck with your site :)
<?php
* $thumb = get_post_thumbnail_id();
$image = vt_resize( $thumb,'' , 140, 110, true );
?>
<img src="<?php echo $image[url]; ?>" width="<?php echo $image[width]; ?>" height="<?php echo $image[height]; ?>" />
Unfortunately you already picked the winner.. So good luck with your site :)
Written in response to Need Widget to display new users:
Hi Jake, I didn't gave up - I was sleeping. Right when I got up I've done the first widget for you. Anyway, as you like - Good luck with your site.
By the way, if you would have told me that you don't need a plugin I would have told you that you just need to paste my code into your functions.php file.
By the way, if you would have told me that you don't need a plugin I would have told you that you just need to paste my code into your functions.php file.
Written in response to plugin create a loop in a design of the theme:
"You have created"? This code is built from all of our answers - Mine, jevusi's and Denzel. Can't believe you are actually taking the credit to your self. I spent 4 hours to help you and I don't even get a "Thank you". Shame on you.
Denzel Chia had responses to this.
AdamGold has not had any questions refunded
AdamGold suggested these prizes as appropriate for these questions:
- Search with Custom Fields in search.php - Suggested prize: $10
- Change home page button colors Emporium theme frome templatic - Suggested prize: $10
- Multiple Featured Image Boxes - Custom Post Type - Suggested prize: $35
- jCarousel ALMOST works. Single CSS change? - Suggested prize: $20
- AutoFocus Pro / Thematic Theme - Sticky Posts Won't Display - Suggested prize: $20
- Sticky Posts with Latest Post if less then 3 posts are stickied - Suggested prize: $25
- Integrate IDX to my search tab - Suggested prize: $30
- estimate needed - Suggested prize: $150
- plugin create a loop in a design of the theme - Suggested prize: $200
- Editing Plugin - Suggested prize: $10
- echo WP ECommerce Product ID After Purchase - Suggested prize: $20
- Images imported, wordpress not reading them. - Suggested prize: $5

