You can turn off the header languages box in admin--tools--layoutboxes controller
If you do a search of the FAQs section of this site you will find a tutorial about hot so change the name, etc of page 2
Thanks,
Anne
Printable View
I'd like to get rid of the "Details" tab in the productinfo display. I tried commenting out on line 206 of product_info_display.php: "<li><?php echo HEADER_TITLE_DETAILS; ?></li>" however that got rid of it but also broke the custom tab whereby the custom tabs info was blank.
You also need to comment out the code further down:
Be careful if you nest the comments.Code:<!--bof Product details list -->
<?php if ( (($flag_show_product_info_model == 1 and $products_model != '') or ($flag_show_product_info_weight == 1 and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name))) ) { ?>
<ul id="productDetailsList" class="floatingBox back">
<?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li>' . TEXT_PRODUCT_WEIGHT . $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>
</ul>
<br class="clearBoth" />
<?php
}
?>
<!--eof Product details list -->
Thanks,
Anne
When I updated the social media links in the footer to link to the correct pages, all the formatting disappeared. Before I changed the links, they displayed like in the demo. Now they are not in boxes and the icons are smaller. I looked in the theme docs and my code in there still seems to be correct. This is what I have:
<a href="https://facebook.com/website" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="https://twitter.com/website" target="_blank"><i class="fa fa-twitter"></i></a>
I had also moved them to the third column. When I move them back to the fourth column they work.
http://new.flyingdreams.com.au
Oh OK I see. That might be good in the instructions because there is nothing to indicate you can't move things around without changing code (unless I missed it, totally possible!). Thank you!
I don't think this needs to be in the readme. It would be impossible to add instructions for all of the various template modifications people can make. It is a given that if you are going to modify the template you might need to make changes to the css.
Thanks,
Anne
Yes, I totally agree, however, this wasn't a change that required any code changes at first glance. It just used the flexible footer area that is built in to the admin. It would just be nice if there was some kind of indication that moving the columns around will require coding changes as well.