Latest news from Great-tit

I firmly believe that sharing knowledge is the key to mutual growth and development. Each article and guide I write is the result of countless hours of intense research and the unwavering passion I pour into it. Your support enables me to continue creating high-quality, informative, and engaging WordPress resources that empower you on your journey.

Published articles related to:

Aleš Sýkora wrote:

Translate Step status in multistep Fluent Form

November 28, 2023 in Custom Code, Fluent Forms, Plugins, WordPress / 0 comments

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:

Continue reading

Aleš Sýkora wrote:

How to set scroll to the top with jQuery on click button

September 14, 2021 in Custom Code, WordPress / 0 comments

Create a button and set an ID to it. Then change the #submitButton in code below to your button ID and save. In Oxygen Builder, you can use a code block for this Javascript.

Continue reading

Aleš Sýkora wrote:

How to ignore sticky posts in Oxygen repeater?

November 28, 2023 in WordPress / 0 comments

If you create WordPress query with Oxygen Builder’s repeater element, then you propably want to ignore sticky posts sometimes. This is how you can do that with advanced query builder. You have two options of ignoring sticky posts: Ignore them from display pinned on the top, but display them in results of queryDo not display…

Continue reading

Aleš Sýkora wrote:

Oxygen Pro Menu menu selector – workaround fix on multisite

November 28, 2023 in Oxygen Builder, Plugins, WordPress / 0 comments

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…

Continue reading

Aleš Sýkora wrote:

How to use Animate On Scroll Library with Oxygen Builder

November 28, 2023 in WordPress / 0 comments

Animate on scroll library (AOS) is easy to use CSS driven on scroll animation library. Plugin logic is in .JS, animations in .CSS. You can read more about AOS on CSS tricks and of course on AOS on GitHub. UPDATE: I found this is already included in oxygen LOL :-D. You need to go to…

Continue reading

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 / 27 comments

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…

Continue reading

Aleš Sýkora wrote:

Oxygen Repeater Pagination not working on homepage

July 20, 2021 in Custom Code, Oxygen Builder, Plugins, WordPress / 3 comments

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…

Continue reading

Aleš Sýkora wrote:

Oxygen Front-end styles in Gutenberg

July 16, 2021 in Custom Code, Oxygen Builder, Plugins, WordPress / 2 comments

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…

Continue reading

Aleš Sýkora wrote:

Oxygen’s Number Counter tricks – Dynamic data, speed and more

November 28, 2023 in Oxygen Builder, Plugins, WordPress / 2 comments

All tips should be working for both Number Counter composite element and Circle Number Counter composite element in Oxygen Builder for WordPress. Using Dynamic Data in Number Counter Using the Number Counter from Oxygen Builder’s composite elements is cool until you need to use the dynamic data. When you add dynamic data source, span is…

Continue reading

Aleš Sýkora wrote:

ACF Masonry Left to right ordered Gallery in Oxygen Builder /w Colcade

November 28, 2023 in Custom Code, Oxygen Builder, Plugins, WordPress / 6 comments

Would you like to use ACF masonry gallery with left to right flow of images? Good, let’s do that! But at first, why not to use standard Gallery module in Oxygen Builder? The problem with Oxygen Masonry gallery The main problem is ordering of images. Standard masonry layout is made by Flexbox columns. So Your…

Continue reading