Jump to content

Fig_Design

Circle Member
  • Posts

    102
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Fig_Design got a reaction from Earvin in Filter accounts without a purchase?   
    Is it possible to sort Contacts to filter people that have created an account on your website BUT have NOT purchased anything?
    I'm trying to find a way to easily determine who didn't fully complete the process of purchasing a digital product so I can follow up with a reminder email.
    When I try to create a filter to single out those without a purchase, there isn't an option for that. I can only filter choosing a Pricing Plan type, not those without NO pricing plan. Everything I've tried hasn't shown me just the folks with an account but no plan.
  2. Like
    Fig_Design got a reaction from tuanphan in Customer area & login popup CSS   
    Thank you @tuanphan. I was able to find Creedon's post and used his code to make the changes. Very thankful to all of you for providing this information willingly!
  3. Thanks
    Fig_Design got a reaction from creedon in Member Area Log In Dialog Change   
    That worked a charm. I can't thank you enough @creedon!
  4. Thanks
    Fig_Design reacted to creedon in Member Area Log In Dialog Change   
    The CSS in the post I shared above needs to be installed into the member area log in dialog change code where is says [optional, enter css here replacing square brackets]

    Let us know how it goes.
  5. Thanks
    Fig_Design reacted to creedon in Member Area Log In Dialog Change   
    Use the twc-malidc-create class name I provided as part of my code.
    .twc-malidc-create { display : none; } This CSS goes in the same place as the other CSS.
    Let us know how it goes.
  6. Like
    Fig_Design got a reaction from JoeDekLights in Trying to stick it out with SquareSpace, but realizing they will offer little or no help at all with problems...   
    I don't have experience with setting up ecommerce sites, but just wanted to say that I hope you're able to find the answers you need to move forward with your shop without much more stress. It's very frustrating to not be able to easily get a hold of anyone that can provide support.
    I think when SQSP works well, it's fun and easy to use. When it doesn't, it can take way more time and energy than you'd expect to get it on the right track.
  7. Like
    Fig_Design reacted to AJZ in Sharing a solution for embedding a Google Calendar that adjusts based on screen-size   
    This is probably easy for some of you, but it took me awhile so I decided to share in case it might help someone else...
    I struggled for a couple days with the calendar portion of Squarespace - mobile formatting was the main issue, but there were other considerations as well. In searching for best overall option, I decided to see if I could use Google Calendar within a Squarespace website. It took awhile to figure some of the details out; but the things I learned are all easy to implement. 
     
    1. Embedding the calendar is simple enough; here's a tutorial: https://www.askquesty.com/post/how-to-embed-google-calendar-squarespace-tutorial. 
     
    2a. Once embedded, the next step is to wrap the code within the codeblock. Something like this works:
    <div class="googleCalendar">
    ENTER EMBED CODE FOR CALENDAR HERE
    </div>
     
    2b. Also, in the codeblock, change the width in the embedded code from width="800" to width="100%"
     
    3. After the code is wrapped, head over to CSS and add something like this: 
     
    <style>
      .calendar-container {
        position: relative;
        width: 100%;
        padding-bottom: 75%; 
        overflow: hidden;
      }
      .calendar-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
      }
    </style>
     
     
     
    That's it. Now you have an embedded google calendar that adjusts based on the screen size and the height doesn't collapse. 
    It isn't perfect, but it's free, easy to use, incredibly feature-rich, and likely will be around for awhile.
    Hopefully this helps someone. 
    Cheers
     
    PS. If anyone decides to make it more aesthetically pleasing or comes up with improvements to the code, please let me know
  8. Like
    Fig_Design got a reaction from tuanphan in Email link in list not working   
    Thanks for your help! I couldn't get the email to work so linked to contact page instead.
  9. Like
    Fig_Design reacted to Patrice7777 in How to add a Forum to my Squarespace Site   
    Hello Squarespace!  I think enough of us have asked for this now for it to be put into action. Community is coming back, people want to have conversations as well as memberships and subscriptions. Not having a forum or community element while offering a members area is like offering bread without butter.
    Please can you start giving what your customers want.
  10. Thanks
    Fig_Design reacted to tuanphan in Change button style in just one list   
    You can use CSS code like this
    body#collection-66153dcf477fbf6efa117773 section[data-section-id="66154750872f4207683c4ae5"] .list-item-content__button-container a.list-item-content__button { color: #f1f !important; font-size: 16px !important; }  
  11. Like
    Fig_Design got a reaction from Ziggy in Strange glitch in the grid when pinning   
    I'll play around with it to see if resizing the text box might help--thanks for the suggestion.
    The problem is that anything overlaying that grid section is then stretched. The space between those two image boxes on the right is very wide and unpredictable, whereas other boxes below are spaced just one regular grid space apart.
  12. Like
    Fig_Design reacted to Claibuco in Change portfolio hero image on hover   
    Was able to sort it out - here is the code I ended up using
     
    //Windfall Portfolio Image Hover//
    a.grid-item[href*=windfall]:hover img {
        visibility: hidden;
    }
    .grid-image-inner-wrapper:after {
        visibility: hidden;
    }
    a.grid-item[href*=windfall]:hover .grid-image-inner-wrapper {
        background-image: url(https://images.squarespace-cdn.com/content/v1/5479fbb6e4b09ed1ced6da1d/3b6169ed-fc81-4b25-aeb7-3ab1c372592e/60_Ascent_2016?format) !important;
      background-size: cover;
      display: block;
    }
  13. Like
    Fig_Design got a reaction from tuanphan in Using a separate home page for mobile devices   
    You can use CSS to hide certain page blocks on the mobile version. Here are some helpful articles to get started:
    https://www.thestyledsquare.com/blog-content/hide-elements-in-mobile-view-in-squarespace
    https://www.applet.studio/blog/hide-sections-on-moblie-squarespace
  14. Thanks
    Fig_Design reacted to tuanphan in [Share] Squarespace 7.1 CSS ID List   
    Some CSS Class/ID for Squarespace 7.1
    Announcement Bar
    Announcement bar: .sqs-announcement-bar-dropzone Announcement bar text: .sqs-announcement-bar-dropzone p Announcement bar link: .sqs-announcement-bar-dropzone a Announcement Bar Close Icon: .sqs-announcement-bar-close OR .sqs-announcement-bar-close:after Header
    Header: header#header Sticky Header: header.shrink Header (not include sticky header): header#header:not(.shrink) Header (when burger menu is open): body.header--menu-open header#header Header (when burger menu is close): body:not(.header--menu-open) header#header Site Title: a#site-title Site Title (when overlay menu open): .header--menu-open a#site-title Site Title (when overlay menu close) body:not(.header--menu-open) a#site-title Navigation: .header-nav Navigation Items: .header-nav-item a Navigation First Item: .header-nav-item:nth-child(1) a Navigation Second Item: .header-nav-item:nth-child(2) a Navigation Dropdown: .header-nav-folder-content Navigation Dropdown Items: .header-nav-folder-item a Navigation Folder Title: a.header-nav-folder-title Mobile Navigation Items: .header-menu-nav-item a Mobile Navigation First Item: .header-menu-nav-folder[data-folder="root"]>div>div:first-child Mobile Navigation First Item (text): .header-menu-nav-folder[data-folder="root"]>div>div:first-child a Mobile Navigation Second Item: .header-menu-nav-folder[data-folder="root"]>div>div:nth-child(2) Mobile Navigation Second Item (text): .header-menu-nav-folder[data-folder="root"]>div>div:nth-child(2) a Mobile Menu Icon: .header-burger Mobile Burger 3 lines: .burger-inner>div Mobile Menu X icon: body.header--menu-open .burger-inner>div Header Social Icons: .header-actions .icon Cart Icon: header#header span.Cart-inner Cart quantity: header#header .icon-cart-quantity Header Button: header#header a.btn Header Desktop Button: .header-display-desktop a.btn Header Mobile Button: .header-menu-cta a a Footer
    Footer: footer#footer-sections Footer Social Icons:  footer#footer-sections  .sqs-svg-icon–outer Footer Links: footer#footer-sections a Product List
    Product List: .collection-type-products.view-list Product Name: .grid-title Product Price: .grid-prices Product Image: figure.grid-image Product Currency: body.native-currency-code-usd .sqs-money-native:before Sold Out Text: .product-mark.sold-out Product Detail
    Product Detail: .collection-type-products.view-item Product Breadcrumb: .ProductItem-nav-breadcrumb Product Pagination (Previous/Next): .ProductItem-nav-pagination Gallery: figure.ProductItem-gallery Thumbnails: .ProductItem-gallery-thumbnails Big Image: .ProductItem-gallery-slides Product Name: h1.ProductItem-details-title Price: .ProductItem-product-price Currency: body.native-currency-code-usd .sqs-money-native:before Excerpt: .ProductItem-details-excerpt Add to Cart Button: .sqs-add-to-cart-button-wrapper Add to Cart Text: .sqs-add-to-cart-button-inner Variant Dropdown: .variant-option Variant Title: .variant-option-title Variant Options: .variant-select-wrapper option Quantity Text: .quantity-label Quantity Input: .product-quantity-input Cart Page
    Cart Page: body#cart Cart Page Title: .cart-title Product Name: a.cart-row-title Product Thumbnail: div.cart-row-img Qty minus: .cart-row-qty-dec Qty plus: button.cart-row-qty-inc Qty number: input.cart-row-qty-input Price: .cart-row-price X icon: .cart-row-remove or .cart-row-remove svg Sub total text: .cart-subtotal-label span Sub total price: .cart-subtotal-price Checkout Button: button.cart-checkout-button   Item: .CartTable-itemLabel-3zzV1 QTY. .CartTable-itemLabel-3zzV1 span Price Name: .CartTable-itemPrice-XgjsO span X icon: .item-remove div Blog List
    Blog List: [class*="type-blog"].view-list Thumbnails: article.blog-item img Date: time.blog-date Category: span.blog-categories-list Title: h1.blog-title Excerpt: .blog-excerpt Read more: a.blog-more-link Blog Posts
    Blog Posts Page: [class*="type-blog"].view-item Blog Items: .blog-item-entry Categories: .blog-meta-item–categories Date: time.dt-published.blog-meta-item.blog-meta-item–date Author: .blog-meta-item.blog-meta-item–author.p-author.author Title: .blog-item-title Content: .blog-item-content-wrapper Pagination: .item-pagination Pagination Arrows: .item-pagination-link .item-pagination-icon Pagination Title: h2.item-pagination-title Author Box: .blog-item-author-profile-wrapper Author Image: a.author-avatar.content-fill Author Name: .author-name Author Site: a.author-website Post Comment: .squarespace-comments Post Comment Button: .comment.btn Comment Input: .squarespace-comments .new-comment-area Preview: span.btn-text.preview-comment.top-level-preview-btn Subscribe via email text: span.subscribe.subscribe-control Blog Grid
    updating
    Blog Masonry
    updating
    Event List Page
    Event List Page: .collection-type-events.view-list Event Thumbnail: a.eventlist-column-thumbnail.content-fill Event Time: .eventlist-datetag Event Date: .eventlist-datetag-startdate.eventlist-datetag-startdate–day Event Month: .eventlist-datetag-startdate.eventlist-datetag-startdate–month Event Title: h1.eventlist-title Event Hour: li.eventlist-meta-item.eventlist-meta-time.event-meta-item Event Description: .eventlist-description Event Detail Page
    Event Detail Page: .collection-type-events.view-item Event Title: h1.eventitem-title Event Date: time.event-date Event Hour: li.eventitem-meta-item.eventitem-meta-time.event-meta-item Event Description: .eventitem-column-content Event Pagination: section.item-pagination.item-pagination–prev-next Previous/Next: .item-pagination-link .item-pagination-prev-next Event Pagination Title: h2.item-pagination-title Portfolio
    title: h3.portfolio-title item: .portfolio-grid-basic portfolio image: .portfolio-grid-basic .grid-image pagination: [data-collection-type=“portfolio-grid-basic”].item-pagination pagination text: h2.item-pagination-title pre text: .item-pagination-link–prev .item-pagination-prev-next next text: .item-pagination-link–next .item-pagination-prev-next List Simple
    List Simple: .user-items-list-simple Image: .user-items-list-simple img First Item: .user-items-list-simple li:nth-child(1) Second Item: .user-items-list-simple li:nth-child(2) List Content: .user-items-list-simple .list-item-content Title: .user-items-list-simple h2.list-item-content__title Description:  .user-items-list-simple list-item-content__description OR .user-items-list-simple p List Slideshow
    List Slideshow: .user-items-list-banner-slideshow Image: .user-items-list-banner-slideshow img First Item: .user-items-list-banner-slideshow li:nth-child(1) Second Item: .user-items-list-banner-slideshow li:nth-child(2) List Content: .user-items-list-banner-slideshow .slide-content Title: .user-items-list-banner-slideshow h2.list-item-content__title Description:  .user-items-list-banner-slideshow list-item-content__description OR .user-items-list-banner-slideshow p Arrow Circles: .user-items-list-banner-slideshow .user-items-list-banner-slideshow__arrow-button Arrow Icons: .user-items-list-banner-slideshow .user-items-list-banner-slideshow__arrow-button svg Button: .user-items-list-banner-slideshow .list-item-content__button List Carousel
    List Carousel: .user-items-list-carousel__slides Image: .user-items-list-carousel__slides img First Item: .user-items-list-carousel__slides li:nth-child(1) Second Item: .user-items-list-carousel__slides li:nth-child(2) List Content: .user-items-list-carousel__slides .list-item-content Title: .user-items-list-carousel__slides h2.list-item-content__title Description:  .user-items-list-carousel__slides list-item-content__description OR .user-items-list-carousel__slides p Arrow Circles: .user-items-list-carousel__arrow-button Arrow Icons: .user-items-list-carousel__arrow-button svg Button: .user-items-list-carousel__slides .list-item-content__button Fluid Engine
    Fluid Block (text block, image...): Each block is wrapped by the same class name .fe-block and a unique id. And All .fe-blocks will be wrapped by a parent tag with a class name of .fluid-engine
     
    Checked & Wrote by tuanphan
  15. Like
    Fig_Design reacted to Tiny_Coast in Free Digital Marketing Resources & Worksheets   
    Hi all, 
    I put together a free marketing resources page to kick off the new year. It includes worksheets for campaign planning, defining your services and products, and getting clear on your audience. Hope some of you find it helpful 🙂
    https://tinycoastdigital.com/digital-marketing-resources

×
×
  • 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.