First time I understood what it is for :) It also works in any widget that has centar mode Thanks
@Art-01 Жыл бұрын
Thank u for sharing. I am glad to find your channels. I hope u make videos about Croco Jetbooking and Jetappointment too. Thank u
@brunoaguilar6899 ай бұрын
hi thanks for such good content. do you know if it's possible to target the item on the left and the one on the right? and modify the position with transform and rotate? I would like to make them appear behin the item in the center
@YaronRosen Жыл бұрын
super cool! thanks 🙂
@miki_bas8 ай бұрын
מה קורה אח. מכיר אפשרות להפוך את הליסט של JET בדסקטופ במצב רגיל ובמובייל להפוך אותו לסליידר? כמובן מבלי לשכפל את הוידגט (:
@neylwalecki Жыл бұрын
Thanks! Helped me a lot ;-)
@AliAkbar-le9pu11 ай бұрын
Could you tell me how to change slider direction ltr or rtl?
@crocomentor11 ай бұрын
It's not possible within the plugin itself. We will need to add custom PHP code using the Code Snippets plugin. Here is the PHP code: add_filter( 'jet-engine/listing/grid/slider-options', function( $slider_options, $listing_settings ) { if ( false !== strpos( $listing_settings['_css_classes'] ?? '', 'slider-direction-change' ) ) { $slider_options['rtl'] = ! $slider_options['rtl']; } return $slider_options; }, 0, 2 ); Lastly, select your listing grid and give it the class name: slider-direction-change. That's it! It should work.
@maxtermiller5947 Жыл бұрын
Nice
@글집자 Жыл бұрын
thx you a lot!! WOW
@emmanuelivwighre5399 Жыл бұрын
How did you create my listing with images on it.
@crocomentor Жыл бұрын
I created a custom post type called 'Employees,' which includes two meta fields: one for images(media field) and another for names(text field). Then, I set up a dynamic listing that pulls data from these fields. This way, the listings are generated dynamically, displaying the images and names that I've added to each employee's profile