Marco Panichi
Forum Replies Created
-
I figured out where the problem was: on Windows 10, I had animations disabled, and the plugin respects that setting.
See screenshot: https://i2.paste.pics/80d1092ef059e3df2b10e5a3fb0a8778.png?rand=gq2CyLUpXw
So it’s all good now.
Forum: Themes and Templates
In reply to: [Neve] Can’t delete WidgetsHi, thank you for the quick and kind response 🙂
Unfortunally I didn’t discover the cause of the problem.
So I have reinstalled EVERYTHING and now is working correctly. It was really weird!
Forum: Plugins
In reply to: [Social Feed Gallery] Error: rest_no_routeHi, I haven’t received a response yet, should I organize myself with another plugin?
Forum: Plugins
In reply to: [LiteSpeed Cache] .pid file inside wp-adminThank you
Forum: Plugins
In reply to: [Social Feed Gallery] Error: rest_no_routeHi, I haven’t received a reply at the moment; can you please check?
(I only received a ticket received notification from the email [email protected])
Forum: Plugins
In reply to: [Social Feed Gallery] Error: rest_no_routeOk I did it
Ok thank you
Forum: Plugins
In reply to: [Custom HTML Block Extension] Possible bug when Gutenberg is disabledWorkaround: I’ve hidden editor when visual is displayed, with this code into functions.php
add_action( 'admin_head', 'theme_admin_css' ); function theme_admin_css() { echo '<style> #mceu_24:not([style*="display: none"]) + .wp-editor-area + #monaco-editor-container { display: none; } </style>'; }I solved, client side, using jQuery.
This is the structure of the code I used, I hope it helps someone:
add_action('wp_footer', 'my_custom_select'); function my_custom_select() { $posts = new WP_Query(array( ... )); $options = ''; if( $posts->have_posts() ) { while( $posts->have_posts() ) { $posts->the_post(); $options .= "field.append($('<option>').attr('value', '".get_the_ID()."').text(\"".get_the_title()."\"))\r\n"; } } wp_reset_postdata(); echo "<script type='text/javascript'> jQuery(document).ready(function($) { var field = $('#my_custom_select'); field.empty(); field.append($('<option>').attr('value', '-1').text(\"- select -\")) $options }); </script>"; } }Same problem here :/
Thank you very much!
If it helps anyone, here is the list of tweaks options
file_editor => boolean true disable_xmlrpc => string (6) "enable" allow_xmlrpc_multiauth => boolean false rest_api => string (14) "default-access" valid_user_login_type => string (4) "both" force_unique_nicename => boolean false disable_unused_author_pages => boolean false- This reply was modified 3 years, 4 months ago by Marco Panichi.
- This reply was modified 3 years, 4 months ago by Marco Panichi.
Forum: Requests and Feedback
In reply to: Gutemberg in support forum!? UGLY!Thank you.
Yes! Did.
No, I solved, but I don’t remember how :/ Maybe I’ve just set everything again and then everything gone ok
Hi Maybellyne,
I don’t have any cache plugin; I’ve tried to deactivate and reactivate the plugin but the problem persists, see https://i2.paste.pics/e7d9e020567d5cd5ff62f09855384c6e.png
- This reply was modified 4 years, 1 month ago by Marco Panichi.