Earvin
Circle Member-
Posts
36 -
Joined
-
Last visited
Content Type
Forums
Gallery
Blogs
Events
Store
Downloads
Profiles
Everything posted by Earvin
-
You can also reach to the plugin's support team if you need help with their product. In this case, you can reach out to them either via email or Slack.
- 4 replies
-
- custom-css
- blog
-
(and 1 more)
Tagged with:
-
Adding a resource in this thread, a lot of requests have been raised to the Squarespace team for adding a table block but for now here's a simple copy and paste way to create tables in Squarespace 7.0 and 7.1.
-
Hi Alex, You'll need javascript or php coding that uses the user's browser's cookie or history to save the options they selected. In other words, you need a proper coder to build that function for you. Maybe try @creedon or @tuanphan for help.
-
CSS Styling Table Plugin - full width tables
Earvin replied to BillChesney's topic in Customize with code
Hi Bill, Were you able to solve this? Table block plugin's styling options are limited from the UI window. However, it's customizable if you apply CSS on it. You can adjust any part of the table you want with CSS. -
The closest solution available is to import your product variants using a CSV file because at least you can copy/paste prices for 216 variants in matter of seconds versus adding them one by one.
-
Yep, either use a Code block or Markdown block.
-
Issues with Table when Resizing to Page Width
Earvin replied to avanti's topic in Customize with code
Hi, Were you able to solve this? I have a similar experience in 7.1 when using sections. Extra spaces appear that I can't get rid of by resizing the blocks. In my case, 2 things worked: 1. Changing the size of the section's padding in the section's settings, or 2. Re-adding the section by using the Classic Editor option . -
Hide Specific Category Filter from Products/Shop Feed
Earvin replied to katiependergast's topic in Customize with code
Hi Katie, You can hide it with CSS. Try inserting this CSS code in the Page Header Code Injection. <style> /*Hide Free Resources*/ .products.collection-content-wrapper .nested-category-breadcrumb-list-item:nth-child(2){ display: none !important; } </style> Warning: This CSS code is using nth-child(2) which since 'Free Resources' is the 2nd option in the category list so if you're adding more categories in the future, make sure to update nth-child(2) to the new order of 'Free Resources' in the category list example: nth-child(4). -
That's right. noScrollToResults: true is already a negation which removes scrolling so to do the opposite you have to double negate and set it to false.
-
Have you tried using More Filters?And then changing Max spent amount to 0 to filter out names whose total purchase is 0 (or no purchase at all).
-
-
The Universal Filter plugin has a cache time of 10 minutes which may explain the delay when adding new categories/tags to shop products. But after a few minutes, the filter should update it's data with the new products you added to existing categories/tags or the categories/tags you added to existing products. If it goes on more than 10 minutes and you still don't see the product, category or tag you added on the filter, you should reach out to their support team via email or Slack for help.
-
Currency Convertor and Universal filter plugin conflict
Earvin replied to sofia62's topic in Customize with code
Have you tried asking Michael Mashay in Slack? -
Universal Filter - Size/Color Variant Filters
Earvin replied to naterizzle's topic in Customize with code
You can also try contacting them via Slack or email. -
Add only SORT section with Universal Filter plugin
Earvin replied to diana204's topic in Customize with code
Hi @diana204 , Unfortunately, there's no default setting to add different layouts for the filter and sorter (i.e. add the filter as inline links while sorter is a dropdown). You'll have to use custom CSS coding to change the layout of the filter from dropdown to inline links. -
Summary Block - show results by several tags
Earvin replied to WebShark's topic in Customize with code
Hi WebShark, After you installed the Tag filter you want, add multipleLogic: 'and', after the multiple: true, code. That'll change the logic of multiple selection from OR to AND. -
Hi @MaxNZ, Did you reached out to the support team or joined the Slack channel for help?
- 7 replies
-
- commerce
- custom-css
-
(and 1 more)
Tagged with:
-
Hi Tonwa, Hopefully, you've already sorted this out. But just in case, have you checked out Universal Filter? It works on Events pages and Summary blocks.
-
Getting checkbox organized with Universal filter plugin
Earvin replied to cornoddity's topic in Customize with code
Hi Cornoddity, Were you able to solve this? You'll need some CSS coding to do the layout you described. But better start by changing the layout to dropdown first by changing view: 'buttons-pill', to view: 'dropdowns', in your filter code. Its easier to start there than turning the buttons to dropdowns.- 2 replies
-
- filter
- accessibility
-
(and 2 more)
Tagged with:
-
Negative space / White space near plugin (Universal Filter)
Earvin replied to WebShark's topic in Customize with code
I agree with @JayVanDyke, the extra space only happens when using the fluid engine (the grid layout system) and that can be reduced by removing/decreasing the grid rows near the bottom of the section but you still have the default padding of the section to deal with. You can adjust the padding or margin with CSS but the most convenient and non technical way to do it is what Jay suggested. -
Square Websites Universal Filter Plugin + Ghost Easy Video Lightbox
Earvin replied to C4io's topic in Customize with code
Here's another variation of Tuan's code though the code he gave should work. hooks: { afterFilter: function (f){ if (f.requestComplete){ openBundleLinksInLightbox_(); pluginLightbox({"closeExisting":"true"}); } } },- 4 replies
-
- plugin
- code-injection
-
(and 1 more)
Tagged with: