Jump to content

SmallSitesSarah

Circle Member
  • Posts

    44
  • Joined

  • Last visited

Reputation Activity

  1. Like
    SmallSitesSarah reacted to sayreambrosio in WhatsApp on squarespace sites   
    This works with community links as well and it is a lifesaver! Thank you for sharing. 
  2. Like
    SmallSitesSarah reacted to MikeMorearty in Remove specific text from email Order Confirmation to customer   
    Took forever to figure this out:
    Commerce > Customer Notifications General Orders > Order Confirmed "Edit Email" Click where it says "[ Add an optional custom message based on product type. ]" In the right-hand column, see the box that says "If service product, show:" — you can change or remove the text in that box.
  3. Thanks
    SmallSitesSarah reacted to tuanphan in Centering team page content within each list   
    I forgot, about why I use 50%. It's just that I tried some values like 25%, 50%, 100%...and found 50% to be the best.
    For 30px, the space between items is 60px, so I tried 60px or 30px.
  4. Thanks
    SmallSitesSarah reacted to creedon in Add shadow to iframe   
    Change #000 to rgba( 0, 0, 0, 0.5 )
    The 0.5 is where you change the alpha ( opacity ) value. 1 is full opacity and 0 is none.
  5. Thanks
    SmallSitesSarah reacted to tuanphan in Centering team page content within each list   
    left is move item to right a bit
    position: relative, you need to declare this to make left, right attribute work
    by default you can use left: calc(50% + 30px) means move to right 50% + 30px
    but when you add calc code to CSS, it won't able to read this calc symbol, and you need to add ~ and " symbol
     
  6. Thanks
    SmallSitesSarah got a reaction from creedon in Blog page: How to remove the arrow for source/external links posts?   
    Thank you for explaining that. I don't know how I missed it! 
  7. Love
    SmallSitesSarah reacted to creedon in Blog page: How to remove the arrow for source/external links posts?   
    I'll try to simplify. In the code I showed that has the syntax error, change...
    img');<style> ...to...
    img');</script><style> This should close the script tag properly.
    When you do have a syntax error like you have/had, all kinds of weird rendering issues are possible.
  8. Like
    SmallSitesSarah got a reaction from tuanphan in Anyone know how to add a button inside an Event Summary Block?   
    I ended up buying the Ghost plugin, "Balance Summary Block." I usually don't pay for something like that, but I have to say, it works beautifully and was only  $30 to use forever.
    I paired that with the "Lightbox anything" plugin from SqSp themes, and the result is exactly what I wanted. I didn't want senior citizens to have to do a gazillion clicks to get the information they want. 
  9. Thanks
    SmallSitesSarah got a reaction from creedon in Change items in navigation based on URL path   
    I totally forgot I had injected that code into the header of my pages. Thank you! 
  10. Love
    SmallSitesSarah reacted to Ziggy in Video block rounded corners not working   
    Hi! You'll need to use the clip-path property rather than border radius, try adding this to your Custom CSS, adjust the 10px to match your background border radius.
    .video-player { -webkit-clip-path: inset(0px round 10px); clip-path: inset(0px round 10px); } Hope that helps!
  11. Thanks
    SmallSitesSarah reacted to creedon in Change items in navigation based on URL path   
    I DM'd @SmallSitesSarah. 
  12. Love
    SmallSitesSarah reacted to creedon in Change items in navigation based on URL path   
    The Brad Good code is an excellent launch point to get to where you want to go.
    Please see the following.
    If you think it will work for you respond back here.
  13. Like
    SmallSitesSarah got a reaction from paul2009 in Change items in navigation based on URL path   
    URL: https://heartology-backend.squarespace.com/ Password: Heartology
    My client has three distinct types of audiences and wants different experiences for each. The navigation items need to change depending on which kind of customer is viewing the site.
    I’m using code to hide or unhide nth child nav items on desktop and mobile, but it is extremely clunky and sometimes breaks formatting on other parts of the pages. I wonder whether I can achieve a solution using a method similar to what others have used for multi-lingual sites like this instructional page or this forum question.
    The mock-up landing page looks like this:

    Each audience should see different headers in the navigation. I used these paths and would like to show/hide the correct items according to the audience.
    /seniors
    /students
    /physicians
    Tagging @tuanphan @paul2009  and @creedon as I can see you’ve addressed similar questions in other posts, though I can't find the exact answer I'm looking for. Thanks in advance for any ideas you have!
  14. Like
    SmallSitesSarah got a reaction from tuanphan in WhatsApp on squarespace sites   
    Thanks! Tip for those of us that use the basic subscription and can't inject code: I found this free Get Button widget. You can see an example on my website. Go to your footer and insert an "Embed" block. Then go to "Code Snippet" and paste this code. 
    <!-- GetButton.io widget --> <script type="text/javascript"> (function () { var options = { whatsapp: "YOUR NUMBER WITH HYPHENS", // WhatsApp number call_to_action: "Message us", // Call to action button_color: "#FF6550", // Color of button position: "right", // Position may be 'right' or 'left' }; var proto = 'https:', host = "getbutton.io", url = proto + '//static.' + host; var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = url + '/widget-send-button/js/init.js'; s.onload = function () { WhWidgetSendButton.init(host, proto, options); }; var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x); })(); </script> <!-- /GetButton.io widget -->  
  15. Like
    SmallSitesSarah got a reaction from Bewarenana in WhatsApp on squarespace sites   
    @tuanphan I'm interested in option 1. Can you help? What information do you need from me? Hidden site is https://dev-agaves.squarespace.com/ and the PW is Agaves.
  16. Like
    SmallSitesSarah got a reaction from Ziggy in Embed CRM Scheduler   
    Yep. That's exactly what I settled on. Thanks. 
  17. Love
    SmallSitesSarah reacted to paul2009 in TikTok Social Icon   
    It is no longer necessary to add custom code to add a TikTok logo to built-in social icon areas (all version 7.1 sites, and some version 7.0 templates) or Social Links blocks. This is now included by default.
    Did this help? Please give feedback by clicking an icon below  ⬇️
  18. Like
    SmallSitesSarah got a reaction from tuanphan in TikTok Social Icon   
    @tuanphanI can't believe I haven't seen your reply for 7 months! I had completely given up. But your code worked perfectly. Thank you!!!🤩
  19. Thanks
    SmallSitesSarah reacted to tuanphan in TikTok Social Icon   
    You can add this to Settings > Advanced > Code Injection > Footer to add Tiktok icon
    <script> var tiktoks = document.querySelectorAll('a[href*="tiktok"]') tiktoks.forEach(item => { item.innerHTML = ` <svg fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" clip-rule="evenodd" viewBox="0 0 50 50"> <path fill-rule="nonzero" d="M37.006,22.323C36.779,22.344 36.549,22.358 36.316,22.358C33.693,22.358 31.388,21.009 30.047,18.97L30.047,30.507C30.047,35.216 26.229,39.034 21.52,39.034C16.811,39.034 12.993,35.216 12.993,30.507C12.993,25.798 16.811,21.98 21.52,21.98C21.698,21.98 21.872,21.996 22.047,22.007L22.047,26.209C21.872,26.188 21.7,26.156 21.52,26.156C19.116,26.156 17.168,28.104 17.168,30.508C17.168,32.912 19.116,34.86 21.52,34.86C23.924,34.86 26.047,32.966 26.047,30.562C26.047,30.467 26.089,10.968 26.089,10.968L30.105,10.968C30.483,14.559 33.382,17.393 37.006,17.653L37.006,22.323Z"/> </svg>` }) </script>  
  20. Like
    SmallSitesSarah got a reaction from SquareRefresh in TikTok Social Icon   
    Site URL: https://dev-sittinprettyphotobooth.squarespace.com/
    SqSp doesn't register tiktok when inputting the URL like FB and IG. CSS I've tried so far isn't doing the trick. Can anyone help? See the bottom of the page at https://dev-sittinprettyphotobooth.squarespace.com/
×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.