27,878 reputation
21861
bio website chipbennett.net
location Cincinnati, OH
age 35
visits member for 2 years, 2 months
seen 7 hours ago
stats profile views 1,771

I am a WordPress enthusiast, and try to help others as I have been helped by others in the community.

Note: all code posted by me, in questions, answers, or comments is dual-licensed under the GPL version 2.0 (or, at your option, any later version), and the CC-By-SA license required by the Stack Exchange terms of service.


Apr
26
answered Code for Recent Posts Widget
Apr
25
answered Custom post type isn't working
Apr
25
comment Custom post type isn't working
"I changed to use default capabilities and the menu option is still not appearing..." I don't think you did, completely. Note this parameter: 'capability_type' => 'community'.
Apr
25
comment Custom post type isn't working
What Plugins do you have active? To eliminate possible issues with the Members Plugin, can you change the capabilities to reference core-defined capabilities, and report whether or not the CPT appears in the admin menu?
Apr
25
comment How much leeway does Optimize Press give me as a designer?
This question is off-topic, because it is primarily an HTML/CSS design question, not a WordPress question. To the extent that the question is WordPress-related, it is too localized, because it involves a commercial Theme to which WPSE members do not have access, in order to provide answers.
Apr
24
comment Specific Loop For 2 <div> Within Each <li>
While loop constructs and loop HTML/CSS markup are not WordPress specific, and your comment really starts to approach work for me for free territory.
Apr
24
comment W3 Total Cache benefits without using plugin?
How would you anticipate doing that?
Apr
24
revised Jquery plugin not working on single pages
added 523 characters in body
Apr
24
comment Jquery plugin not working on single pages
You're still enqueueing two different versions of jQuery. Your Theme should not be enqueueing any custom version of jQuery. Just use the core WordPress-bundled version, via wp_enqueue_script( 'jquery' ).
Apr
23
comment Specific Loop For 2 <div> Within Each <li>
Elegant approach.
Apr
23
answered List of all theme customizer control types?
Apr
23
comment How do I just display the part of the array that I want to?
serialize() and unserialize() are PHP functions. I'm guessing you're using a Plugin to create the "custom repeatable" post custom meta field? Either the Plugin is serializing the data, or WordPress is serializing the array returned by the Plugin. Either way, at the point that you have $makethishappen = get_post_meta(31, $custom_repeatable, true);, you've successfully returned the data from WordPress.
Apr
23
answered How do I just display the part of the array that I want to?
Apr
23
comment How do I just display the part of the array that I want to?
This is a PHP/array question, not a WordPress question.
Apr
23
comment Static front page displaying twice
Please switch to a default core Theme, such as Twenty Twelve, and disable all Plugins. Verify whether or not the issue persists. If it does not, activate Plugins one-by-one until you determine if one causes the issue. If not, then the issue is your Theme. As your current Theme is from a shady site that distributes Themes with "sponsored" footer links, includes "kill" code to prevent modification of those spammy footer links, and is distributed under a non-GPL-compatible license, you need to choose a better Theme to use.
Apr
23
answered Jquery plugin not working on single pages
Apr
23
comment Jquery plugin not working on single pages
Please paste actual, relevant code in your question, including anything added manually to header.php, and any wp_enqueue_script() calls relevant to jQuery and its Plugins. Also: what Plugins do you have active?
Apr
23
comment Custom post type single-{custom}.php not working
It is possible that the fix is from resetting the permalink structure, which in turn flushed the rewrite rules.
Apr
23
comment Custom post type single-{custom}.php not working
I'm not sure that's true. A single post view is a single post view, whether the post-type supports archive index views or not.
Apr
23
awarded  Informed