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:

Particles.js in Oxygen Builder

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

Particles.js is a lightweight JavaScript library for creating particles. Particles are used to create interactive backgrounds that respond to the mouse movements. Do you want to use it on you Oxygen website? Okay, no problem. You just need to embed the particles.js script – I will do that with the Advanced scripts plugin – and…

Continue reading

Aleš Sýkora wrote:

Custom Taxonomy Term Archive Query in Oxygen Builder

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

If you want to use advanced query builder and build the template for All taxonomy terms of one taxonomy and do not use the default query in repeater, you can do that with advanced query builder: Post_type = post type slugtax_query = arraytaxonomy = taxonomy slugfield = slugterms = [oxygen data=”terms” taxonomy=”taxonomy-slug”](optional) no_found_rows = true(optional)…

Continue reading

Aleš Sýkora wrote:

Use global colours from Oxygen Builder in CSS

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

You have defined your Global colors in Oxygen Builder and now you need use them in CSS styles? No Problem! You can use your global colors within CSS styles. Just open Settings > Global Styles > Colors, click on your colour group and you will see your colors with assigned ID’s to each of them.…

Continue reading

Aleš Sýkora wrote:

Get homepage link as a logo link in Oxygen Builder

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

Wrap your website’s logo in link wrapper and use this PHP function inside, to create the home link.

Continue reading

Aleš Sýkora wrote:

WordPress term list without links

July 1, 2021 in Custom Code, WordPress / 0 comments

If you use the_terms for list of posts taxonomy terms, then you get the list with automatically added links. Sometimes you do not need the links. Then you can use the strip_tags. Get term list with links Get term list without links Get the terms custom output

Continue reading

Aleš Sýkora wrote:

Current Year for Copyright in WordPress and Oxygen Builder

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

Today I will show you the easiest way to add a year to your Copyright information. The problem is that you don’t want to change the date every year. It’s easier to get current year with PHP. Use the PHP function date() with format Y to get current year and it will change automatically after…

Continue reading

Aleš Sýkora wrote:

Featured (sticky) posts query with Oxygen Advanced Query Builder

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

If you create custom grids with posts, you may need to display the Featured Sticky Posts in some cases. This can be done with Oxygen Builders advanced query builder for repeaters and easy posts. I will continue to add examples of queries continuously. Here is the first query: Featured (sticky) posts query If you want…

Continue reading

Aleš Sýkora wrote:

Fluent Forms maps input (usable with Toolset Maps too)

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

UPDATE! Automatic geolocation has been added to the map :). Enjoy! If you want to add map field with click to put marker function and save the GPS data, you can use the Google Maps API with Fluent Forms. You will need Google Maps API Key and plugin for custom code snippets (you can also…

Continue reading

Aleš Sýkora wrote:

Redirect non logged users to login page

June 26, 2021 in Custom Code, Oxygen Builder, Plugins, WordPress / 0 comments

Situation: Website with pages restricted only to logged in users and we do not use toolset content templates but Oxygen Builder. We are hiding the content to the non-logged in users with Oxygen conditionals but we would like to redirect user to the login page instead of displaying login form on every restricted page. Code…

Continue reading

Aleš Sýkora wrote:

Limit Toolset Form to one submission per user only

November 28, 2023 in WordPress / 2 comments

The easiest way to enable user submit only one post is to hide the form when they already submitted it. So you need to count the number of posts user created and if it is more than 1 then with conditional hide the form. Check the number of posts user created with custom function 3.…

Continue reading