badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Integration with WooCoomerce & UberMenu

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #28327
    aris
    Participant

    Hello,

    1- I have successfully integrated the template with WooCommerce but when the product page is created there is a very big space between the Title and the Product.. How can i remove it ? (ex. http://www.artech-it.com/shop/online-remote-technical-support/)

    2- I need to a) either have the possibility to enter an icon to my MY Account (using ubermenu) but the Css of the Top Menu doesn’t let me too OR add a CART button to the top level info bar (where is the telephone, e-mail, location etc)… How can i achieve this?

    3- I saw that the AmbitionPro is fully integrated with WooCommerce which is cool. Is there going to be an update to Ultimate PRemium template as well? We need the template to be fully integrated with WooCommerce

    regards,

    Aris

    #28357

    Hi Aris,

    1. It seems that there is two tag with ID main please remove the ID main that you have created while making compatible for WooCommerce.

    2. You have to customize the code. You have to hire a developer for this.

    3. We will sure make it compatible too but now we are busy to transfer all the theme option settings to WP customize option.

    Thank you!

    #28363
    aris
    Participant

    Hi there,

    about 2 & 3, OK! About 1. The changes i’ve made are in the functions.php in the child theme. I checked and ID main it is stated only once.. Could you be more specific on where to check for it ?

    Thanks

    #28366
    aris
    Participant

    found it, thanks

    #28392
    aris
    Participant

    Hello again,

    regarding the UberMenu, and as i will follow the instructions of Uber Menu Manual Integration.. I need to know where (in which file) is the wp_nav_menu defined for the TOP MENU of this theme… I would like to integrate it myself but i cannot find this defined in header.php as instructed in the manual integration of UBer Menu

    and last, do you have any timeline on where is this theme going to be updated so it is fully compatible with WooCommerce?

    regards

    #28470

    Hi aris,

    We are using action_hook so there is no code in header.php. If you really like to change the code then you may go to the theme folder -> inc-> structure-> header-extension.php on line no 368. you will find this code.
    if (has_nav_menu('primary')) { You can edit here. But if you make direct changes in the code then while updating to new version all your customized code will be lost. So better make child theme and then customize the code.

    Thank you!

    #36532
    aris
    Participant

    Hi again,

    Which Code (lines) should i copy to functions.php of the child theme? Thanks

    #36615

    Hi aris,

    Did you created a child theme? You need to unhook the functions in functions.php file and then hook that functions in Child theme of functions.php, Only copying the code on the functions.php will not override the child theme. You need to unhook this functions in your child theme
    add_action('ultimate_header', 'ultimate_headercontent_details', 10); after that again change the functions name of ultimate_headercontent_details as ultimate_headercontent_child_details and you need to customize the code. If you are unable to change it then either you make a direct changes in the code (theme folder-> inc-> structure -> header-extension.php on line no 335 to 349 you will find this below code)

    if (has_nav_menu('primary')) {// if there is nav menu then content displayed from nav menu else from pages
    $args = array(
    'theme_location' => 'primary',
    'container' => '',
    'items_wrap' => '<ul class="nav-menu">%3$s',
    );
    echo '<nav id="access" class="clearfix">
    <div class="container clearfix">';
    wp_nav_menu($args);//extract the content from apperance-> nav menu
    echo '</div> </nav><!-- #access -->';
    } else {// extract the content from page menu only
    echo '<nav id="access" class="clearfix">
    <div class="container clearfix">';
    wp_page_menu(array('menu_class' => 'nav-menu'));
    echo '</div></nav><!-- #access -->';
    }

    You can change it according to your wish you want. But each and every time while updating you need to do the same thing in this code.

    If you are unable then you may hire a developer to fix it.

    Thank you!

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.