This will be where we talk about shop issues and questions and feedback.
arminunruh
Posts
-
Hey everybody!Apr 8, 2021, 12:38 PM -
Link to Anchor from another pageMar 2, 2018, 5:12 PMOk so I have an image in page1 and I give it an ID.
You can also give a row an ID, doesn't matter. Right click -> set html class and idNow on another page, I create a link. Here I create a link on an image, but you could also create a link when you edit text. The important part is "#hello".
"hello" is the id that I set before.Now I think Marius' code is probably right, maybe the problem was just that the easing named 'easeOutSine' doesn't exist. Not 100% sure here.
Add the following code to "Lay Options" -> "Custom <head> content":<script> window.laytheme.on('newpageshown', function(){ if(window.location.hash.length > 0){ var id = window.location.hash; if(jQuery(id).length > 0){ jQuery('html, body').animate( { scrollTop: jQuery(id).offset().top }, { duration: 1200 }); } } }); </script>
That code above is cool cause it works for all pages
-
Update Problem 4.9.2 to 4.9.3Nov 25, 2022, 4:37 PMyea it was a bug, i didnt set the correct version in one file. now with 4.9.4 thats fixed
-
Color for individual row gutterDec 2, 2015, 9:49 AMHey! That's not possible right now. But I think it's a really good idea, so I will code that one day.
-
Lazy load with blurred previewOct 2, 2024, 8:31 AMwill be included with the next update
-
Blog integration?Oct 25, 2021, 2:11 PMyea im going to start working on the blog feature now!
-
Lazy load with blurred previewApr 19, 2020, 1:31 PMtheres no way you can do that, however, i've been thinking of coding this as an option for lay theme and it is still on my list
-
Functional tags in Lay ThemeJun 11, 2019, 3:30 PMhey so with the new update, projects will have body classes like category-1 category-2 where the number is the id of the category
-
Feature request: Stack inside of another stackSep 26, 2024, 11:39 AMwhat i need to code is to be able to have multiple elements in one line in a stack i think
-
Responsive font sizeApr 27, 2015, 8:51 PMYeah, I think it would be good to be able to either define font sizes in px or in vw. When defined as vw, the font size resizes with the browser. https://css-tricks.com/viewport-sized-typography/
Should only be used for big text though. Small text could become way too small at a certain size. Like here: http://shop.mango.com/iframe.faces?state=he_004_AL
:scream:Edit: In version 1.022 the font-size can now be set in % in Text Formats and the Customizer
-
Product Categories/Tags FiltersNov 25, 2022, 5:13 PMits on my todo list
-
Fade Effect / Smooth Transitions Links via "Custom HTML“Mar 2, 2018, 5:19 PMCan you post the link or send it to info@laytheme.com with a link to this topic please?
One reason could be that a shortcode is in use on the page that you link to.
To make shortcodes work, the whole website needs to refresh, so you won't have a smooth transition. -
make image caption follow mouse!Nov 21, 2024, 2:17 PMenter this in lay options → custom css & html → custom <head> content:
<script> var $caption; jQuery(document).on('mouseenter', '.col.type-img', function(e){ //console.log(e); $caption = jQuery(e.currentTarget).find('.caption'); }) jQuery(document).on('mouseleave', '.col.type-img', function(){ console.log('mouseleave'); $caption.css('display', 'none'); $caption = null; }) var offset = 10; jQuery(document).on('mousemove', '.col.type-img', function(e){ console.log('mousemove'); if($caption != null){ $caption.css({'display': 'block', 'top': e.clientY + offset, 'left': e.clientX + offset}); } }) </script>
enter this in "custom css for desktop":
.caption{ position: fixed; display: none; z-index: 99; }
now in the gridder, add an image in your layout, select it and click "edit caption" button.
add a caption. now on your website the caption will follow your mouse. -
When will "sticky" become STICKY?Oct 18, 2023, 4:15 PMah yes you're right.
i will work on it! -
Start gif/video mouse hover in project thumbnailJun 15, 2023, 10:34 AMgo to lay options
there is a setting for project thumbnail videos
then in customize -> project thumbnails
there are settings for playing a video on mouseover
try that -
Split screen website Thumbnail grid hides active projectFeb 15, 2023, 2:30 PMok can u update lay theme now
go to lay options, scroll down, and uncheck
"Hide current Project from Thumbnailgrid" -
Text Rotation for Project ArrowNov 10, 2016, 4:13 PMGood idea!
Please add this CSS to "lay options" -> "custom css & html" -> "custom css for desktop":+1:
.project-arrow.pa-prev{ transform-origin: center; transform: translate(-50%, -50%) rotateZ(90deg) translateY(-20px); } .project-arrow.pa-next{ transform-origin: center; transform: translate(50%, -50%) rotateZ(90deg) translateY(20px); }
you can play around with the -20px and 20px. These two values define the space between the browser edge and the project arrow text.
I think i will include the rotating for this as an option one day :).
-
News FeatureJul 4, 2022, 12:45 PMhey there!
ok i will work on it! -
Multilanguage problem with home page (Polylang)Jun 20, 2022, 4:51 PMactually yea this is a bug.
i just fixed it, will be released with the next update. sorry this wasn't fixed for so long, this is actually a pretty bad/important bug :O :O -
Google Analytics or Clicky trackingApr 28, 2021, 10:18 AMHey everybody.
So I set up google analytics by myself today and looked at how it works.
Turns out, nowadays there's nothing we specific we need to do to make it work with Lay Theme.Just the standard way of setting it up is enough.
I still created a YouTube video though so you can see how to set it up cause it can be a little bit confusing.
The video is being uploaded so it should be avaiable in a few minutes.
Have a great day
Before you post:
- When using a WordPress Cache plugin, disable it or clear your cache.
- Update Lay Theme and all Lay Theme Addons
- Disable all Plugins
- Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"
This often solves issues you might run into
When you post:
- Post a link to where the problem is
- Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
- If the problem is difficult to explain, post screenshots / link to a video to explain it