Re: Flexible Footer Menu Multilingual [Support Thread]
Quote:
Originally Posted by
delia
You have unclosed div tags in the template
Add $col .= '</div>'; after the first one at line 96.
so that the block looks like this
$col .= '</ul>';
$col .= '</div>';
$col .= '</div>';
I tried this because I have div tag not closed that causes issues with my pages... so I tried what you posted above but my columns now show vertically instead of horizontally
like this
1
2
3
4
Quote:
<div class="section group"><div class="col span_4_of_9"><ul id="col_1"><li><h4>SHOPPING</h4></li>
<li><a href="index.php?main_page">Home</a></li>
<li><a href="index.php?main_page=account">My Account</a></li>
<li><a href="index.php?main_page=specials">Specials</a></li>
<li><a href="index.php?main_page=products_new">New Products</a></li>
<li><a href="index.php?main_page=products_all">All Products</a></li>
<li><a href="index.php?main_page=site_map">Site Map</a></li>
</ul></div><div class="section group"><div class="col span_4_of_9"><ul id="col_2"><li><h4>CUSTOMER SERVICES</h4></li>
<li><a href="index.php?main_page=contact_us">Contact Us</a></li>
<li><a href="index.php?main_page=shippinginfo">Payments & Shipping</a></li>
<li><a href="index.php?main_page=conditions">Conditions of Use</a></li>
<li><a href="index.php?main_page=privacy">Privacy Notice</a></li>
<li><a href="index.php?main_page=gv_faq">Gift Certificate FAQ</a></li>
<li><a href="index.php?main_page=discount_coupon">Discount Coupons</a></li>
</ul></div>
I'm thinking that it's the <div class="section group"> that shouldn't show at every column, am I right?
Re: Flexible Footer Menu Multilingual [Support Thread]
humm I'm getting confused... if you look on this page
http://store.com/index.html
The code for the flexible footer is like this and all I had to do to get rid of the errors in html validator was too add the three closing div tags in red...
Quote:
<!--bof-navigation display -->
<div id="navSuppWrapper">
<!--BOF Flexible Footer Menu Multilingual display -->
<div id="flex-navSupp">
<div class="section group"><div class="col span_4_of_9"><ul id="col_1"><li><h4>SHOPPING</h4></li>
<li><a href="index.php?main_page">Home</a></li>
<li><a href="index.php?main_page=account">My Account</a></li>
<li><a href="index.php?main_page=specials">Specials</a></li>
<li><a href="index.php?main_page=products_new">New Products</a></li>
<li><a href="index.php?main_page=products_all">All Products</a></li>
<li><a href="index.php?main_page=site_map">Site Map</a></li>
</ul></div><div class="section group"><div class="col span_4_of_9"><ul id="col_2"><li><h4>CUSTOMER SERVICES</h4></li>
<li><a href="index.php?main_page=contact_us">Contact Us</a></li>
<li><a href="index.php?main_page=shippinginfo">Payments & Shipping</a></li>
<li><a href="index.php?main_page=conditions">Conditions of Use</a></li>
<li><a href="index.php?main_page=privacy">Privacy Notice</a></li>
<li><a href="index.php?main_page=gv_faq">Gift Certificate FAQ</a></li>
<li><a href="index.php?main_page=discount_coupon">Discount Coupons</a></li>
</ul></div><div class="section group"><div class="col span_4_of_9"><ul id="col_3"><li><h4>COMMUNITY</h4></li>
<li><span class="flexFooterColImage"><a href="http://www.facebook.com/MyEmboideryHaven/" target="new"><img src="images/footer_images/facebook_icons.png" alt="" width="50" height="50" /></a></span></li>
<li><span class="flexFooterColImage"><a href="http://www.facebook.com/groups/1730859920536529/" target="new"><img src="images/footer_images/facebook-splash-icon.png" alt="" width="63" height="50" /></a></span></li>
<li><span class="flexFooterColImage"><a href="http://groups.yahoo.com/neo/groups/MyEmbroideryHaven/" target="new"><img src="images/footer_images/yahoo-icon-2.png" alt="" width="50" height="50" /></a></span></li>
</ul></div><div class="section group"><div class="col span_4_of_9"><ul id="col_4"><li><h4>NEWSLETTER</h4></li>
<li><a href="index.php?main_page=subscribe">Subscribe</a></li>
<li><a href="index.php?main_page=unsubscribe">Unsubscribe</a></li>
<li><h4>FUN STUFF</h4></li>
<li><a href="http://myembroideryhaven.com/gallery.html" target="new">Gallery</a></li>
<li><a href="http://myembroideryhaven.com/Projects.html" target="new">Free Projects</a></li>
<li><a href="http://myembroideryhaven.com/howto.html" target="new">Free Tutorials</a></li>
<li><a href="http://myembroideryhaven.com/free-machine-embroidery-designs.html" target="new">Free Designs</a></li>
</ul></div><br class="clearBoth" /><br /><br />
</div>
<!--EOF Flexible Footer Menu Multilingual display -->
</div>
<!--eof-navigation display -->
</div>
</div>
</div>
However, if I do the same on the cart pages, I get these errors in HTML Validator:
Quote:
Error: Stray end tag div.
From line 428, column 1; to line 428, column 6
>↩↩</div>↩</div>↩</div
Error: Stray end tag div.
From line 429, column 1; to line 429, column 6
v>↩</div>↩</div>↩↩<!--
Error: Stray end tag div.
From line 439, column 1; to line 439, column 6
lay -->↩↩↩</div>↩<!--b
why is that? is it because they are not placed at their proper place? and if so, why would the index.html page comes out without errors?
Thanks
Re: Flexible Footer Menu Multilingual [Support Thread]
In order to not have errors on my pages, I did this... I don't think it's going to cause issues elsewhere but just in case, let me know please:
in includes/templates/responsive_classic/common/tpl_footer.php in the FLEXIBLE FOOTER MENU MULTILINGUAL block:
orignal code:
Quote:
<!--BOF Flexible Footer Menu Multilingual display -->
<div id="flex-navSupp">
<?php require($template->get_template_dir('tpl_flexible_footer_menu.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_flexible_footer_menu.php'); ?>
<br /><br />
</div>
<!--EOF Flexible Footer Menu Multilingual display -->
Added the closing div tags like this:
Quote:
<!--BOF Flexible Footer Menu Multilingual display -->
<div id="flex-navSupp">
<?php require($template->get_template_dir('tpl_flexible_footer_menu.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_flexible_footer_menu.php'); ?>
<br /><br />
</div>
</div>
</div>
</div>
</div>
<!--EOF Flexible Footer Menu Multilingual display -->
Thanks for any input
Re: Flexible Footer Menu Multilingual [Support Thread]
This here was posted on the older support thread for FFM... reposting here in the hopes that someone has tried this or can point me towards what I need to change...
Quote Originally Posted by picandnix View Post
Quote:
@rbarbour
Is there a way to display the FFM on 1.5.5a while in MOBILE view please? It displays in desktop (obviously lol) and also in tablet mode, but mobile defaults back to the generic ZC footer.
Thank you in advance.
still trying to figure it out... but no luck so far. It does display on tablet both vertical and horizontal view. I would like it to display same as it does on tablet. I managed to have it show on my home page by copying what showed on "view source" and it shows. It though maybe it was a question of width requirement but why would it show on my index.html page then?
site here: myembroideryhaven.com
Thanks for any info
Re: Flexible Footer Menu Multilingual [Support Thread]
Is there a way to change the maximum of items per page?
Quote:
Front end or back end?
on the backend (where you have them all listed).
Re: Flexible Footer Menu Multilingual [Support Thread]
Quote:
Originally Posted by
ideasgirl
Is there a way to change the maximum of items per page?
Front end or back end?
Re: Flexible Footer Menu Multilingual [Support Thread]
Quote:
Originally Posted by
Design75
Front end or back end?
Backend (admin)
Re: Flexible Footer Menu Multilingual [Support Thread]
Quote:
Originally Posted by
ideasgirl
Backend (admin)
currently it uses the same value as the ez-pages. You can set that value in admin->configuration->maximum values.
I'll put it on my list to make a separate entry for the footer menu in a future update.
Re: Flexible Footer Menu Multilingual [Support Thread]
I am developing a site that uses 4 columns on the footer. The caveat is on the 4th column, it needs to be larger because of a couple of images. So, in essence it would be like column 4 is needing to use 2 columns, and columns 1 through 3 need to be smaller. I THOUGHT I had it figured out, by putting negative margins on columns 2-4. Aesthetically that looks great and actually WORKS great on Firefox and MS Edge. Unfortunately, in Chrome, the ul/li expands over the complete 24.35% and the link "wipes out" about 1/2 of the link in the next column.
Is there any way of controlling / setting the complete column widths (including the links) SEPARATELY and not break the "responsiveness"? For example... Col 1 through 3=20%, Col 4=38% as opposed to all 4 columns being 24.35% each. That would simplify this design so MUCH!
Thanks in advance for any help / advice anyone can give me! The dev URL is at http://thechristiangift dot com/155 You have to view it in Chrome to see the problem.
Re: Flexible Footer Menu Multilingual [Support Thread]
Seems there's a bug in this that needs fixed? I'm trying to update links in the share and connect (I have Westmenster New template). That thread pointed me here. Can anyone tell me what fix to implement? I see one think on page one, then some more by a guy with 1 post which doesn't make me want to jump out and use it. I'm on v1.54
>>>>
Default Re: Westminster New
Quote Originally Posted by moates405 View Post
Share and Connect broken links...
Have had this problem for the last week nothing seems to fix the problem using new install 155b
as soon as go to edit facebook link in flexible footer it breaks all the links under Share and Connect and displays the href instead of the correct buttons.
link www.orsetech.net.au
my only fix was to disable them!!
>>>>>>>>>>
This is a bug in the flexible footer plugin. You can see the support thread for that plugin for the posted fix.
Thanks,
Anne
>>>>>