Category: WordPress
With 208 articles also related to:
Aleš Sýkora wrote:
WooCommerce Add to cart message position in Oxygen Builder
November 28, 2023 in Custom Code, Plugins, WooCommerce, WordPress
Need to change the position of WooCommerce Notice bar on single product template in Oxygen Builder? I mean this WooCommerce notice after add to cart: It’s simple. You just need to add the text block with PHP dynamic data value or code block. As PHP function, use this code: I would suggest using the code…
Aleš Sýkora wrote:
Global $product cause Oxygen does not refresh CSS
September 20, 2022 in Custom Code, Oxygen Builder, Plugins, WordPress
The issue is related to the custom PHP functions being used the Repeaters in WooCommerce templates. Within the custom functions, after you call global $product, you need to wrap the rest of the function in an if($product) { …do stuff here } statement. This will prevent the AJAX errors. Also do not use Global $product…
Aleš Sýkora wrote:
Add Accessibility to the Oxygen Tabs
November 28, 2023 in Custom Code, Oxygen Builder, Plugins, WordPress
This snippet is currently under development. I found it working only in MS Edge browser. If you want to use Tabs element and make your site accessible with keyboard, then you should be worried about this element. By default, you cannot make this element accessible by keyboard. But no worries, I gotchu! This code made…
Aleš Sýkora wrote:
Display only parent categories in WordPress
September 14, 2022 in Custom Code, WordPress
If you want to list all Post Categories in WordPress without displaying the child categories, then you must use parent = 0 in the query. Here is the example which display the category links wrapped by the DIV.
Aleš Sýkora wrote:
Sticky Post badge in Oxygen builder Repeater
November 28, 2023 in Custom Code, Oxygen Builder, Plugins, WordPress
If you want to display badge over your posts displayed within Oxygen Builder Repeater element in WordPress, than I hope I have a solution for you. Set the post to be sticky (featured) in the Gutenberg editor: Add Sticky (Featured) post badge to repeater Add a div to your post container inside the repeater. Then…
Aleš Sýkora wrote:
Add WooCommerce Sold Out Badge in Oxygen Builder
November 28, 2023 in Custom Code, Oxygen Builder, Plugins, WooCommerce, WordPress
Learn how to add Sold Out badge within WooCommerce Oxygen integration.
Aleš Sýkora wrote:
Inline SVG bottom padding in Oxygen Code Block
November 28, 2023 in Custom Code, Oxygen Builder, Plugins, WordPress
If you use the SVG file inline in Oxygen Builder Code Block element, you may encounter a little padding at the bottom of your code block. To fix this issue, just add this to your custom CSS stylesheet: Your problem should be fixed :-)
Aleš Sýkora wrote:
WP Grid Builder Map Facet with Oxygen Repeater element and Custom Map Marker content
November 28, 2023 in Oxygen Builder, Plugins, WordPress, WP Grid Builder
Build your own Map which displays your posts and filter with geolocation.
Aleš Sýkora wrote:
Display post categories without links in Oxygen builder
August 25, 2022 in Custom Code, Oxygen Builder, Plugins, WordPress
If you want display post categories without the links in repeater or in post page without link to the category archive, you can use the code below. If you want to change the separator, change this: To whatever you want… for example: If you need to use this code on more than one page, I…
Aleš Sýkora wrote:
Display Oxygen Reusable part or template with PHP code
May 29, 2024 in Custom Code, Oxygen Builder, Plugins, WordPress
If you want to have your website semantic and use lot of custom code, sometimes you need to add Oxygen part into your custom PHP (for example in code block). How to display Oxygen Parts with PHP? Just use this small echo code and change the 478 to your template or reusable part ID. UPDATE…