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

Ubermenu not working on Roots Theme?

Using Urbermenu? Is that little bastard not working on your Roots based site? This should do the trick! Add the following to the custom.php file function stop_removing_core_classes(){ remove_filter(‘nav_menu_css_class’, ‘roots_nav_menu_css_class’, 10 ); remove_filter(‘nav_menu_item_id’, ‘__return_null’); } add_action( ‘init’ , ‘stop_removing_core_classes’ ); then replace the current nav in the header-top-navbar.php with this: <nav role=”navigation”>  <?php if (has_nav_menu(‘primary_navigation’)) : … Continued

Open Fancybox on page load

This is a quick look at how to open and/or launch jQuery Fancybox on page load. If you want Fancybox to open each time the page loads all you need to add is: $(“.fancybox”).fancybox().trigger(‘click’); That being said, you probably don’t want it loading every time you go to that page.  That could get pretty annoying! … Continued

WordPress tabbed Photo Gallery / Slider

Need to create a gallery/slider for a client? Do they have multiple gallery’s/slider’s? Well you don’t have to always put them on separate pages.  You can us a jQuery-Ui Tabs and the Royal Slider! The following will show you how to finish making a WordPress tabbed Photo Gallery / Slider for your website. Quick run … Continued