Echo order box (in pages)

First you need to get the value from attributes, option page or meta value; if you have an option page you need to call that value: $valuerequired = get_option(‘ctech_valuefromoptionpage’); ctech is the short theme name, and if the attributes field is a meta value $price = get_post_meta($post->ID, ‘price’, true); then you can echo the value … Read more

How to change the position of menu item?

Ubermenu is great, but probably unnecessary if this is all you’re trying to do. There are a ton of different ways to do this. Here’s a couple: 1) Custom Walker <?php // custom walker targeting products menu class productMenu extends Walker_Nav_Menu { function end_el(&$output, $item, $depth=0, $args=array()) { if( ‘Products’ == $item->title ){ // PRODUCT … Read more