@weodeo in your fiddle, you use symbols such as "$", that have to be translated to something else in lay theme. Would be useful if you post your code here.

Best posts made by felix_rabe
-
RE: Add Custom HTML, CSS and JS
-
RE: Breadcrumbs /// Quick Edit
@lortnok you might want check out woocommerce hooks.
this goes into functions.php of your theme:
add_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20);this goes into your php file for the desired page:
<?php woocommerce_breadcrumb(); ?>But I don't know if it works with lay theme this way. Maybe you set up a dummy website and fiddle with it.
@arminunruh i suppose this could be integrated "easily", maybe you put it on your list :-)
-
RE: Is there way to create a button to jump to a specific part on the same page?
The Button:
<a href="#my-destination">Link</a>The part on the same page:
<div id="my-destination">blabla</div> -
RE: Horizontal line
@Madash the lengths of the lines change because they get their value from the overall width of the screen (%), just like the text-boxes. the letters have a specific size (px) and don't change.
You could give each line an individual class and apply a specific size with css. for example:
.line-one{ width: 500px }
-
RE: Background color for inner frame only
@JivaG thank you. let’s break this down. I got rid of the background color and the margin on the sides of your rows and applied the following:
.grid-inner{ background-color: grey; margin-left: 12%; margin-right: 12%; }
I don't know how you did the layout in the gridder, but maybe you can take it from here.
-
RE: Website loads slowly
@adamk u use a lot of high quality gifs with 10 mb in size on your homepage, and suqeeze them into small thumbnails. I think it will run faster if you optimize this.
-
RE: Maintenance/coming soon
@Richard yet he has to change the front-page every time he saves the changes in the customizer. MAYBE armin can incorporate a "show page XYZ" feature in the customizer, so you can directly choose the page to display from a list. I would love this because the customizer is not really meant/made for navigation. for example, when you use the browser back button you don't navigate back in the website but you get back to your Wordpress dashboard.
-
RE: Problem: words with link appear underlined!
hi @lucavanello you can go to the customizer and edit "Links in Text".
P.S. the photos of your artworks are top notch.
F
-
RE: Maintenance/coming soon
@pandeli you can just create this page by yourself and set it as Front Page in the customizer. disable the menu for this page by custom css so the visitors can't navigate.
Latest posts made by felix_rabe
-
Manipulate Lightbox Caption with JS
Hi Armin,
i was fiddling around with the Lightbox caption and could not manage to manipulate it with JS. The caption itself looks like this:
<p class="custom-lightbox-caption">My Caption Text</p>
the JS:
<script> window.laytheme.on("newpageshown", function(){ jQuery('.sitetitle-txt-inner').parent().addClass('funny-test-class'); //Test if JS Works at all jQuery('.custom-lightbox-caption').addClass('funny-test-class'); //This does not work jQuery('.custom-lightbox-caption').parent().parent().addClass('custom-grid'); //This does not work jQuery('.custom-lightbox-caption').parent().addClass('custom-relative-caption'); //This does not work </script>
Is it not possible to manipulate the Lightbox with js this way?
Best
Felix -
RE: Breadcrumbs /// Quick Edit
@lortnok you might want check out woocommerce hooks.
this goes into functions.php of your theme:
add_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20);this goes into your php file for the desired page:
<?php woocommerce_breadcrumb(); ?>But I don't know if it works with lay theme this way. Maybe you set up a dummy website and fiddle with it.
@arminunruh i suppose this could be integrated "easily", maybe you put it on your list :-)
-
RE: Products Grid / Archive Pages
@arminunruh Maybe this is also interesting for the Gridder:
Single-Product-Type-Page with possibility to insert a woo-content-block (to display the product) and possibility to add content before and after the single product display.
Maybe you can also add a Gridder to the Single Product Area in the Backend for the possibility to add additional content to a specific single product.
-
RE: change position of caption in lay theme lightbox
@alanna-lawley I could do it in a few steps if you tell me the desired look of the text. compensation would be a tiny painting.
Felix
-
RE: Add Custom HTML, CSS and JS
@weodeo in your fiddle, you use symbols such as "$", that have to be translated to something else in lay theme. Would be useful if you post your code here.
-
RE: Add Custom HTML, CSS and JS
@weodeo you might take a closer look at the javascript and change some stuff there. See here:
-
RE: Individual thumbnail grids for different projects?
@Aleksandar isn't it possible to place the desired single project thumbnails in this area?
-
RE: Products Grid / Archive Pages
@arminunruh i set it up locally.
I now purchased the laygridder and combine it with woocommerce in a custom wp theme. for me the perfect layout would be something like this:
Configure in the Gridder:
- Landing Page, About Page, Terms and Conditions , etc…
- Possibility to place Single Product Thumbnails with name and price tag or a Grid for "featured" products or something like that (but I don't know if this works, because I set my front page also as my shop page and combined a landing-page layout with some woo-content.)
- Woo-Archive-Type-Page with possibility to insert a woo-content-block, so its conducive to use product categories
- if desired, - Shop page with possibility to insert a woo-content-block (which is imo just an archive page that displays all products, maybe its possible to reduce this to one archive page.)
Configure in the Customizer:
- Woo-product-thumbnails-gridder
- Single Product layout
- Checkout etc
-
Products Grid / Archive Pages
Request:
Possibility to customize Product Grid in the Customizer.
Because right now, woo commerce automatically displays a gridder for certain category and subcategory pages, wrapped in a div with id "lay-woocommerce", which is great, but not customizable in terms of products per row, and not responding to "max width for content", it seems.Best
Felix -
Sub-sub Menus
It is possible to add multiple hierarchies in the menu-section in Wordpress, but it doesn't seem to work right now with lay theme. It would be great if this could be supported and customized.