Display Recent Posts From A Specific Category In WordPress

The snipped below shows you how to display recent posts from a specific category in WordPress. Where it says “showposts=5” change the number to how many posts you want to display, and “cat=4” is the id of the category, just change the ID of the category to pick which category will you want to display. … Continued

Google Maps InfoWindow, Advanced Custom Fields (acf)

I’ve been fortunate enough to use Advanced Custom Fields (acf) add-on of Google Maps several times and have had really nice results (pairs vary well with snazzy maps for google map visual customization). The only thing is that its not documented very well passed its default use.  Often enough you want default functionality that google … Continued

WordPress If Statements

WordPress Conditional Tags and Statements that can help along the way When looking to display specific content on page wether it be an image/copy/etc you will need a specific WordPress If Statement.  Below are a list of WordPress If Statements you may need along the way, as well other specifics. is_home() – home page is_front_page() – … Continued

Magento Simple Configurable Products

Configurable products are great, but when you need to use simple product pricing for different groups then configurable products on their own just wont cut it. Simple Configure Products is free and is actually the best option for this situation. Magento Simple Configurable Products, makes it so the price for configurable products is taken directly from … Continued

Show Magento Custom Attribute

To show and/or display a Magento Custom Attribute after you’ve set it up is very simple. Simple add the following: <?php echo $_product->getAttributeName() ?> Or use in an if statement for more control: <?php if( $_product->getAttributeName() != ”): ?> //echo the attribute here as seen above <? endif; ?> Using either of the options will … Continued

Magento If Statements

Magento can create a few puzzling question along the way and hopefully some of this information will help clear that up! In my personal experience I’ve used “if-statements” in Magento a great deal to keep the structure intact while still have a very high level of control. Here are a few snippets that will help … Continued