Title: ScriptsTown's Replies - page 4 | WordPress.org

---

# ScriptsTown

  [  ](https://wordpress.org/support/users/scriptstown/)

 *   [Profile](https://wordpress.org/support/users/scriptstown/)
 *   [Topics Started](https://wordpress.org/support/users/scriptstown/topics/)
 *   [Replies Created](https://wordpress.org/support/users/scriptstown/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/scriptstown/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/scriptstown/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/scriptstown/engagements/)
 *   [Favorites](https://wordpress.org/support/users/scriptstown/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 46 through 60 (of 146 total)

[←](https://wordpress.org/support/users/scriptstown/replies/page/3/?output_format=md)
[1](https://wordpress.org/support/users/scriptstown/replies/?output_format=md) [2](https://wordpress.org/support/users/scriptstown/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/scriptstown/replies/page/3/?output_format=md)
4 [5](https://wordpress.org/support/users/scriptstown/replies/page/5/?output_format=md)…
[8](https://wordpress.org/support/users/scriptstown/replies/page/8/?output_format=md)
[9](https://wordpress.org/support/users/scriptstown/replies/page/9/?output_format=md)
[10](https://wordpress.org/support/users/scriptstown/replies/page/10/?output_format=md)
[→](https://wordpress.org/support/users/scriptstown/replies/page/5/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[PressBook Grid Blogs] Sidebar issue by activity stream](https://wordpress.org/support/topic/sidebar-issue-by-activity-stream/)
 *  Theme Author [ScriptsTown](https://wordpress.org/support/users/scriptstown/)
 * (@scriptstown)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/sidebar-issue-by-activity-stream/#post-16697802)
 * Do you mean the Youtube video (iframe)?
 * This requires some additional class around the iframe (Youtube embed) and its
   not simple to fix it. Currently, there is just a generic paragraph parent element
   around the iframe. So, I can’t provide you CSS fix since there is no specific
   class to target the elements.
 * I’m not sure if you can follow this but in your block editor, you can add an 
   additional CSS class to any block element like iframe (embed), paragraph, etc.
    1. Add an additional CSS class to **iframe (Youtube video embed)** block, Let’s
       call it: **u-youtube-iframe**
    2. Add an additional CSS class to the **parent element** of iframe, that is a **
       paragraph** block, Let’s call it: **u-parent-iframe**
    3. After adding above classes, the CSS that would hide those black top and bottom
       borders would be:
 *     ```wp-block-code
       .u-parent-iframe {
         position: relative;
         padding-bottom: 56.25%;
         height: 0;
       }
   
       .u-parent-iframe .u-youtube-iframe {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[PressBook Grid Blogs] Sidebar issue by activity stream](https://wordpress.org/support/topic/sidebar-issue-by-activity-stream/)
 *  Theme Author [ScriptsTown](https://wordpress.org/support/users/scriptstown/)
 * (@scriptstown)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/sidebar-issue-by-activity-stream/#post-16697738)
 * The CSS code was meant for images. I’m not sure which video you are referring
   to. You can adjust the code to include all HTML video tag as well like this.
 *     ```wp-block-code
       .youzify .activity-content img, .youzify .activity-content video { height: auto; }
       ```
   
 * This is unrelated to our theme. These elements are output by plugin, so the CSS
   for these specific elements should also come from plugin.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[PressBook Grid Blogs] Sidebar issue by activity stream](https://wordpress.org/support/topic/sidebar-issue-by-activity-stream/)
 *  Theme Author [ScriptsTown](https://wordpress.org/support/users/scriptstown/)
 * (@scriptstown)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/sidebar-issue-by-activity-stream/#post-16697663)
 * I remember we have already discussed on stretched image issue. You can read: 
   [this](https://wordpress.org/support/topic/excepts-on-frontpage/#post-16192712)
   and [this](https://wordpress.org/support/topic/excepts-on-frontpage/page/2/#post-16207186).
 * It’s a separate issue due to plugin styling the images with height 100%. I suggested
   you the following CSS code previously:
 *     ```wp-block-code
       .youzify .activity-content img { height: auto; }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[PressBook Grid Blogs] Sidebar issue by activity stream](https://wordpress.org/support/topic/sidebar-issue-by-activity-stream/)
 *  Theme Author [ScriptsTown](https://wordpress.org/support/users/scriptstown/)
 * (@scriptstown)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/sidebar-issue-by-activity-stream/#post-16697565)
 * Hi,
 * All content including the sidebar inside “activity” page is coming from the plugin.
 * You can set a page template to see this, edit the page and on the right side 
   of the page editor screen, set **“Template”** to something else like **“Page 
   with sidebar”**.
 * This way, you will notice the sidebar that is from the theme is different than
   the current sidebar (from the plugin).
 * Currently, it is set to **“Default template”**. Means, no sidebar.
 * Lastly, if you look at the overall HTML for the activity page:
 *     ```wp-block-code
       <div class="youzify-right-sidebar-layout">
   
         <div class="youzify-main-column"> ... </div>
   
         <div class="youzify-sidebar-column youzify-sidebar youzify-right-sidebar"> ... </div>
   
       </div>
       ```
   
 * You can clearly see the sidebar and this layout (page content) is coming from
   the plugin. So, the page content itself outputs the main area and sidebar.
 * That is not a sidebar from the theme, hence why it looks different.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dark Mode Toggle] Toggle Filters](https://wordpress.org/support/topic/toggle-filters/)
 *  Plugin Author [ScriptsTown](https://wordpress.org/support/users/scriptstown/)
 * (@scriptstown)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/toggle-filters/#post-16680193)
 * I would appreciate if you could share your experience by [leaving a review](https://wordpress.org/support/plugin/dark-mode-toggle/reviews/#new-post):
 * Many thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dark Mode Toggle] Toggle Filters](https://wordpress.org/support/topic/toggle-filters/)
 *  Plugin Author [ScriptsTown](https://wordpress.org/support/users/scriptstown/)
 * (@scriptstown)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/toggle-filters/#post-16680188)
 * Our plugin works differently than other dark mode plugins. So, its easy to fix
   things and it is compatible with most of the themes.
 * I have updated the documentation guide to make it more clear about this.
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dark Mode Toggle] Toggle Filters](https://wordpress.org/support/topic/toggle-filters/)
 *  Plugin Author [ScriptsTown](https://wordpress.org/support/users/scriptstown/)
 * (@scriptstown)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/toggle-filters/#post-16680164)
 * You can remove those “dmt-filter-0” classes from images and use this CSS globally(
   Customize > Additional CSS):
 *     ```wp-block-code
       .darkmode--activated .dmt-filter-1 img {
           filter: invert(0) !important;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dark Mode Toggle] Toggle Filters](https://wordpress.org/support/topic/toggle-filters/)
 *  Plugin Author [ScriptsTown](https://wordpress.org/support/users/scriptstown/)
 * (@scriptstown)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/toggle-filters/#post-16680152)
 * Hello [@schulz](https://wordpress.org/support/users/schulz/),
 * Could you share the website page URL where you have to apply “dmt-filter-0” classs
   to the images?
 * I can provide you a simple CSS rule, so you don’t have to apply this class to
   each images.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dark Mode Toggle] Required ARIA attributes must be provided](https://wordpress.org/support/topic/required-aria-attributes-must-be-provided/)
 *  Plugin Author [ScriptsTown](https://wordpress.org/support/users/scriptstown/)
 * (@scriptstown)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/required-aria-attributes-must-be-provided/#post-16673534)
 * Hello [@wordpressagentur](https://wordpress.org/support/users/wordpressagentur/),
 * Thanks for letting us know about this issue.
 * We have fixed this issue related to ARIA attribute missing in version 1.2.4. 
   So, you can update the plugin to version 1.2.4.
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Database error in Multisite with version 20.5](https://wordpress.org/support/topic/database-error-in-multisite-with-version-20-5/)
 *  Thread Starter [ScriptsTown](https://wordpress.org/support/users/scriptstown/)
 * (@scriptstown)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/database-error-in-multisite-with-version-20-5/#post-16671512)
 * The issue remains after I have gone through these steps in Multisite.
 * There’s another recent [support thread](https://wordpress.org/support/topic/wordpress-database-error-wpcq-users-table-missing/)
   with this same error in version 20.5 (in Multisite only).
    -  This reply was modified 3 years, 2 months ago by [ScriptsTown](https://wordpress.org/support/users/scriptstown/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Login Security Captcha] Constant failed logins](https://wordpress.org/support/topic/constant-failed-logins/)
 *  Plugin Author [ScriptsTown](https://wordpress.org/support/users/scriptstown/)
 * (@scriptstown)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/constant-failed-logins/#post-16628474)
 * If it started to happen just recently, then you can try to regenerate reCAPTCHA
   keys for V2 and V3.
 * You may also try Cloudflare Turnstile instead.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Login Security Captcha] Constant failed logins](https://wordpress.org/support/topic/constant-failed-logins/)
 *  Plugin Author [ScriptsTown](https://wordpress.org/support/users/scriptstown/)
 * (@scriptstown)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/constant-failed-logins/#post-16627245)
 * Are you using reCAPTCHA version 2 or 3? In case its V3, you can check the “Error
   Logs” tab if it returns a very low score like 0.1.
 * You may also try “Cloudflare Turnstile” instead of reCAPTCHA.
 * You will need to provide site and secret keys for Turnstile in “Captcha Settings”
   > “Cloudflare Turnstile”. Then, under “Enable Captcha” setting, select “Cloudflare
   Turnstile”.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Login Security Captcha] Warning on Google reCAPTCHA admin panel](https://wordpress.org/support/topic/warning-on-google-recaptcha-admin-panel/)
 *  Plugin Author [ScriptsTown](https://wordpress.org/support/users/scriptstown/)
 * (@scriptstown)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/warning-on-google-recaptcha-admin-panel/#post-16589880)
 * The reCAPTCHA v3 should appear to the bottom right by default. Make sure you 
   provide correct site and secret keys in the settings for v3 (Captcha Settings
   > Google reCAPTCHA Version 3).
 * I have tested v3 with “Frosty Media Custom Login” and it works for login form
   and register form.
 * With “Theme My Login”, it will work for register form but it won’t work for login
   form as our plugin checks if its the WordPress standard wp-login.php for the 
   login form.
 * You may also want to try Cloudflare Turnstile which is user-friendly to quickly
   confirms if visitors are real without solving any visual puzzle. Here, also make
   sure to provide correct site and secret keys for Turnstile. The instructions 
   on how to get them are in the settings (Captcha Settings > Cloudflare Turnstile).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Login Security Captcha] Warning on Google reCAPTCHA admin panel](https://wordpress.org/support/topic/warning-on-google-recaptcha-admin-panel/)
 *  Plugin Author [ScriptsTown](https://wordpress.org/support/users/scriptstown/)
 * (@scriptstown)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/warning-on-google-recaptcha-admin-panel/#post-16589653)
 * Hi,
 * That message warning typically indicates that a large number of attempts to solve
   reCAPTCHA challenges have failed or that there is suspicious activity that suggests
   the presence of bots. I recommend using Cloudflare Turnstile or reCAPTCHA v3.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[PressBook Grid Blogs] Breadcrumbs structured data issues detected](https://wordpress.org/support/topic/breadcrumbs-structured-data-issues-detected/)
 *  Theme Author [ScriptsTown](https://wordpress.org/support/users/scriptstown/)
 * (@scriptstown)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/breadcrumbs-structured-data-issues-detected/#post-16572027)
 * [@jaroslawistok](https://wordpress.org/support/users/jaroslawistok/) I was responding
   to [@medfan2003](https://wordpress.org/support/users/medfan2003/) (who created
   this support thread). This is not related to your site as you don’t use any breadcrumb
   plugin.
 * You must be receiving this notification as you might have subscribed to this 
   theme’s support forum.

Viewing 15 replies - 46 through 60 (of 146 total)

[←](https://wordpress.org/support/users/scriptstown/replies/page/3/?output_format=md)
[1](https://wordpress.org/support/users/scriptstown/replies/?output_format=md) [2](https://wordpress.org/support/users/scriptstown/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/scriptstown/replies/page/3/?output_format=md)
4 [5](https://wordpress.org/support/users/scriptstown/replies/page/5/?output_format=md)…
[8](https://wordpress.org/support/users/scriptstown/replies/page/8/?output_format=md)
[9](https://wordpress.org/support/users/scriptstown/replies/page/9/?output_format=md)
[10](https://wordpress.org/support/users/scriptstown/replies/page/10/?output_format=md)
[→](https://wordpress.org/support/users/scriptstown/replies/page/5/?output_format=md)