Page 6 of 13 FirstFirst ... 45678 ... LastLast
Results 51 to 60 of 129
  1. #51
    Join Date
    Jan 2013
    Posts
    113
    Plugin Contributions
    0

    Default Re: Flexible Footer Menu Multilingual [Support Thread]

    Quote Originally Posted by delia View Post
    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

    <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 &amp; 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?

  2. #52
    Join Date
    Jan 2013
    Posts
    113
    Plugin Contributions
    0

    Default 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...
    <!--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 &amp; 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:


    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

  3. #53
    Join Date
    Jan 2013
    Posts
    113
    Plugin Contributions
    0

    Default 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:
    <!--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:

    <!--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

  4. #54
    Join Date
    Jan 2013
    Posts
    113
    Plugin Contributions
    0

    Default 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

    @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

  5. #55
    Join Date
    Aug 2005
    Location
    San Juan, Puerto Rico
    Posts
    1,525
    Plugin Contributions
    9

    Default Re: Flexible Footer Menu Multilingual [Support Thread]

    Is there a way to change the maximum of items per page?

    Front end or back end?
    on the backend (where you have them all listed).
    Last edited by ideasgirl; 28 Jan 2017 at 12:12 AM. Reason: to answer question
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!
    My contributions: SophyBlue / Sophy Blue-Grey / Mistik / The Bookshelf / Dynamic Sideboxes

  6. #56
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,846
    Plugin Contributions
    25

    Default Re: Flexible Footer Menu Multilingual [Support Thread]

    Quote Originally Posted by ideasgirl View Post
    Is there a way to change the maximum of items per page?
    Front end or back end?

  7. #57
    Join Date
    Aug 2005
    Location
    San Juan, Puerto Rico
    Posts
    1,525
    Plugin Contributions
    9

    Default Re: Flexible Footer Menu Multilingual [Support Thread]

    Quote Originally Posted by Design75 View Post
    Front end or back end?
    Backend (admin)
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!
    My contributions: SophyBlue / Sophy Blue-Grey / Mistik / The Bookshelf / Dynamic Sideboxes

  8. #58
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,846
    Plugin Contributions
    25

    Default Re: Flexible Footer Menu Multilingual [Support Thread]

    Quote Originally Posted by ideasgirl View Post
    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.

  9. #59
    Join Date
    May 2006
    Location
    Montana
    Posts
    291
    Plugin Contributions
    20

    Default 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.

  10. #60
    Join Date
    Jan 2015
    Posts
    180
    Plugin Contributions
    0

    Default 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

    >>>>>

 

 
Page 6 of 13 FirstFirst ... 45678 ... LastLast

Similar Threads

  1. Flexible Footer Columns Menu for 1.5.x
    By rbarbour in forum All Other Contributions/Addons
    Replies: 88
    Last Post: 23 Apr 2022, 01:18 PM
  2. v152 Flexible Language/Currency Header Options (Support Thread)
    By rbarbour in forum All Other Contributions/Addons
    Replies: 17
    Last Post: 20 May 2021, 03:46 PM
  3. v151 Flexible Return Authorization (RMA) for ZC v1.5.x [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 167
    Last Post: 11 Apr 2021, 08:56 PM
  4. v155 Flexible Footer Menu
    By MCS_Computers in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 9 Jul 2018, 10:59 AM
  5. Footer Menu Support Thread
    By clydejones in forum All Other Contributions/Addons
    Replies: 534
    Last Post: 20 Jan 2014, 03:19 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR