mcjohnst
-
Wrap wp_nav_menu output around option tags for select menu
Is there a particular reason you're wanting to spit out a form using the custom menu system? What's the functionality you're looking for here ?
-
One Page Personal Websites
There's no actual parallax scrolling on that from what I can tell. Just some clever use of image sliders and the ever trendy "this content section is huge and changes patterns / colors compared to those around it".
-
Collection of 'default wordpress components'?
That list from DigWP has the bulk majority of the default classes. The only thing I notice from a quick skim that's missing is the wp_nav_menu classes and probably the new gallery classes. Bones' SASS partials have a good chunk of what th…
-
What do you call this...?
That looks like a basic Carousel / Slider. There's only about a billion of them out there. Shouldn't be too hard to find one that fits your needs. Personally, I'm a fan of NivoSlider. Super simple and easily styled.
-
Using PHP to hide a div element on a certain page
... if you want to remove the div entirely why not just use something like this:
-
Masonry & WordPress
The query in your loop is still filtering on category with ID 7. Dig through that codex entry you listed and check this article out. Should give you a good idea of how to construct queries and all the fun stuff you can fetch / exclude. This should …
-
Why my contact form is going to a different page?
Is the processing / error handling apart of the same page? If so, try setting the action to #
-
Masonry & WordPress
First, try disabling all unnecessary plugins while you iron out masonry. Some plugin authors don't properly enqueue the scripts and it can just add the pile of errors you're trying to debug. Secondly, it appears your loop is spitting out …
-
Multiple Loops in Category pages in Wordpress
That would be correct. Something like
-
Multiple Loops in Category pages in Wordpress
category_name using the slug not good enough ?
-
Multiple images for custom posts and color variation
I would look into using Advanced Custom Fields and possibly springing for the repeater field premium addon. It's pretty much awesome. There are of course alternatives, so shop / browse around and see what works for you.
-
Multiple Loops in Category pages in Wordpress
Just add category parameters to the queries. Check Here Under "Category Parameters"
-
Client amendments
Make sure your scope is as clearly defined as possible at the beginning of the project. Otherwise it'll come to bite you in the ass at some point. Example: Your website will have: - 10 pages - 5 templates - A contact form that mails to awesom…
-
Anyone recently mess with Drupal?
Drupal is the Linux nerd's CMS. It's keyboard-headbuttingly frustrating to setup and "get it" but once you do, you can do some scary stuff with the amount of control it provides. If you're a hardcore tinkerer / masochist, g…
-
Single page websites
I'd have to agree with @sharikul. The site is aesthetically pleasing, no doubt, but it wreaks of "mystery meat" nav design wise. And the loading? What is it loading? Why is it loading? What should I expect for waiting? Mr. Krug woul…
-
Is it possible....
Not sure why you'd want to do this, sounds like UX no no. Maybe use a modal with an opt out / direct link instead ?
-
migrating wordpress from dev server PROBLEMS!! please help :(
You'd need the client's hosting credentials to get in and create a new db / WordPress installation (most have one click installs through their CPanel or admin area). Be sure to change the appropriate records in the WP_Options table and I&…
-
embedding images and formatting html into a email with php script
Take a look at Chris' post about constructing PHP emails here. From looking at your code block, the img tag is missing the opening less than and the call to the mail function has an @ in front, possibly a different syntax I'm unaware of. …
-
@font-face problem
Currently your CSS is asking for the font file with the assumption it is located in the same directory, hence the 404 @pualie_d pointed out. Adjust the path appropriately in your CSS or place the font files in the same directory. If you want full b…
-
Remove Post Title From Home Page Only
If the title is being called twice you have some issues with how your loop is setup for post retrieval.
-
Wordpress twentytwelve child theme development
Set your wrapper-pd to max-width: 80%; instead of width. And find where the media query for the main menu navigation menu is and lop the top margin off of it. Should be what you're after. EDIT: The media query for the tablet - mobile range f…
-
Working locally with WP => Best way to move?
The way I do it: 1) Make a Backup of all the stuff I'm moving that I can potentially break. 2) Use the export tool in WP or SQL dump to create a copy of the DB. WP's default works fine as long as you aren't using custom tables. 3) …
-
New website - feedback please!
Very nice. Simple and straight forward design. For caching, if you're using a CMS there's probably a plugin to help you with that. If not, hijacking HTML5BP's htaccess will help a bit.
-
'DRY' HTML vs OOCSS Approach? Better to have less HTML or CSS code?
I believe the answer to this question is, yes. Do whichever makes the most sense to you or is most context relevant. Realistically I'd wager you're going to do a mix of both depending on the types of content you're serving up. Tacking…
-
Contact.php
From just this, there doesn't seem to be any actionable item aka: a submit button. There's also no validation on any of the fields, which is a big no no. The biggest problem lies in your $mail_status, currently it just checks if it exists…
-
Transferring live WordPress site to local
I've never used Duplicator, but it does look intriguing. I usually just dump the database via the export tool and copy over the plugin / wp-content folders.
-
Question on a form
Couldn't you retrieve the url on the product page and store it in a hidden form variable and then spit it back out on the second page as a redirect / form action ?
-
Building a search form
If I'm not over simplifying what you're trying to do, I believe you are looking to pass the search criteria via Query Strings in the URL. If that's what you're after, you'll just have to create a separate file or section wit…
-
Wordpress Open Source Project
For WordPress I'd say another starter theme isn't necessary at this point. There's already plenty built around various frameworks, grids systems, RWD ( mobile first and fat screens down) etc. Until something extra smexy like Flexbox …