Category: WordPress
With 208 articles also related to:
Aleš Sýkora wrote:
Display product custom attribute description in WooCommerce
November 28, 2023 in Custom Code, Plugins, WooCommerce, WordPress
If you created custom attributes for product variation and you filled in their description, you may need to show the description on product page. Product attributes are saved as an taxonomy terms. So you need to take a look, how the taxonomy is called in URL. It starts with pa_ and usually copy the name…
Aleš Sýkora wrote:
Repeater pagination position FIX for Oxygen Builder
November 28, 2023 in Oxygen Builder, Plugins, WordPress
If you use repeater in Oxygen Builder you may already know, that pagination component is on same position as columns. So when you use the grid in repeater, you may encounter it at wrong position. How to fix it? Just add this to your CSS: For CSS Grid: For flexbox: And after that, position in…
Aleš Sýkora wrote:
Date difference in current language
March 1, 2022 in Custom Code, WordPress
This script takes the date string and echo the date in wanted format and difference between current date.
Aleš Sýkora wrote:
Update WordPress database URL after manual migration
February 10, 2022 in Custom Code, WordPress
Run this SQL commands in database and do not forget to change the database prefix to your one. Do this on your own risk. You can also try to run this without / at the end of URL’s. After you successfully run this SQL commands, go to wp-config.php file and change this lines to mach…
Aleš Sýkora wrote:
How to use Highlight.js with WordPress and share your code
November 28, 2023 in Custom Code, Oxygen Builder, Plugins, WordPress
Would you like to use Highlighter for sharing your custom code in articles created in Gutenberg editor? No need to install plugins. Just use the Highlight.js library. This library will highlight everything between <pre><code>YOUR CODE</code></pre>. I was using Google highlighter in the past, but since it is deprecated, my favourite is highlighter.js. Today I will…
Aleš Sýkora wrote:
Free Cookie Consent in WordPress with Tag Manager Consent Mode
November 28, 2023 in Advanced Scripts, Custom Code, Oxygen Builder, Plugins, WordPress
This tutorial is created for all people who try to set up their EU cookie consent with WordPress website (and with Oxygen builder). I am using open source projects from Orest Bida – Send hype to this boy!! This tutorial will show how to prepare Cookie Consent with Google Analytics – with Google Consent Mode…
Aleš Sýkora wrote:
Custom PDF Invoices & Packing Slips templates with Oxygen Builder
November 28, 2023 in Oxygen Builder, Plugins, WooCommerce, WordPress
You propably already know, that Oxygen builder disable your WooCommerce theme completely. That may sometimes be a problem – for example when you want to override some template files. Recently, I have found quite hard to create custom template for my Invoices with WooCommerce PDF Invoices & Packing Slips plugin by WP Overnight. So I…
Aleš Sýkora wrote:
Open and close OxyExtras lightbox when element clicked or hash in URL
February 4, 2022 in Custom Code, Oxygen Builder, Plugins, WordPress
Thanks to the OxyExtras support, we can use custom elements to open and close their lightbox element. You just need to add the code below to the code block and add CSS classes. Opening element: .open-lightboxClosing element: .close-lightbox jQuery(document).ready(function($) { let openSelector = ‘.open-lightbox’; let closeSelector = ‘.close-lightbox’; let hash = ‘form’ /* yourwebsite.com/#form */…
Aleš Sýkora wrote:
WP Rocket lazy load iframes fix for Oxygen builder
November 28, 2023 in Custom Code, Oxygen Builder, Plugins, WordPress, WP Rocket
If you use the WP Rocket cache and it’s lazyloading for iframes/videos, you can encounter strange padding bottom on Oxygen Builder Video element. To fix it, you need to set padding-bottom unset according to WP Rocket support. Setting up the WP Rocket is easy: To fix the issue, add this CSS to your custom CSS…
Aleš Sýkora wrote:
How to Enable Page Excerpt in WordPress
November 28, 2023 in Advanced Scripts, Custom Code, Plugins, WordPress
Page Excerpt is disabled by default in WordPress post type Page. Excerpts are enabled for WordPress Posts, but I am not sure, why not for Pages. So, if you need to use the Excerpt in Wordpress Pages, you must add the functionality with the WordPress PHP filter. You can simply put the code in your…