Re: Dover Fine Responsive Template
Hi Ann
When we have a product with attributes, we get a More details button, but for straightforward product, we are presented with a buy now button.
How could I change it so regardless of whether the product has attributes or not, all the buttons read More details? Please advise.
Many thanks :cool:
Re: Dover Fine Responsive Template
Quote:
Originally Posted by
dharrison
Hi Ann
When we have a product with attributes, we get a More details button, but for straightforward product, we are presented with a buy now button.
How could I change it so regardless of whether the product has attributes or not, all the buttons read More details? Please advise.
Many thanks :cool:
This can be done with some custom programming. If you search the forum you will find that this has been asked and answered already.
Thanks,
Anne
Re: Dover Fine Responsive Template
Love your template. Exactly what I was looking for.
I have a question about the menu. I have turned on "More Information" in the layout boxes controller. It works great in desktop mode, but when viewing on my mobile, the "More Information" menu doesn't display in the dropdown menu. If I turn on "Show Box @ Min-Width", the "More Information" section is just displayed on the screen. It is not part of the dropdown menu.
Is there a setting I'm missing for the mobile menu?
Thanks!
Re: Dover Fine Responsive Template
Quote:
Originally Posted by
RFree190
Love your template. Exactly what I was looking for.
I have a question about the menu. I have turned on "More Information" in the layout boxes controller. It works great in desktop mode, but when viewing on my mobile, the "More Information" menu doesn't display in the dropdown menu. If I turn on "Show Box @ Min-Width", the "More Information" section is just displayed on the screen. It is not part of the dropdown menu.
Is there a setting I'm missing for the mobile menu?
Thanks!
You would need to add this code to the includes/templates/dover_fine/templates/tpl_modules_mobile_categories_tabs.php file:
Code:
<?php if (SHOW_EZ_PAGES_MENU == 'true') { ?>
<li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo TITLE_EZ_PAGES; ?></a>
<ul>
<?php require(DIR_WS_MODULES . 'sideboxes/' . $template_dir . '/' . 'ezpages_drop_menu.php'); ?>
</ul>
</li>
<?php } ?>
Thanks,
Anne
Re: Dover Fine Responsive Template
Quote:
Originally Posted by
picaflor-azul
You would need to add this code to the includes/templates/dover_fine/templates/tpl_modules_mobile_categories_tabs.php file:
Code:
<?php if (SHOW_EZ_PAGES_MENU == 'true') { ?>
<li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo TITLE_EZ_PAGES; ?></a>
<ul>
<?php require(DIR_WS_MODULES . 'sideboxes/' . $template_dir . '/' . 'ezpages_drop_menu.php'); ?>
</ul>
</li>
<?php } ?>
Thanks,
Anne
Hi Anne,
I don't have any EZ Pages setup yet, which is what this code looks like it would display. I was hoping to display the "More Information" pages (Define Pages) in the mobile menu. ie: define_page_2.php, define_page_3.php, ect.
Thanks Anne!
Re: Dover Fine Responsive Template
Quote:
Originally Posted by
RFree190
Hi Anne,
I don't have any EZ Pages setup yet, which is what this code looks like it would display. I was hoping to display the "More Information" pages (Define Pages) in the mobile menu. ie: define_page_2.php, define_page_3.php, ect.
Thanks Anne!
You can look at the code used for calling the information box links in the same file and use it as a guide for adding for your more information pages.
Thanks,
Anne
Re: Dover Fine Responsive Template
Suggestion: for sold out products, details is on top of the "Sold Out" button. To fix this, I changed functions_general.php line 1165 to add a second break:
Code:
return $additional_link . '<br /><br />' . $return_button;
Re: Dover Fine Responsive Template
Quote:
Originally Posted by
swguy
Suggestion: for sold out products, details is on top of the "Sold Out" button. To fix this, I changed functions_general.php line 1165 to add a second break:
Code:
return $additional_link . '<br /><br />' . $return_button;
Thank you for the suggestion. I will fix this in the next update, but may do it with css instead since the functions_general.php is a core file ;)
Thanks,
Anne
Re: Dover Fine Responsive Template
That would be the superior fix; tragically, my CSS-fu is weak. :(
Re: Dover Fine Responsive Template
Can you set a menu item to be open by default (expanded) on mobile devices?
So, when someone clicks the 3 horizontal lines at the top of the device, one menu with child items is already open?
Thanks