- This topic has 7 replies, 3 voices, and was last updated 9 years, 1 month ago by Theme Horse Support Team.
-
AuthorPosts
-
September 16, 2015 at 10:25 am #28327arisParticipant
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
September 17, 2015 at 6:08 am #28357Theme Horse Support TeamKeymasterHi Aris,
1. It seems that there is two tag with ID
main
please remove the IDmain
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!
September 17, 2015 at 6:37 am #28363arisParticipantHi 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
September 17, 2015 at 7:30 am #28366arisParticipantfound it, thanks
September 17, 2015 at 4:14 pm #28392arisParticipantHello 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
September 19, 2015 at 2:26 am #28470Theme Horse Support TeamKeymasterHi 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!
October 12, 2015 at 11:42 am #36532arisParticipantHi again,
Which Code (lines) should i copy to functions.php of the child theme? Thanks
October 14, 2015 at 6:38 am #36615Theme Horse Support TeamKeymasterHi 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 ofultimate_headercontent_details
asultimate_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!
-
AuthorPosts
- You must be logged in to reply to this topic.