Ravi Chandra
Forum Replies Created
-
Forum: Plugins
In reply to: [Material Design for WordPress] Blocks Not Working with WordPress 5.7@hugopalmer63 These are warnings and not errors, they shouldn’t break anything on the page, would you be able to send a screenshot of the block editor page where you see the error and keep the console open ? Open console > Reload page > capture screenshot.
Forum: Plugins
In reply to: [Material Design for WordPress] Blocks Not Working with WordPress 5.7Do you see the error in the backend or the frontend ? If it’s on the frontend and the site is public could you share a URL where I can see the error ?
If the error is in the backend, can you open developer console in your browser and reload the page and see if you are seeing any errors in the console ?
For #2 it seems to be a browser specific bug, I am seeing a scroll bar and able to scroll through the drawer menu.I am on Chrome 89.0.4389.90 on macOS 10.14.6, can you provide your Chrome and OS versions ?
Forum: Plugins
In reply to: [Material Design for WordPress] Blocks Not Working with WordPress 5.7Hello @hugopalmer63 Thank you for reaching out.
Material Design plugin and theme both support WordPress 5.7. The blocks are part of the plugin and if the plugin is not active you would see the error “Your site doesn’t include support for the “material-image-list” block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.”
Could you verify if you have the plugin active ?
Hello @bin10313 Thank you for reaching out.
1) This is a current limitation when we have more menu items than what can be rendered initially, we will look into possible solutions.
2) I am seeing all the menu items in the drawer menu and don’t see an overflow issue, can you provide a screenshot and also provide your browser/OS info ?Forum: Themes and Templates
In reply to: [Material Design Google] White Space on TopHi @bin10313 Thank you for reaching out, we are glad you like the theme.
Please use the below custom CSS to remove the top padding, replace the page id 9997 with the page/post id of the page you need these changes on. We will look into the possibility of adding an option in the theme to not include the whitespace.
.page-id-9997 .-has-tab-bar + .site-content .content-area { margin-top: 7rem; }
Forum: Themes and Templates
In reply to: [Material Design Google] Image size on homepageHi @asadilek
Thanks for reaching out. The image in the card layout is being set as a background-image to maintain the aspect ratio across all cards. We will look into solutions for using an
img
tag so WordPress can usesrcset
while also maintaining the aspect ratio.Hi @k_abel
Thanks for reaching out. As of now hiding the title or removing the top margin from content would require custom CSS. Please use the below custom css and replace the page id
9997
with the page/post id of the page you need these changes on..page-id-9997 .entry-title { display: none; } .page-id-9997 .-has-tab-bar + .site-content .content-area { margin-top: 7rem; } @media (max-width: 599px) { .page-id-9997 .-has-tab-bar + .site-content .content-area { margin-top: 6rem; } } .page-id-9997 .entry-content .wp-block-cover:first-child { margin-top: 0; }
Forum: Plugins
In reply to: [Material Design for WordPress] Does not run locallyForum: Reviews
In reply to: [Material Design Google] Featured image in page breaks layoutHello @duckling This has been fixed in version 0.1.4, please update and let us know if you see any issues.
The plugin installs demo pages/posts if the option is checked in the Onboarding wizard (after activating the plugin).
To delete the demo pages/posts, go to WP-Admin > Pages and check the “Home, About, Projects, Blog and Contact” pages and bulk delete the pages.
To set the menu to your previous menu, go to WP-Admin > Appearance > Menu and select the previous menu as “Primary”
Forum: Plugins
In reply to: [Material Design for WordPress] DatatablesHello @michaelclayville
Thank you for reaching out. The Material Design plugin uses the Material Web Components under the hood, currently the Material Data Table component does not have a Javascript API for filtering or pagination.
This SO thread has some context and the last comment has some pointers on implementing a custom filter method using dynamic data in Javascript
Forum: Themes and Templates
In reply to: [Material Design Google] Sort order of last posts on homepageHello @asadilek
Thank you for reaching out. This is due to the way the Masonry columns are being rendered currently. We are looking into some possible fixes so the sort order would be correct on mobile devices.
Forum: Plugins
In reply to: [Material Design for WordPress] Does not run locallyHello @frdmsun
Thanks for reaching out, this seems to be an issue due to the
DIRECTORY_SEPARATOR
PHP constant in Windows. We are working on a fix.Forum: Plugins
In reply to: [Material Design for WordPress] Cards Equal Height?Hello @monkehfu
Thanks for reaching out, could you try with
height: 100%
on the card element (.material-design-card) ? We will take a look at how to handle the grid row card height and include a fix in an upcoming release.