tony
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
How to include the wordpress post attributes for 0rder in a Cred form
Iniciado por: tony en: Toolset Professional Support |
|
3 | 10 | hace 2 años, 4 meses | |
Views -Select posts in a relationship that are related to any of multiple values
Iniciado por: tony en: Toolset Professional Support |
|
2 | 5 | hace 5 años | |
functions php on line 4609
Iniciado por: tony
en: Toolset Professional Support
Problem: Solution: The user was able to fix it following this article https://www.kevinleary.net/wordpress-ob_end_flush-error-fix/ By adding the following code to theme's functions.php /** * Proper ob_end_flush() for all levels * * This replaces the WordPress `wp_ob_end_flush_all()` function * with a replacement that doesn't cause PHP notices. */ remove_action( 'shutdown', 'wp_ob_end_flush_all', 1 ); add_action( 'shutdown', function() { while ( @ob_end_flush() ); } ); |
|
2 | 6 | hace 5 años, 1 mes | |
Modal display of post form parent selection not working
1
2
Iniciado por: tony
en: Toolset Professional Support
Problem: isplay a post form to create a post, in a Bootstrap modal, Solution: It is the same probelm as the select2 document: And can be fixed with JS codes: jQuery(document).on( 'cred_form_ready', function($) { // ALL YOUR CRED form JS code goes here. Add your JS code here jQuery.fn.modal.Constructor.prototype.enforceFocus = function() {} }); Relevant Documentation: |
|
3 | 26 | hace 5 años, 3 meses |