{"id":29506,"date":"2025-12-29T17:43:03","date_gmt":"2025-12-29T17:43:03","guid":{"rendered":"https:\/\/makemehappy.sk\/?page_id=29506"},"modified":"2026-04-23T08:07:57","modified_gmt":"2026-04-23T08:07:57","slug":"snippets","status":"publish","type":"page","link":"https:\/\/makemehappy.sk\/en\/snippets\/","title":{"rendered":"Snippets"},"content":{"rendered":"<section class=\"wp-block-greenshift-blocks-row alignfull gspb_row gspb_row-id-gsbp-922ed87\" id=\"gspb_row-id-gsbp-922ed87\"><div class=\"gspb_row__content\"> \n\n\n<div class=\"wp-block-greenshift-blocks-row-column gspb_row__col--12 gspb_col-id-gsbp-c84ef21\" id=\"gspb_col-id-gsbp-c84ef21\">\n<h1 class=\"wp-block-heading\" id=\"snippets-practical-solutions-for-wordpress-woocommerce\">SNIPPETS - Practical Solutions for WordPress &amp; WooCommerce<\/h1>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"introduction\">Introduction<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">When working with WordPress, the same needs appear over and over again: small behavior changes, custom conditions, text adjustments, checkout logic, pricing tweaks, or features that core WordPress or plugins simply don't offer.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That's exactly where <strong><a href=\"#final-thoughts\" data-type=\"internal\" data-id=\"#final-thoughts\">snippets<\/a><\/strong> come in.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This section is built as a practical library of proven solutions - small pieces of code designed to solve one specific problem efficiently, cleanly, and without writing a full plugin.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-is-a-snippet\">What is a snippet?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A <strong>snippet<\/strong> is a small piece of code (usually PHP, CSS, or JavaScript) that:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>extends WordPress functionality,<\/li>\n\n\n\n<li>modifies WooCommerce behavior,<\/li>\n\n\n\n<li>adjusts frontend or backend output,<\/li>\n\n\n\n<li>or hooks into WordPress actions and filters.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">A properly written snippet is not a hack.<br>It follows WordPress standards and behaves the same way as code inside a plugin.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-are-snippets-used-for\">What are snippets used for?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Common use cases include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>changing button labels or system messages<\/li>\n\n\n\n<li>conditional checkout or cart logic<\/li>\n\n\n\n<li>automatic coupon generation<\/li>\n\n\n\n<li>pricing, tax, or shipping adjustments<\/li>\n\n\n\n<li>custom fields and metadata<\/li>\n\n\n\n<li>WooCommerce email customization<\/li>\n\n\n\n<li>conditional display of elements<\/li>\n\n\n\n<li>performance or security optimizations<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Snippets are powerful because they <strong>solve exactly one problem<\/strong>, nothing more.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"where-and-how-are-snippets-added\">Where and how are snippets added?<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-functions-php-not-recommended-for-production\">1. functions.php (not recommended for production)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Quick but risky:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>lost when switching themes<\/li>\n\n\n\n<li>errors can break the entire site<\/li>\n\n\n\n<li>poor maintainability<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Useful for testing, not ideal long-term.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"2-custom-mini-plugin-cleanest-approach\">2. Custom mini-plugin (cleanest approach)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Snippets live inside a plugin:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>theme-independent<\/li>\n\n\n\n<li>better structure<\/li>\n\n\n\n<li>scalable<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Best practice, but sometimes overkill for small tweaks.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"3-snippet-manager-plugins-best-balance\">3. Snippet manager plugins (best balance)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Snippet plugins allow you to manage custom code safely from the admin panel:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>enable \/ disable snippets instantly<\/li>\n\n\n\n<li>prevent fatal errors<\/li>\n\n\n\n<li>keep everything organized<\/li>\n\n\n\n<li>no direct file editing<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Popular solutions include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><a href=\"https:\/\/fluentsnippets.com\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/fluentsnippets.com\/\" rel=\"noreferrer noopener\">Fluent Snippets<\/a><\/strong><\/li>\n\n\n\n<li><strong>Code Snippets<\/strong><\/li>\n\n\n\n<li><strong><a href=\"https:\/\/library.wpcode.com\/?ref=186\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/library.wpcode.com\/?ref=186\" rel=\"noreferrer noopener\">WPCode Box<\/a><\/strong><\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Using these tools <strong>significantly reduces the risk<\/strong> and speeds up development.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-to-expect-in-this-section\">What to expect in this section?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Snippets published on makemehappy.sk are:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>focused on real-world problems<\/li>\n\n\n\n<li>tested in production projects<\/li>\n\n\n\n<li>written clearly and extensibly<\/li>\n\n\n\n<li>often commented and explained<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Some are simple, others more advanced - but always practical.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"who-is-this-for\">Who is this for?<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>WordPress administrator<\/li>\n\n\n\n<li>WooCommerce store owners<\/li>\n\n\n\n<li>developers and freelancers<\/li>\n\n\n\n<li>technical users who want control<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">If you understand hooks, filters, or at least <code>functions.php<\/code>, you'll feel at home here.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"final-thoughts\">Final thoughts<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Snippets are one of the most efficient ways to shape WordPress exactly to your needs - without bloated plugins, without compromises, and without messy codebases.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This section aims to become a <strong>reliable go-to resource<\/strong> you'll come back to whenever you need a clean solution.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n<\/div>\n <\/div><\/section>\n\n\n<div class=\"wp-block-blocksy-query\" data-id=\"61366dcc\"><div class=\"ct-posts-block\" data-prefix=\"blog\"><div class=\"entries\" data-archive=\"default\" data-layout=\"simple\" data-cards=\"boxed\"><article class=\"entry-card post-30072 post type-post status-publish format-standard has-post-thumbnail hentry category-snippet\" data-reveal=\"bottom:no\"><a class=\"ct-media-container boundless-image\" href=\"https:\/\/makemehappy.sk\/en\/woocommerce-zobrazenie-hmotnosti-shortcode\/\" aria-label=\"How to display the weight of a product anywhere using a shortcode\"><img decoding=\"async\" width=\"768\" height=\"512\" src=\"https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-768x512.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"\" loading=\"lazy\" srcset=\"https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-768x512.jpg 768w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-400x267.jpg 400w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-18x12.jpg 18w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-430x287.jpg 430w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-700x467.jpg 700w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets.jpg 1000w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" itemprop=\"image\" style=\"aspect-ratio: 1\/1;\" title=\"\"><\/a><div class=\"card-content\"><ul class=\"entry-meta\" data-type=\"simple:slash\" data-id=\"meta_1\" ><li class=\"meta-categories\" data-type=\"simple\"><a href=\"https:\/\/makemehappy.sk\/en\/category\/snippet\/\" rel=\"tag\" class=\"ct-term-105\">Snippet<\/a><\/li><\/ul><h2 class=\"entry-title\"><a href=\"https:\/\/makemehappy.sk\/en\/woocommerce-zobrazenie-hmotnosti-shortcode\/\" rel=\"bookmark\">How to display the weight of a product anywhere using a shortcode<\/a><\/h2><div class=\"entry-excerpt\"><p>Sometimes you need to display the weight of a product next to the price, in the description or in a special block, and not just in the default parameter table. WooCommerce doesn't have this option by default, but with this simple snippet you can create a custom \u201eshortcode\u201c to insert anywhere. How...<\/p>\n<\/div><\/div><\/article><article class=\"entry-card post-30070 post type-post status-publish format-standard has-post-thumbnail hentry category-snippet\" data-reveal=\"bottom:no\"><a class=\"ct-media-container boundless-image\" href=\"https:\/\/makemehappy.sk\/en\/zopakovat-objednavku-woocommerce-shortcode\/\" aria-label=\"Form to repeat an order via shortcode\"><img decoding=\"async\" width=\"768\" height=\"512\" src=\"https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-768x512.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"\" loading=\"lazy\" srcset=\"https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-768x512.jpg 768w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-400x267.jpg 400w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-18x12.jpg 18w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-430x287.jpg 430w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-700x467.jpg 700w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets.jpg 1000w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" itemprop=\"image\" style=\"aspect-ratio: 1\/1;\" title=\"\"><\/a><div class=\"card-content\"><ul class=\"entry-meta\" data-type=\"simple:slash\" data-id=\"meta_1\" ><li class=\"meta-categories\" data-type=\"simple\"><a href=\"https:\/\/makemehappy.sk\/en\/category\/snippet\/\" rel=\"tag\" class=\"ct-term-105\">Snippet<\/a><\/li><\/ul><h2 class=\"entry-title\"><a href=\"https:\/\/makemehappy.sk\/en\/zopakovat-objednavku-woocommerce-shortcode\/\" rel=\"bookmark\">Form to repeat an order via shortcode<\/a><\/h2><div class=\"entry-excerpt\"><p>Sometimes a customer doesn't need to search through the entire catalogue to buy the same thing as last time. All they need is the previous order number and an email. This snippet creates a simple form that, after verifying the data, automatically populates the cart with identical products and redirects the customer to checkout. How...<\/p>\n<\/div><\/div><\/article><article class=\"entry-card post-29837 post type-post status-publish format-standard has-post-thumbnail hentry category-snippet\" data-reveal=\"bottom:no\"><a class=\"ct-media-container boundless-image\" href=\"https:\/\/makemehappy.sk\/en\/zmena-prihlasovacieho-loga-wordpress\/\" aria-label=\"How to change the logo on the WordPress login page\"><img decoding=\"async\" width=\"768\" height=\"512\" src=\"https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-768x512.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"\" loading=\"lazy\" srcset=\"https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-768x512.jpg 768w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-400x267.jpg 400w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-18x12.jpg 18w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-430x287.jpg 430w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-700x467.jpg 700w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets.jpg 1000w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" itemprop=\"image\" style=\"aspect-ratio: 1\/1;\" title=\"\"><\/a><div class=\"card-content\"><ul class=\"entry-meta\" data-type=\"simple:slash\" data-id=\"meta_1\" ><li class=\"meta-categories\" data-type=\"simple\"><a href=\"https:\/\/makemehappy.sk\/en\/category\/snippet\/\" rel=\"tag\" class=\"ct-term-105\">Snippet<\/a><\/li><\/ul><h2 class=\"entry-title\"><a href=\"https:\/\/makemehappy.sk\/en\/zmena-prihlasovacieho-loga-wordpress\/\" rel=\"bookmark\">How to change the logo on the WordPress login page<\/a><\/h2><div class=\"entry-excerpt\"><p>The default WordPress logo on the login screen (wp-login.php) is fine, but if you're building a site for a client or want to reinforce your own brand, replacing it with a custom one is an important detail. This simple snippet allows you to override the original style and insert your own image there...<\/p>\n<\/div><\/div><\/article><article class=\"entry-card post-29827 post type-post status-publish format-standard has-post-thumbnail hentry category-snippet\" data-reveal=\"bottom:no\"><a class=\"ct-media-container boundless-image\" href=\"https:\/\/makemehappy.sk\/en\/woocommerce-suma-v-tlacidle-objednavky\/\" aria-label=\"Dynamic order button with total amount display\"><img decoding=\"async\" width=\"768\" height=\"512\" src=\"https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-768x512.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"\" loading=\"lazy\" srcset=\"https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-768x512.jpg 768w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-400x267.jpg 400w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-18x12.jpg 18w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-430x287.jpg 430w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-700x467.jpg 700w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets.jpg 1000w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" itemprop=\"image\" style=\"aspect-ratio: 1\/1;\" title=\"\"><\/a><div class=\"card-content\"><ul class=\"entry-meta\" data-type=\"simple:slash\" data-id=\"meta_1\" ><li class=\"meta-categories\" data-type=\"simple\"><a href=\"https:\/\/makemehappy.sk\/en\/category\/snippet\/\" rel=\"tag\" class=\"ct-term-105\">Snippet<\/a><\/li><\/ul><h2 class=\"entry-title\"><a href=\"https:\/\/makemehappy.sk\/en\/woocommerce-suma-v-tlacidle-objednavky\/\" rel=\"bookmark\">Dynamic order button with total amount display<\/a><\/h2><div class=\"entry-excerpt\"><p>This handy snippet modifies the text of the main checkout button in your e-shop. Instead of the standard \u201eOrder with payment required\u201c or \u201eSubmit order\u201c, it adds the final amount to be paid by the customer to the text. From a psychological point of view, this is an excellent element - the customer...<\/p>\n<\/div><\/div><\/article><article class=\"entry-card post-29539 post type-post status-publish format-standard has-post-thumbnail hentry category-snippet\" data-reveal=\"bottom:no\"><a class=\"ct-media-container boundless-image\" href=\"https:\/\/makemehappy.sk\/en\/pridanie-prilohy-k-e-mailu-po-objednavke-vo-woocommerce\/\" aria-label=\"Adding an attachment to an email after an order in WooCommerce\"><img decoding=\"async\" width=\"768\" height=\"512\" src=\"https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-768x512.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"\" loading=\"lazy\" srcset=\"https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-768x512.jpg 768w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-400x267.jpg 400w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-18x12.jpg 18w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-430x287.jpg 430w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-700x467.jpg 700w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets.jpg 1000w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" itemprop=\"image\" style=\"aspect-ratio: 1\/1;\" title=\"\"><\/a><div class=\"card-content\"><ul class=\"entry-meta\" data-type=\"simple:slash\" data-id=\"meta_1\" ><li class=\"meta-categories\" data-type=\"simple\"><a href=\"https:\/\/makemehappy.sk\/en\/category\/snippet\/\" rel=\"tag\" class=\"ct-term-105\">Snippet<\/a><\/li><\/ul><h2 class=\"entry-title\"><a href=\"https:\/\/makemehappy.sk\/en\/pridanie-prilohy-k-e-mailu-po-objednavke-vo-woocommerce\/\" rel=\"bookmark\">Adding an attachment to an email after an order in WooCommerce<\/a><\/h2><\/div><\/article><article class=\"entry-card post-29512 post type-post status-publish format-standard has-post-thumbnail hentry category-snippet\" data-reveal=\"bottom:no\"><a class=\"ct-media-container boundless-image\" href=\"https:\/\/makemehappy.sk\/en\/ako-nastavit-farbu-status-baru-na-mobile-android-a-ios-vo-wordpresse\/\" aria-label=\"How to Set Mobile Status Bar Color on Android and iOS in WordPress\"><img decoding=\"async\" width=\"768\" height=\"512\" src=\"https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-768x512.jpg\" class=\"attachment-medium_large size-medium_large wp-post-image\" alt=\"\" loading=\"lazy\" srcset=\"https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-768x512.jpg 768w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-400x267.jpg 400w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-18x12.jpg 18w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-430x287.jpg 430w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets-700x467.jpg 700w, https:\/\/makemehappy.sk\/wp-content\/uploads\/2025\/12\/snippets.jpg 1000w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" itemprop=\"image\" style=\"aspect-ratio: 1\/1;\" title=\"\"><\/a><div class=\"card-content\"><ul class=\"entry-meta\" data-type=\"simple:slash\" data-id=\"meta_1\" ><li class=\"meta-categories\" data-type=\"simple\"><a href=\"https:\/\/makemehappy.sk\/en\/category\/snippet\/\" rel=\"tag\" class=\"ct-term-105\">Snippet<\/a><\/li><\/ul><h2 class=\"entry-title\"><a href=\"https:\/\/makemehappy.sk\/en\/ako-nastavit-farbu-status-baru-na-mobile-android-a-ios-vo-wordpresse\/\" rel=\"bookmark\">How to Set Mobile Status Bar Color on Android and iOS in WordPress<\/a><\/h2><\/div><\/article><\/div><\/div><\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_gspb_post_css":"#gspb_row-id-gsbp-922ed87{justify-content:space-between;margin-top:0;display:flex;flex-wrap:wrap;margin-bottom:0}#gspb_row-id-gsbp-922ed87>.gspb_row__content{display:flex;justify-content:space-between;margin:0 auto;width:100%;flex-wrap:wrap}.gspb_row{position:relative}div[id^=gspb_col-id]{box-sizing:border-box;position:relative;padding:var(--gs-row-column-padding, 15px min(3vw, 20px))}body.gspb-bodyfront #gspb_row-id-gsbp-922ed87>.gspb_row__content{width:var(--theme-container-width, 1200px);max-width:var(--theme-normal-container-max-width, 1200px)}#gspb_col-id-gsbp-c971c8e.gspb_row__col--12{width:100%}@media (max-width:575.98px){#gspb_col-id-gsbp-c971c8e.gspb_row__col--12{width:100%}}#gspb_col-id-gsbp-c84ef21.gspb_row__col--12{width:100%}@media (max-width:575.98px){#gspb_col-id-gsbp-c84ef21.gspb_row__col--12{width:100%}}","footnotes":""},"class_list":["post-29506","page","type-page","status-publish","hentry"],"blocksy_meta":[],"_links":{"self":[{"href":"https:\/\/makemehappy.sk\/en\/wp-json\/wp\/v2\/pages\/29506","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/makemehappy.sk\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/makemehappy.sk\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/makemehappy.sk\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/makemehappy.sk\/en\/wp-json\/wp\/v2\/comments?post=29506"}],"version-history":[{"count":12,"href":"https:\/\/makemehappy.sk\/en\/wp-json\/wp\/v2\/pages\/29506\/revisions"}],"predecessor-version":[{"id":30090,"href":"https:\/\/makemehappy.sk\/en\/wp-json\/wp\/v2\/pages\/29506\/revisions\/30090"}],"wp:attachment":[{"href":"https:\/\/makemehappy.sk\/en\/wp-json\/wp\/v2\/media?parent=29506"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}