Пікірлер
@sm0k1ngsku1l
@sm0k1ngsku1l 15 сағат бұрын
Great video! I followed every detail but it doesn't work for me sadly
@sunilpawar26
@sunilpawar26 Күн бұрын
WYSIWYG text editor not showing in front end. And solutions?
@nizamettinaksu
@nizamettinaksu 2 күн бұрын
This is a very clever solution, thank you. I thought a lot about how I could do this at the time.
@techbygul3303
@techbygul3303 10 күн бұрын
Thanks ❤
@user-oh9mi7qb5n
@user-oh9mi7qb5n 12 күн бұрын
hello. Thank you for the great video introduction. Thanks to you, I learned for the first time that I am automatically registered on some foreign sites just by signing up with an email. thank you Can you tell me how to log in by entering my email address or name, that is, without a password?
@mw1076
@mw1076 13 күн бұрын
Can I use API on my localhost? I am working with xampp.
@MoxetKhanPK
@MoxetKhanPK 12 күн бұрын
Yes you can use, you must have internet
@mw1076
@mw1076 12 күн бұрын
@@MoxetKhanPK I am working with WordPress. And in WordPress its url in localhost is http, but API is actually sending in https. Therefore it generates an error. How can I overcome such issue?
@Derek-qd7dk
@Derek-qd7dk 13 күн бұрын
Hello, is it now possible to add pagination to a listing grid that retrieves information from an API? If so, could you please teach us how to implement it?
@MoxetKhanPK
@MoxetKhanPK 13 күн бұрын
Yes possible, use this code softemblems.com/pagination-for-rest-api-sql-based-listing-in-jetengine/
@matthieudondey8844
@matthieudondey8844 15 күн бұрын
Hi Moxet, thank you so much for your video. I'm still quite new to jet-engine. For several of my clients, I have a "numbers section" and I usually create an Options page with Jet Engine. But using a google sheet would be perfect! What would you recommend if I don't want a table but just a few numbers? Would it be possible to do Google Sheet -> Options -> Elementor display? (sorry if this is a stupid question 😅😅)
@rogersilvabkd
@rogersilvabkd 16 күн бұрын
Hello Moxet Khan On this occasion, I would like to thank you for the excellent content as it is helping me build a ticket system! I would like to know if there is any way to change a user's profile on the front end (from subscriber to publisher) in a listing, I created a user profile metabox I see the list in the meta box but I can't save the change through the listing!
@MoxetKhanPK
@MoxetKhanPK 16 күн бұрын
You mean change the role of the user, yes you can do that using hooks. You need to display all roles in a drop down for the current user in listing, upon submitting the form the user role should be change via hook.
@ryaplier7139
@ryaplier7139 16 күн бұрын
Hi, is there any way for users to do this by typing in the display_name instead of manually selecting it? also, is there a way for the display_name to generate dynamically based on the user being an author from a custom post type? btw video was really helpful
@MoxetKhanPK
@MoxetKhanPK 16 күн бұрын
You can use select2 plugin of jquery to type display name.
@kamalelboustani4550
@kamalelboustani4550 17 күн бұрын
Thanks Abdul muqsit for this video. Can you share the link to your gig? I can't find it on the website
@MoxetKhanPK
@MoxetKhanPK 16 күн бұрын
www.fiverr.com/s/rE3bXAP
@AnthonyTilahun
@AnthonyTilahun 17 күн бұрын
Why don't you link to postman?
@MoxetKhanPK
@MoxetKhanPK 17 күн бұрын
Why should i do?
@AnthonyTilahun
@AnthonyTilahun 17 күн бұрын
@@MoxetKhanPK Not to your post man link but just to the url itself, it would be helpful to those that are just beginning.
@MoxetKhanPK
@MoxetKhanPK 16 күн бұрын
@@AnthonyTilahun the video is not about postman
@user-te1oi7pg6x
@user-te1oi7pg6x 18 күн бұрын
Hello Sir! Do we need to add 'post_' before each meta variable?
@MoxetKhanPK
@MoxetKhanPK 17 күн бұрын
Nope
@dmitriyklinkov9199
@dmitriyklinkov9199 18 күн бұрын
Hi, when you add second part for extend functionality?
@popopp2297
@popopp2297 21 күн бұрын
It's been a year since this video was created. Can we now add a CCT from a form on the frontend?
@vukasincolic2657
@vukasincolic2657 23 күн бұрын
function get_post_views($postID){ $count_key = 'post_views_count'; $count = get_post_meta($postID, $count_key, true); if($count==''){ delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, '0'); return "0"; } return $count; } function set_post_views($postID) { $count_key = 'post_views_count'; $count = get_post_meta($postID, $count_key, true); if($count==''){ $count = 0; delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, '0'); }else{ $count++; update_post_meta($postID, $count_key, $count); } } function post_views_shortcode($atts) { global $post; $atts = shortcode_atts( array( 'icon_url' => '', ), $atts, 'post_views' ); $post_views = get_post_views($post->ID); ob_start(); ?> <div class="post-views-wrapper"> <?php if ($atts['icon_url']) : ?> <img src="<?php echo esc_url($atts['icon_url']); ?>" alt="Views Icon" class="post-views-icon"> <?php endif; ?> <span class="post-views-counter"><?php echo $post_views; ?></span> <span class="post-views-label">Views</span> </div> <?php return ob_get_clean(); } add_shortcode('post_views', 'post_views_shortcode'); function track_post_views ($post_id) { if (!is_single()) return; if (empty ($post_id)) { global $post; $post_id = $post->ID; } set_post_views($post_id); } add_action( 'wp_head', 'track_post_views'); this is the easy solution with just PHP, register short code: [post_views icon_url="ICON-URL"] u have classes do some CSS and there u go
@mahdiandalib186
@mahdiandalib186 23 күн бұрын
thx man, plz teach us how to create crm like this using jetengine
@user-bc7sr7bb9c
@user-bc7sr7bb9c 25 күн бұрын
Hi thank you very much, can the code also update cct?
@MoxetKhanPK
@MoxetKhanPK 25 күн бұрын
Yes but there is a bit differences in code
@user-bc7sr7bb9c
@user-bc7sr7bb9c 22 күн бұрын
@@MoxetKhanPK Can you help me with this, please?
@visualmodo
@visualmodo 26 күн бұрын
Truly good content :)))
@naabigaabdoulrazak1959
@naabigaabdoulrazak1959 27 күн бұрын
Thank you, Brother Moxet, for sharing your valuable experience. I greatly appreciate the opportunity to learn from you.
@jernias637
@jernias637 27 күн бұрын
Hey Abdul Moxet. Thank you for the great video, love your contents. I have a question; is it possible to do it for custom content types? I created a messaging system similiar to whatsapp by your videos. Basically, I created a post for chat and cct for messages. I want to inform users for not read messages.
@DipeshSharma93
@DipeshSharma93 29 күн бұрын
Hi, Is it possible to show or print CPT details as a PDF from the front-end? Like, we usually get options on different websites such as "Print as PDF".
@MoxetKhanPK
@MoxetKhanPK 29 күн бұрын
Yes, you can use JFB new add on as well as <script> jQuery(document).ready(function($) { }); </script> <script> jQuery(document).ready(function($) { }); </script>
@DipeshSharma93
@DipeshSharma93 29 күн бұрын
Thank you for the quick response. I tried this but it does open the PDF only when we submit a new form, but here my requirement is open the PDF only when the user click the button “Print PDF” within the single CPT page from front-end. Is it possible?
@MoxetKhanPK
@MoxetKhanPK 29 күн бұрын
@@DipeshSharma93 send me request on fiverr
@faromazjafarov7251
@faromazjafarov7251 Ай бұрын
Salom bro ! really BIG TNX ! Insholo
@lwifunyomangula
@lwifunyomangula Ай бұрын
Nice... Is it possible to allow user to choose/map column before importing... And also allows them to see number imported n other summary
@MoxetKhanPK
@MoxetKhanPK Ай бұрын
Everything is possible
@razakahmad12
@razakahmad12 Ай бұрын
<3
@fkborhan5252
@fkborhan5252 Ай бұрын
Please sir, make a tutorial jet form builder pdf attachment tutorial in details. 🙂
@abdelouahadelhaddadi5990
@abdelouahadelhaddadi5990 Ай бұрын
Please, Can digital products be protected with a license?
@ramadianlaksana8792
@ramadianlaksana8792 Ай бұрын
Can u made a tutorial view more gallery with jet gallery by crocoblock?
@zakariaboulouarde4591
@zakariaboulouarde4591 Ай бұрын
Thank you so much for all these informations and great tutos. Wanna just ask what if I have an Api with querys and wanna get the queries from user in user interface (text field) and then send the request with these queries to get the responses? Is it possible
@zakariaboulouarde4591
@zakariaboulouarde4591 Ай бұрын
Thank you so much for this tutorial, wanna just ask if we can add an image from a url to the table? Thank you
@MoxetKhanPK
@MoxetKhanPK Ай бұрын
Yes you can show it through images, "images": [ { "id": 795, "date_created": "2017-03-23T14:03:08", "date_created_gmt": "2017-03-23T20:03:08", "date_modified": "2017-03-23T14:03:08", "date_modified_gmt": "2017-03-23T20:03:08", "src": "example.com/wp-content/uploads/2017/03/T_4_front-11.jpg", "name": "", "alt": "" },
@Iron_cryptus
@Iron_cryptus Ай бұрын
Wow! So esay, but jetengine tax allows to insert meta like images or icons, im trying to find a way to insert an image meta to the taxonomy but by now it’s impossible for me. 😢
@rafstudio25
@rafstudio25 Ай бұрын
I am very happy to find your KZbin, it is very inspiring for me. Can you make a tutorial about exporting data using JetEngine? like you made a tutorial about tickets. Thank You
@MoxetKhanPK
@MoxetKhanPK Ай бұрын
Hello, you can use the same table to export data from jetengine, if you have CPT or CCT display them in this table and put export buttons.
@mundoposdigital7950
@mundoposdigital7950 Ай бұрын
Cool!!! Wonderful, I managed to make a Chat..... Thank you - Congratulations
@ssaikat200
@ssaikat200 Ай бұрын
how to set the thumbnail image?
@gamersgame5515
@gamersgame5515 Ай бұрын
Error show: The content area was not found at Dashboard page... What should I do now?
@AlejandroLopez-dz4xn
@AlejandroLopez-dz4xn Ай бұрын
Thank you for your tutorial, but i believe your are missing an important thing, lets say you need to load a big chunk of data, how would you do it? as far as i understand, here you explain how to do it one by one, but when you have loads and loads of rows, this example its not really a good idea, is it?
@MoxetKhanPK
@MoxetKhanPK Ай бұрын
I know that, two solutions- the trigger should be changed to save and the code must be alter as well. Alternatively use free plugin if data is a lot.
@daveswitzerland4442
@daveswitzerland4442 Ай бұрын
Thank you!
@alfredorojas6598
@alfredorojas6598 Ай бұрын
Esta genial el video, muy claro y funcional, lástima que no pueda generar una página de detalle con la API de tercero me extraña que el plugin deje hacer un listado y no página de detalle, no tiene sentido, es decir, te quedas a medio camino. Incluso intenté hacer un filtro con smartFilters del mismo Jet, pero tampoco cruza la info, es una lástima siendo un plugin tan potente, se quede a medias :/
@arielsegovia2313
@arielsegovia2313 Ай бұрын
Hello, I generated a formula to add 20% to a value but since it is not typed and it is a calculation, it does not take the update, that is, the value is never sent to the CPT, I tried typing a value in that box and there it is Send correctly, any idea what it could be?
@MoxetKhanPK
@MoxetKhanPK Ай бұрын
You need to change the trigger from change to save i guess.
@juancarlosrodriguez5022
@juancarlosrodriguez5022 Ай бұрын
Moxet Khan, thanks a lot for your tutorial. I just finished implementing a comment system on a client's website, following your instructions. Best regards.
@MoxetKhanPK
@MoxetKhanPK Ай бұрын
I am happy that this video help you, always welcome
@juancarlosrodriguez5022
@juancarlosrodriguez5022 Ай бұрын
@@MoxetKhanPK Thanks a lot, really. God bless.
@Website-Developer
@Website-Developer Ай бұрын
Always like your stuff, but I would like a counter for posts published by users based on user roles and CPTs i.e. I have cpt1, cpt2, cpt3, cpt4 and a user role is assigned to each CPT such as user-role1 publishes to cpt1, user-role2 publishes to cpt2, user-role3 publishes to cpt3, user-role4 publishes to cpt4. Each member at their levels would then know how many posts they have published.
@MoxetKhanPK
@MoxetKhanPK Ай бұрын
You can create query for that, select all posts from cpt1 and display the query result count of that query to user-role1 only. same goes for the rest.
@Website-Developer
@Website-Developer Ай бұрын
@@MoxetKhanPK Thank you, and what if I have 10 users with user-role1? Will it determine how many posts each user has?
@MoxetKhanPK
@MoxetKhanPK Ай бұрын
@@Website-Developer yes it will determine
@Website-Developer
@Website-Developer Ай бұрын
@@MoxetKhanPK So I am assuming the each user role would need to have its own template as one template can not be used for all user roles correct?
@MoxetKhanPK
@MoxetKhanPK Ай бұрын
@@Website-Developer It can be used for multiple user role as well.
@paulolimajr
@paulolimajr Ай бұрын
Amazing functions. thanks for share. 🤯🤯🤯🤯🤯
@juancarlosrodriguez5022
@juancarlosrodriguez5022 Ай бұрын
Moxet Khan, your tutorials are amazing. You're one of the best KZbinrs I've seen, in topics related to Crocoblock, which is a tool I use frequently. Best regards and thank you for everything you do.
@roomaver
@roomaver Ай бұрын
your code not work for me, but this work good "// Функция для увеличения счетчика просмотров function increment_post_view_count() { if (is_singular('obyavlenie')) { $post_id = get_the_ID(); // Получаем текущее значение счетчика просмотров $meta_values = get_post_meta($post_id, 'post-count', true); // Увеличиваем значение на 1 $v2 = (int)$meta_values + 1; // Обновляем метаполе update_post_meta($post_id, 'post-count', $v2); } } // Хук на загрузку поста для увеличения счетчика add_action('wp', 'increment_post_view_count'); " but thank u bro for idea
@shlomibados3357
@shlomibados3357 Ай бұрын
amazing!! helps me a lot! do you know if there is any way that i can do the same but add item to jetEngine Glossary?
@MoxetKhanPK
@MoxetKhanPK Ай бұрын
Glossaries are stored in serialize PHP and a bit difficult to insert from front-end
@aniket4572
@aniket4572 Ай бұрын
How did you knew that ID was 2? 41:35
@MoxetKhanPK
@MoxetKhanPK Ай бұрын
Mouse hover, or click on it will show in url
@aniket4572
@aniket4572 Ай бұрын
Yes got it Mine was 70 idk how😂
@MoxetKhanPK
@MoxetKhanPK Ай бұрын
@@aniket4572 learn basics first..
@manishbunkar8266
@manishbunkar8266 Ай бұрын
Aapka Instagram I'd name Aap apne about section main Instagram id share kare 🎉🎉
@juliangomezacevedo4657
@juliangomezacevedo4657 Ай бұрын
I love your tutorials, do you think is possible to do it with cct? maybe some advise on how to do it? thanks!
@MoxetKhanPK
@MoxetKhanPK Ай бұрын
Thank you, it has same concept, CCT also provides endpoints.
@ikechiude
@ikechiude Ай бұрын
I made a single post page and want to filter by ID to display a single post using WordPress REST API but it's not working. All the posts are displayed even when I enter the filter.😥
@MoxetKhanPK
@MoxetKhanPK Ай бұрын
Unfortunatily most of the API does'nt support filteration with ID.
@mayurkurhade5400
@mayurkurhade5400 Ай бұрын
Hi, can we setup custom success messages for verification upon redirecting to dashboard. Like "thanks, your account is now verified"?
@MoxetKhanPK
@MoxetKhanPK Ай бұрын
So at 7:22 you ll see in URL we have a variable of status=success You can insert a heading with the text you want, goto dynamic visibility and choose if== dynamic data > query variable or query parameter status == success show heading otherwise hide.
@mayurkurhade5400
@mayurkurhade5400 Ай бұрын
@@MoxetKhanPK thanks but I did not find "if== dynamic data > query variable or query parameter status == success"
@MoxetKhanPK
@MoxetKhanPK Ай бұрын
@@mayurkurhade5400 i gave you direction, search for dynamic visilbity