Category: Plugins
With 208 articles also related to:
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…
Aleš Sýkora wrote:
Oxygen two columns WooCommerce Cart
November 28, 2023 in Custom Code, Oxygen Builder, Plugins, WooCommerce, WordPress
If you want better user experience with your WooCommerce store, you may need Two columns WooCommerce checkout. But maybe, you would like to offer this experience also in the Cart. If you want two columns WooCommerce cart, use the CSS code below in your Custom CSS Stylesheet inside Oxygen Builder. What do you think? Is…
Aleš Sýkora wrote:
Order posts by ACF field in Oxygen Advanced query
November 28, 2023 in Oxygen Builder, Plugins, WordPress
If you need filter your advanced query by ACF field, you need to use the field as a meta_key and then order by meta_value. You can set it up in Advanced query builder in Oxygen builder like this:
Aleš Sýkora wrote:
Dequeue WooCommerce JS and CSS
September 28, 2021 in Custom Code, Plugins, WooCommerce, WordPress
If you do not use default WooCommerce Photoswipe lightbox, flexslider and other libraries, you can dequeue them for faster loading of your site. I am doing that especially when I use the Oxygen Builder because in most times I build my own product galleries with fancybox. How to do Dequeue WooCommerce JavaScripts and CSS styles?…
Aleš Sýkora wrote:
Translate Step status in multistep Fluent Form
November 28, 2023 in Custom Code, Fluent Forms, Plugins, WordPress
If you need to translate the “Step 1 of xx” in fluent forms, you can use this filter to do that. Just put it in your code snippets plugin (for example Advanced scripts) and change the ‘Step’ and ‘of’ to needed words. If you use titles for step names, use this code instead:
Aleš Sýkora wrote:
Oxygen Pro Menu menu selector – workaround fix on multisite
November 28, 2023 in Oxygen Builder, Plugins, WordPress
Symptoms: Pro menu on multisite doesn’t show the WordPress menus in select field. Unfortunately, this is a known issue when using the Pro Menu element on a multisite install. There is a workaround by manually adding the ID of the menu you want to display to the page or template shortcodes. To do this, add…
Aleš Sýkora wrote:
How to use Infinite Scroll in Repeater element of Oxygen Builder
November 28, 2023 in Custom Code, Oxygen Builder, Plugins, WordPress
If you want to use the “Load more” button when using repeater, you can do that with .JS library called “Infinite Scroll”. Load Infinite Scroll script from CDN (I am using Advanced Scripts again). For a speed purposes – use conditions to make it load only on pages where you need to use it. Current…
Aleš Sýkora wrote:
Oxygen Repeater Pagination not working on homepage
July 20, 2021 in Custom Code, Oxygen Builder, Plugins, WordPress
When you use repeater on static front-page of your WordPress site and you also wants to use pagination – it doesn’t work at all. It stops at /page/2 and never display /page/3. It still repeat the second page. However – it looks like Oxygen bug, but it is not. As you can see: https://codex.wordpress.org/Pagination#static_front_page. To…
Aleš Sýkora wrote:
Oxygen Front-end styles in Gutenberg
July 16, 2021 in Custom Code, Oxygen Builder, Plugins, WordPress
You may want to display the content when editing in Gutenberg editor with your frontend Oxygen Styles included. It is possible with But the challenge is that Oxygen is creating CSS files for all your Custom Stylesheets you made inside the editor. So you propably want to include them all. That’s possible with PHP function…