Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

Lay Theme Forum

  1. Home
  2. Feedback
  3. Some features requests for LayTheme

Some features requests for LayTheme

Scheduled Pinned Locked Moved Feedback
28 Posts 4 Posters 766 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    arminunruh
    Global Moderator
    wrote on Mar 4, 2022, 1:02 PM last edited by
    #6

    hello!

    you can update lay theme and now the elementgrid has these new settings:
    Screenshot 2022-03-04 at 14.01.34.png

    B 1 Reply Last reply Apr 22, 2022, 11:35 AM
    0
    • A Offline
      A Offline
      arminunruh
      Global Moderator
      wrote on Mar 4, 2022, 1:10 PM last edited by
      #7

      also new in customize:

      Customize → Project Thumbnails → Thumbnail Grid Tag Filter: Option "For Mobile put tags in a scrollable line" and "Mobile Space between Tags (px)"

      and

      Customize → Project Thumbnails → Thumbnail Grid Category Filter: Option "For Mobile put in a scrollable line" and "Mobile Space between (px)"

      1 Reply Last reply
      0
      • A Offline
        A Offline
        alasdair17
        wrote on Mar 5, 2022, 10:22 AM last edited by
        #8
        This post is deleted!
        1 Reply Last reply
        0
        • A Offline
          A Offline
          alasdair17
          wrote on Mar 5, 2022, 10:23 AM last edited by
          #9

          Thank you so much @arminunruh - these updates are fantastic!

          Can't wait to see more updates! I understand they'll take time :)

          Thank you again,

          Cheers,

          Alasdair

          1 Reply Last reply
          0
          • R Offline
            R Offline
            Richard
            Global Moderator
            wrote on Mar 7, 2022, 10:09 PM last edited by
            #10

            Awesome @arminunruh 💥

            1 Reply Last reply
            0
            • A arminunruh
              Mar 4, 2022, 1:02 PM

              hello!

              you can update lay theme and now the elementgrid has these new settings:
              Screenshot 2022-03-04 at 14.01.34.png

              B Offline
              B Offline
              billykioso
              wrote on Apr 22, 2022, 11:35 AM last edited by
              #11

              @arminunruh is this available with a Thumbnail Grid?

              I want to recreate this site using a Thumbnail Grid with Categories in LayTheme, but the Thumbs must appear in reverse chronological order (ideally, by seeing the 'Published' date in WP which would allow the client to upload old paintings in the future and change their date)

              http://clarechapman.com/#/year/2021

              1 Reply Last reply
              0
              • R Offline
                R Offline
                Richard
                Global Moderator
                wrote on May 8, 2022, 10:19 PM last edited by Richard May 8, 2022, 6:25 PM
                #12

                Dear @billykioso

                The order can be changed Manually, Will forward this idea to Armin ✅
                If i am correct it's to add a "reverse order" button to the Thumbnail grid.

                (recreate this sveltkit website in laytheme)

                Meantime: If you end up with a large amount of categories you could always use jQuery to reverse the order of them:

                https://stackoverflow.com/questions/5347839/jquery-reversing-the-order-of-child-elements


                Best
                Richard
                B 1 Reply Last reply May 10, 2022, 4:37 PM
                0
                • R Richard
                  May 8, 2022, 10:19 PM

                  Dear @billykioso

                  The order can be changed Manually, Will forward this idea to Armin ✅
                  If i am correct it's to add a "reverse order" button to the Thumbnail grid.

                  (recreate this sveltkit website in laytheme)

                  Meantime: If you end up with a large amount of categories you could always use jQuery to reverse the order of them:

                  https://stackoverflow.com/questions/5347839/jquery-reversing-the-order-of-child-elements


                  Best
                  Richard
                  B Offline
                  B Offline
                  billykioso
                  wrote on May 10, 2022, 4:37 PM last edited by
                  #13

                  @Richard yes, a "reverse order" button would be fantastic!

                  I can't do it manually because each painting belongs to different categories and it would be too complicated to do.

                  I had a look at your link, but I'm not a developer, so not sure how to use the code... Do I simply paste this into the Customs CSS & HTML?

                  Element.prototype.reverse = function(){
                  var c = [].slice.call(this.children).reverse();
                  while (this.firstChild) { this.removeChild(this.firstChild); };
                  c.forEach(function( child ){ this.appendChild(child) }.bind(this))
                  }

                  1 Reply Last reply
                  0
                  • R Offline
                    R Offline
                    Richard
                    Global Moderator
                    wrote on May 14, 2022, 12:24 AM last edited by
                    #14

                    Dear Billy

                    @billykioso
                    var list = $('ul');
                    var listItems = list.children('li');
                    list.append(listItems.get().reverse());
                    

                    You will need to define both the parent container and the children for this to work. The Parent Container being the ul and the children being the li - These ul & li will be called something different in Lay Theme. You may wish to seek the aid of a developer or there is some good documentation that will help you through if you are willing to 🌝

                    The code above is saying

                    • " Create a variable (var) called "list"
                    • This 'list' is equal to the HTML element ul (parent container)
                    • Then create a variable (var) called "listItems"
                    • This "listItems" is equal to the variable "list"s Children ( the children live inside the HTML element ul (parent-child relationship).
                    • The last line is taking these children and reversing them.

                    Google is your Friend! 🔍

                    https://laytheme.com/documentation/custom-javascript.html

                    https://laytheme.com/documentation/custom-css-styling.html


                    Best
                    Richard
                    1 Reply Last reply
                    0
                    • A Offline
                      A Offline
                      alasdair17
                      wrote on Jun 9, 2022, 3:29 PM last edited by
                      #15

                      Any updates on these feature requests? Cheers @arminunruh and @Richard

                      1 Reply Last reply
                      0
                      • A Offline
                        A Offline
                        arminunruh
                        Global Moderator
                        wrote on Jun 10, 2022, 3:09 PM last edited by
                        #16

                        hey man have been super busy lately, i will take another look at this thread soon

                        A 1 Reply Last reply Jun 10, 2022, 4:28 PM
                        0
                        • A arminunruh
                          Jun 10, 2022, 3:09 PM

                          hey man have been super busy lately, i will take another look at this thread soon

                          A Offline
                          A Offline
                          alasdair17
                          wrote on Jun 10, 2022, 4:28 PM last edited by
                          #17

                          @arminunruh Thanks Armin. I really appreciate your hard work that you're putting into improving LayTheme. Cheers.

                          1 Reply Last reply
                          0
                          • B Offline
                            B Offline
                            billykioso
                            wrote on Jun 27, 2022, 1:58 PM last edited by
                            #18

                            @arminunruh @Richard thank you for the 'Reverse Order' button in the thumbnails, it's great! :)

                            1 Reply Last reply
                            0
                            • A Offline
                              A Offline
                              alasdair17
                              wrote on Jul 29, 2022, 9:21 AM last edited by
                              #19

                              Hi Armin, any updates on the possibilities for these requests? Thanks again for your hard work on improving Laytheme.

                              1 Reply Last reply
                              0
                              • A Offline
                                A Offline
                                arminunruh
                                Global Moderator
                                wrote on Jul 29, 2022, 2:06 PM last edited by
                                #20

                                hey there!
                                thanks for getting back to me about these features!
                                i will work on them

                                1 Reply Last reply
                                0
                                • A Offline
                                  A Offline
                                  arminunruh
                                  Global Moderator
                                  wrote on Jul 30, 2022, 9:23 AM last edited by
                                  #21

                                  i just released a lightbox addon update. it covers all your requests except zooming by pinching on phone.

                                  1 Reply Last reply
                                  0
                                  • A Offline
                                    A Offline
                                    arminunruh
                                    Global Moderator
                                    wrote on Jul 30, 2022, 9:24 AM last edited by
                                    #22

                                    Images from projects appear/populate instantly from a project when you click on a Tag Bubble.

                                    i think i wont code this feature sorry

                                    1 Reply Last reply
                                    0
                                    • A Offline
                                      A Offline
                                      alasdair17
                                      wrote on Jul 30, 2022, 10:24 AM last edited by
                                      #23

                                      Hi Armin, thanks for working on these, much appreciated!

                                      Is this one possible as well:

                                      Search bar:

                                      The 'Search bar' finds images based on their caption and opens in a lightbox.

                                      With the pinch/zoom on mobiles, could this be an option where people could check a box as to whether to activate it or not? This is really important for a website I am working on due to the details in some of their horizontal images.

                                      1 Reply Last reply
                                      0
                                      • A Offline
                                        A Offline
                                        alasdair17
                                        wrote on Jul 30, 2022, 10:47 AM last edited by
                                        #24

                                        also is there something you need to activate to get the media library captions to show on the lightbox? I uploaded a new image into media > library > typed in title into caption box > save but no caption appears?

                                        thanks again for your hard work, sorry if I'm being difficult! it's just this website is so close to being perfect, just need these few more options.

                                        1 Reply Last reply
                                        0
                                        • A Offline
                                          A Offline
                                          alasdair17
                                          wrote on Aug 10, 2022, 1:35 PM last edited by
                                          #25

                                          Hi @arminunruh any feedback if you have a moment?

                                          I understand the pinch/zoom is probably just not going to happen with lightboxes on mobiles so I'll disable this for mobiles to allow for zooming.

                                          Be great if the Search function could be enhanced to display single images rather than just projects.

                                          Also, I'll retry the media library captions fix, perhaps I need to disable a plugin.

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          I also code custom websites or custom Lay features.
                                          💿 Email me here: 💿
                                          info@laytheme.com

                                          Before you post:
                                          1. When using a WordPress Cache plugin, disable it or clear your cache.
                                          2. Update Lay Theme and all Lay Theme Addons
                                          3. Disable all Plugins
                                          4. 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:
                                          1. Post a link to where the problem is
                                          2. Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
                                          3. If the problem is difficult to explain, post screenshots / link to a video to explain it
                                          Online Users
                                          Forgot your key, lost your files, need a previous Lay Theme or Addon version? Go to www.laykeymanager.com
                                          laytheme.com
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Search