Jump to content
thirty bees forum

cienislaw

Members
  • Posts

    96
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by cienislaw

  1. 4 hours ago, netamismb said:

    Regarding point one, with an older community theme, on mobile the side blocks are displayed as menus, which is a better user experience.

    image.png.31f6fc1a4551827fb07ba15b17529ad6.png

    this should be ported back - without it, browsing Niara on mobile is really long run for your fingers.

    • Like 1
  2. On 6/29/2019 at 9:53 PM, SLiCK_303 said:

    Well, I decided to try the new module tbhtmlblock on one of my test 1.1.x sites.  It looks like I'll be able to get rid of several modules with just this one, nice job guys!  Cant wait to see what people do with it...

    they will do the right thing - take control of look and feel of all 'old' blocks in the city.

  3. edit tpl for blocksocial - for example add col-sm-9 to class to align well with newsletter block.

    <section id="blocksocial" class="col-xs-12">
        <h2 class="title_block main-title-column social-header">Follow us</h2>

                <a href="https://www.facebook.com/thirtybees/" title="Facebook" target="_blank" rel="noopener">
                <i class="icon icon-facebook icon-2x icon-fw"></i>
            </a>
        
                <a href="https://twitter.com/thethirtybees" title="Twitter" target="_blank" rel="noopener">
                <i class="icon icon-twitter icon-2x icon-fw"></i>
            </a>
        
                <a href="https://thirtybees.com/blog" title="RSS" target="_blank" rel="noopener">
                <i class="icon icon-rss icon-2x icon-fw"></i>
            </a>
        
        
                <a href="https://plus.google.com/+thirtybees" title="Google Plus" target="_blank" rel="noopener">
                <i class="icon icon-google-plus icon-2x icon-fw"></i>
            </a>
        </section>

    • Like 1
    • Thanks 1
  4. ok, more light here. after some digging... I found out that mails/pl/lang.php was missing when I was looking for reason why password reset wasn't sent (which wasn't easy as generic info was shown 'an error occurred during sending' or something like that).

    and about already signed for newsletter issue - If you had turned on confirmation request which wasn't send, so no one will click link with token, email won't be show on list in BO but will be stored in tb_newsletter table. look there and clean up.

  5. I can confirm it too. even with all data removed from newsletter module I cant sign up with one time used email (no client account, just newsletter).

    hmm, funny thing. After clearing newsletter module data, Ive imported clients one more time - 66 subscribers among them. but mailchimp module is syncing 71 - 3 duplicates of one my emails (yest 3x the same email was accepted) + 2 others.

    more bad news - no confirmation emails are sent. SMTP tested and works correctly. nothing in logs, there are translation files where it should be. any ideas?

  6. I'm trying to get Mailchimp module working, but an unknown error occurs during install. For sure it didn't assign hooks, so I did manually. But there is a problem with new newsletter subscribers - they are not synced. Forced sync added new subscriber first time, then stopped working. Hard to say what is wrong as I don't see anything suspicious in logs and error console. any idea how to find out what is going on?

  7. blockfacebook.js has hardcoded English language setting for Facebook block. I've hacked it by hand, but ideal would be fixing it, so it will work well with multilanguage sites. just need  to pass selected language iso code needed to create proper facebook js script link - any suggestions how it could be done?

    js.src = "//connect.facebook.net/$ISO_CODE_HERE/sdk.js#xfbml=1&version=v3.2";

     

    $(document).ready(function() {
    	initfb(document, 'script', 'facebook-jssdk');
    });
    
    function initfb(d, s, id)
    {
    	var js, fjs = d.getElementsByTagName(s)[0];
    	if (d.getElementById(id))
    		return;
    	js = d.createElement(s); js.id = id;
    	js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=334341610034299";
    	fjs.parentNode.insertBefore(js, fjs);
    }

     

    • Like 1
  8. hmm, I've just checked the latest demo and product page if you hover on miniatures it doesn't change big picture, which is locked on first image. clicking on images opens them in the browser instead of overlay. also clicking on big picture doesn't start overlay view. can you look into this? thanx.

    • Like 1
×
×
  • Create New...