qstudio
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Forms for ACF] Success Message in Modal@fabianlindfors thanks for the reply – do you have any pointers, we will take a first go at making it work – which classes do we need to work on to capture and process the form data and what are the known issues that make this complex, when leveraging ACF?
Thanks!
Forum: Plugins
In reply to: [Advanced Forms for ACF] Success Message in ModalWe’re looking for a similar solution, but would rather use AJAX to capture and complete the submission – the page reload seems unnecessary.
Is there a known solution for AJAX submissions, or an example we can see working?
Thanks!
Forum: Plugins
In reply to: [3CX Free Live Chat, Calls & Messaging] Open Chat from external TriggerBetter example:
// open chat from external trigger ## jQuery(document).on( 'click', '.open-chat', function(){ console.log( 'Clicked open chat' ); document.querySelector('call-us').shadowRoot.getElementById('wplc-chat-button').click(); });Forum: Plugins
In reply to: [3CX Free Live Chat, Calls & Messaging] Open Chat from external Trigger@throu – just bind an event to an element, using jQuery and pass the event through, like so – untested pseudo-code, but you can get it working as you need it:
jQuery( '#elementID' ).click( function(e) { document.querySelector(βcall-usβ).shadowRoot.getElementById(βwplc-chat-buttonβ).click(); });Forum: Plugins
In reply to: [AnsPress - Question and answer] ANSPRESS.IO ASK QUESTION NOT WORKINGThe main issue seems to be that the tinymce script is missing – at lease in our case:
You can fix this simply doing something like:
// assets ## \add_action( 'wp_enqueue_scripts', [ get_class(), 'wp_enqueue_script' ], 100 ); /** * Enqueue assets * * @since 4.5.0 */ public static function wp_enqueue_script(){ // enqueue tinymce script ## if ( \is_singular('question') || \is_singular('answer') ) { \wp_enqueue_script( 'wp-tinymce' ); } }- This reply was modified 5 years, 8 months ago by qstudio.
Forum: Plugins
In reply to: [Export User Data] Plugin misnamed: Export User Date?Hmm.. that’s the strangest bug we’ve had to fix before π
Thanks for the heads-up, new release should get pushed shortly!
Forum: Plugins
In reply to: [Export User Data] Saved Data fields not Saving or LoadingThe latest release might fix any problems people were having, so please feel free to update and try π
Hey – I think you might have posted this in the wrong place π
Forum: Plugins
In reply to: [3CX Free Live Chat, Calls & Messaging] Open Chat from external TriggerOk – we dug in the plugin code to find the JS trigger:
document.querySelector(‘call-us’).shadowRoot.getElementById(‘wplc-chat-button’).click();
Just some guidance on the UI styling would be good – thanks!
Forum: Plugins
In reply to: [Export User Data] Saved Data fields not Saving or Loading@charlottejo – if you don’t know how to get that data, better that we wait until someone else can provide it – it would require making changes to your site to add debugging tools.
Forum: Plugins
In reply to: [Export User Data] Saved Data fields not Saving or Loading@charlottejo – as mentioned, to help resolve this.
‘We ran additional tests on WP version 5.3.2 with EUD version 2.0.3 and the saved fields loaded correctly, without errors β so we need some additional data to locate and replicate the problem β ideally PHP error logs relating to the EUD plugin during loading of saved fields’
Forum: Plugins
In reply to: [Export User Data] Saved Data fields not Saving or LoadingWe ran additional tests on WP version 5.3.2 with EUD version 2.0.3 and the saved fields loaded correctly, without errors – so we need some additional data to locate and replicate the problem – ideally PHP error logs relating to the EUD plugin during loading of saved fields.
Forum: Plugins
In reply to: [Export User Data] Saved Data fields not Saving or LoadingThis issue might be caused by a conflict with another plugin you have installed, so you are going to need to either provide additional information, both PHP and JS console errors β also try to disable all plugins and revert to a default theme and test if the issue persists.
Forum: Plugins
In reply to: [Export User Data] Object of class WP_User could not be converted to stringThanks for your patience β we have now run some testing and cannot replicate this bug β we used the latest build of the plugin 2.0.3 and WP version 5.3.2
This issue might be caused by having no users that match the search query – please can you provide additional details about the search parameters, other debugging info or guides how to replicate.
Forum: Plugins
In reply to: [Export User Data] Saved Data fields not Saving or LoadingThanks for your patience – we have now run some testing and cannot replicate this bug – we used the latest build of the plugin 2.0.3 and WP version 5.3.2
This issue might be caused by a conflict with another plugin you have installed, so you are going to need to either provide additional information, such as JS console errors – or try to disable all plugins and revert to a default theme and test if the issue persists.