Global Color Schemes Panel

Kleurenschema's

Color Schemes Gridbuilder ᵂᴾ works with color schemes for cards and facets. Color schemes allows to control main colors in one place for all your cards and facets. It is a great way to easily manage colors globally. You can set color schemes in the Global Settings panel of the plugin. Global Settings – Color…

Banner Opengraph

FAQ-ondersteuning

Support FAQ We provide one-to-one support through our ticket system, means you would get helps faster and more accurate from us. Support does not offer customization. Support is accessible to all paid customers who have active license of the plugin. We do not offer customization through our support. If you are looking for customization service, you…

Banner Opengraph

Event Lightbox geopend

Lightbox open This event is triggered before the lightbox opens. Argument Type Description item node Node opened in the lightbox [pastacode lang=”javascript” manual=”wpgb.lightbox.on(%20’open’%2C%20function(%20item%20)%20%7B%0A%09%0A%09console.log(%20’open’%2C%20item%20)%3B%0A%0A%7D%20)%3B” message=”” highlight=”” provider=”manual”/]

Banner Opengraph

Event Facet verandering

Facet change This event is triggered when a facet changes and before content is refreshed. Argument Type Description slug string Facet slug values array Facet values [pastacode lang=”javascript” manual=”wpgb.facets.on(%20’change’%2C%20function(%20slug%2C%20values%20)%20%7B%20%0A%09%0A%09%2F%2F%20We%20change%20the%20price%20range%20%0A%09if%20(%20slug%20%3D%3D%3D%20’price_range’%20)%20%7B%0A%09%09this.setParams(%20slug%20%2C%20%5B10%2C%2020%5D%20)%3B%0A%09%7D%0A%0A%7D%20)%3B” message=”” highlight=”” provider=”manual”/]

Banner Opengraph

FAQ-licentie

License FAQ Yes, you can upgrade your license at any time. You will only need to cover the price difference. You can easily manage your licenses from your account You will still be able to use Gridbuilder ᵂᴾ as usual. However you will miss direct support and latest feature updates from us if you don’t renew.…

Banner Opengraph

Event Carousel dragEnd

Carousel dragEnd This event is triggered when dragging ends. Argument Type Description event object Original event object [pastacode lang=”javascript” manual=”wpgb.carousel.on(%20’dragEnd’%2C%20function(%20index%20)%20%7B%20%0A%09%0A%09console.log(%20’dragEnd’%2C%20event%20)%3B%0A%0A%7D%20)%3B” message=”” highlight=”” provider=”manual”/]

Banner Opengraph

Event Facet renderen

Facet render This event is triggered when a facet is rendered. Argument Type Description holder node Facet HTML holder [pastacode lang=”javascript” manual=”wpgb.facets.on(%20’render’%2C%20function(%20holder%20)%20%7B%0A%09%0A%09console.log(%20’render’%2C%20holder%2C%20this.facet%20)%3B%0A%0A%7D%20)%3B” message=”” highlight=”” provider=”manual”/]

Banner Opengraph

Grid methoden

Grid methods This method allows to initialize a grid layout. It’s mainly used if you destroy() the instance. Otherwise, there isn’t any reason to init() grid layout since it’s automatically done by the plugin on load. [pastacode lang=”javascript” manual=”wpgb.grid.init()%3B” message=”” highlight=”” provider=”manual”/] You can destroy grid layout instance at any time thanks to this method.…

Banner Opengraph

Actiekaart wrapper start

/card/wrapper_start This action is fired before the HTML card wrapper start. It allows to add custom HTML before the card wrapper. Argument Type Description $card array Holds card layout (layers/blocks) definition [pastacode lang=”php” manual=”function%20prefix_card_wrapper_start(%20%24card%20)%20%7B%0A%0A%09%2F%2F%20Output%20your%20HTML%20here.%0A%0A%09%7D%0A%0Aadd_action(%20’wp_grid_builder%2Fcard%2Fwrapper_start’%2C%20’prefix_card_wrapper_start’%2C%2010%2C%201%20)%3B” message=”” highlight=”” provider=”manual”/]