Kyle Charlton
Forum Replies Created
-
Forum: Plugins
In reply to: [Resizable Editor Sidebar] Left Sidebar Not Controlled By RES?I was looking for the same thing when I was checking out this plugin, I updated the JavaScript to work for the inspector block control (right sidebar) and the list view (left sidebar).
While it’s not as smooth on the left sidebar, it still works well for my use case.jQuery(window).ready(function(){
? ? function initResizable(selector, handle, storageKey) {
? ? ? ? setInterval(function(){
? ? ? ? ? ? let sidebar = jQuery(selector);
? ? ? ? ? ? let width = localStorage.getItem(storageKey);
? ? ? ? ? ? sidebar.width(width);
? ? ? ? ? ? // Create or update width indicator
? ? ? ? ? ? if (!sidebar.find('.sidebar-width-indicator').length) {
? ? ? ? ? ? ? ? sidebar.append('<div class="sidebar-width-indicator"></div>');
? ? ? ? ? ? }
? ? ? ? ? ? sidebar.find('.sidebar-width-indicator').text(width + 'px');
? ? ? ? ? ? sidebar.resizable({
? ? ? ? ? ? ? ? handles: handle,
? ? ? ? ? ? ? ? resize: function(event, ui) {
? ? ? ? ? ? ? ? ? ? jQuery(this).css({'left': 0});
? ? ? ? ? ? ? ? ? ? let newWidth = jQuery(this).width();
? ? ? ? ? ? ? ? ? ? localStorage.setItem(storageKey, newWidth);
? ? ? ? ? ? ? ? ? ? jQuery(this).find('.sidebar-width-indicator').text(newWidth + 'px');
? ? ? ? ? ? ? ? }
? ? ? ? ? ? });
? ? ? ? ? ? updateSidebarState();
? ? ? ? }, 500);
? ? }
? ? function updateSidebarState() {
? ? ? ? let sidebarOpen = jQuery('.interface-pinned-items button.is-pressed').length > 0;
? ? ? ? jQuery('.edit-post-layout, .edit-site-layout').toggleClass('is-sidebar-opened', sidebarOpen);
? ? ? ? jQuery('.edit-post-layout, .edit-site-layout').toggleClass('is-list-sidebar-opened', sidebarOpen);
? ? }
? ? jQuery('body').on('click', '.interface-pinned-items button', updateSidebarState);
? ? // Initialize both sidebars with independent settings
? ? initResizable('.interface-interface-skeleton__sidebar', 'w', 'fm_rs_inspector_sidebar_width');
? ? initResizable('.editor-list-view-sidebar', 'e', 'fm_rs_list_view_sidebar_width');
});Forum: Plugins
In reply to: [Site Notes] User notesHello, the plugin allows any registered user to create/update the note box from the front end of the site when they are logged in. If a user role allows them to access to the pages in the backend of the site, they can create/update the note from there as well.
Thank you for taking the time to leave a review.
It is much appreciated, have a wonderful day!Hello, that feature is only available in the Pro version
There are two language settings in WordPress, one if found under Settings, and the other is in your user profile. You should make sure both languages are set to your preferred language. You will also need to re-create your form as the language is already set to the incorrect language.
The Image CAPTCHA does not have any control over language settings, they are based off of the language set on the form itself. You can read more about Contact Form 7 language settings on the following link.
https://contactform7.com/contact-form-in-your-language/The two forms most likely set to two different languages.
Easiest way to check to inspect your page and look at the two forms to see what it shows in the “lang” attribute of the form.To change teh working Due to Sie, you would have to change your site language to Sie.
@aschoeppach, please login to https://kccomputing.net/store/checkout/purchase-history/ to download the most recent version of the pro plugin.
After additional research, I have discovered that the plugin’s translations are working correctly, it appears the issue is with Contact Form 7 itself.
After looking at the contact forms on sites with translation issues, I found that the language of the Contact Form 7 form is set to English.
To fix this, you need to re-create your form while your site’s language is set to your desired language output, this will make the contact form adopt the correct language.
After additional research, I have discovered that the plugin’s translations are working correctly, it appears the issue is with Contact Form 7 itself.
After looking at the contact forms on sites with translation issues, I found that the language of the Contact Form 7 form is set to English.
To fix this, you need to re-create your form while your site’s language is set to your desired language output, this will make the contact form adopt the correct language.
Sorry, didn’t realize I had already responded to this thread, I was on page 1 when responding.
After additional research, I have discovered that the plugin’s translations are working correctly, it appears the issue is with Contact Form 7 itself.
After looking at the contact forms on sites with translation issues, I found that the language of the Contact Form 7 form is set to English.
To fix this, you need to re-create your form while your site’s language is set to your desired language output, this will make the contact form adopt the correct language.
After additional research, I have discovered that the plugin’s translations are working correctly, it appears the issue is with Contact Form 7 itself.
After looking at the contact forms on sites with translation issues, I found that the language of the Contact Form 7 form is set to English.
To fix this, you need to re-create your form while your site’s language is set to your desired language output, this will make the contact form adopt the correct language.
Hi,
After looking at your site, it appears that the contact form 7 form’s language is set to English. To fix this, you need to create a new form while your site’s language is set to Italian so that the form adopts the sites language.In my tests, I do see that the plugin does translate correctly so long as the correct language is set in the HTML
lang
attribute of either the HTML tag or the FORM tag holding the contact form. The FORM tag overrides the HTML tag.
For anyone who is experiencing this issue, please provide the following details.- What is your domain (so I can look at your
lang
attributes) - What is your language set to (exactly as shown in language selection box in settings)
- Is your site a multi-lingual site or a single language site
- Are you using any translation plugins?
The translations were working at one point, I’m not sure if this is an issue affecting all sites or just a few, but I believe it has to do with a change to Contact Form 7 itself. I am looking into ways to offset the issues, but it is difficult without interfering with other language plugins.
Hi,
I am still investigating this issue.
It’s very unusual as I have followed all of the documentation.
Are all of your sites multi-lingual or just a single language site? - What is your domain (so I can look at your