Naoko Takano
Forum Replies Created
-
Forum: Plugins
In reply to: [wpForo Forum] I suggested translation, and what can I do for now?Thanks for the ping @fierevere.
@abeshunya could you request a translation review by posting on the Polyglots blog or following the instruction here?
Thanks!
Forum: Fixing WordPress
In reply to: How to embed small, looped autoplayed videos?Html5 Video Player Plugin could work for you.
https://wordpress.org/plugins/html5-video-player/
With the Free version, you will need to upload video files to your media library.1. Install and activate
2. Add a block called “HTML5 Video Player”
3. Update the “Settings” and “Controls”Screenshot of “Controls” section: https://cloudup.com/cUo5Ux1TKTE
It will add a gradient overlay on your video (for the control to be always visible). You probably don’t need that – you can hide it by adding this to the Additional CSS (Appearance → Customize → Additional CSS):
.h5vp_player .plyr--video .plyr__controls { background-image: none; }If you are not familiar with CSS editing, you can refer to this doc https://wordpress.com/support/editing-css/ (this is about WordPress.com but should look very similar on your site)
- This reply was modified 4 years, 1 month ago by Naoko Takano.
Forum: Fixing WordPress
In reply to: Header image rotator pluginThat plugin is currently closed and I can’t access feature information.
Maybe one of the slider plugins could work? https://wordpress.org/plugins/search/slider/
If not, please describe more information about what you are looking for to make it easier for suggesting something else.Forum: Developing with WordPress
In reply to: theme.json settings for specific blockYou may be looking for an example like this?
https://themes.trac.wordpress.org/browser/quadrat/1.1.2/theme.json#L324I think you’ll find good sample code looking through these themes’ theme.json files.
https://wordpress.org/themes/tags/full-site-editing/(also, this post: https://wordpress.org/news/2021/07/configuring-theme-design-with-theme-json/)
- This reply was modified 4 years, 11 months ago by Naoko Takano.
Forum: Fixing WordPress
In reply to: My “search page’s” visual structure brokenIt looks like you are using a premium theme. Because forum volunteers can’t recreate the setup to troubleshoot, we are unable to help you with the question about any premium themes here. I recommend contacting the seller’s support.
Forum: Fixing WordPress
In reply to: Can’t remove related postsAs long as you follow the instructions carefully, I personally don’t think creating a Child Theme for this purpose is super hard. It may take some time because it’s the first time but could be good practice for learning how things work.
If you want to move on with the direction, I recommend setting up a separate test site so that you won’t break the live site you have.
From 12:46 of this video, you can learn about tools to set up a local site (WordPress site running on your computer) for that purpose.
https://learn.wordpress.org/workshop/introduction-to-wordpress/Forum: Fixing WordPress
In reply to: 404 when logged out but displays OK when logged inForum: Fixing WordPress
In reply to: Adding to Menu Spinning IndefinitelyI was going to test with the theme but it looks like you are using a premium theme. You may want to contact theme support and check if this is a known issue.
Forum: Developing with WordPress
In reply to: theme.json settings for specific blockLooks like your question was answered in a comment https://make.wordpress.org/core/2021/06/25/introducing-theme-json-in-wordpress-5-8/#comment-41667 some hours ago, but adding a link so it’s visible for those who are looking for the same information.
Forum: Fixing WordPress
In reply to: Product GridWhich theme are you using?
Are you also using WooCommerce or any other plugins?Forum: Fixing WordPress
In reply to: background image not showing on footer for mobileForum: Fixing WordPress
In reply to: Can’t remove related postsIt looks like the Related Posts section is coded into
inc/single.phpfile of the theme (line 60) and there isn’t an option to remove it.If you really want to remove it, you can create a Child Theme on your own and edit out the part you don’t need.
https://developer.wordpress.org/themes/advanced-topics/child-themes/#adding-template-filesOr, you may want to talk to the author on the theme forum and suggest adding an option to turn it off:
https://wordpress.org/support/theme/writers-blogily/Forum: Fixing WordPress
In reply to: Google Map Embedding IssueThe code you have looks ok to me, I tested on my site and it worked.
If you are using the Block Editor, paste the code using a Custom HTML block.
If you are using the Classic Editor, use HTML editing mode and paste the code.Forum: Fixing WordPress
In reply to: Caption under gallery image without affecting image sizeHow about adding something like this to the Custom CSS?
(you may need to tweak the color of theaelement more).blocks-gallery-grid .blocks-gallery-image figcaption { color: #000; background: none; } .blocks-gallery-grid .blocks-gallery-image img { padding-bottom: 40px }Forum: Fixing WordPress
In reply to: Widgets is Blanked Out!Have you tried deactivating all plugins
and trying to switch to the default theme?