boyettcamp
Forum Replies Created
-
I got same issue. All cache cleared – STILL can’t access the SMUSH dashboard as cannot clear the dam pop-up!!
I note that this issue is marked as “resolved”? hahaha, Rollback is hardly a resolution!
*UPDATE*
Conflict with Plugin SAFE.svg (allowing .svg images to be uploaded to WordPress. Now this plugin has been deleted (existing uploaded .svg’s unaffected) mobile menu is displaying perfectly. Just a heads-up for anyone else with similar issue.it was cache issue. now resolved
.RESOLVED.
Hello Twintig,
Thank you for your prompt reply.Dakar Demo Background
Hopefully if anyone else reads this thread they too will know to add the custom css to achieve the gradient background.
Dakar Fonts
The fonts did not initially load, however this was not a fault of Twentig, it was a Chaching issue. After changing my “Autoptimiser” settings and clearing cache, all is now good.
Many thanks again for your input.*Update*
On inspecting the DEMO, I saw the following, which I have added to Custom CSS. It works, but is OK to do it this way?body {background: linear-gradient(180deg,rgb(224,247,250) 0%,rgb(255,205,210) 100%);background-attachment: fixed;}
Hi.
I deactivated Autoptimize Plugin – no change.
I deactivated ALL Plugins – no change.
I saved all my custom css & .php modifications in Text Editor then deleted Twenty Twenty (Child Theme) and Activated Parent Twenty Twenty Theme and reinstalled custom css and all Plugins – Burger Menu now works (as does everything else) so it must have been an issue with my Child Theme installation?I will reinstall a Child Theme tomorrow and copy=over the modified files. Hopefully things will stay working.
Many thanks for your reply. I will mark this thread as resolved for now.Thanks Tom.
I tried this, but couldn’t get it to work for me. However I’ve replaced the SECTION with one of the CARDS to link to the appropriate PAGE ??It’s a simple work-around for me, but I very much appreciate your helpful reply.
Andrew.
10/10 ??
Thanks Tom. Perfect. That worked ??
This was the previous recommended Code I used (as per thread on this forum):
function my_custom_body_class( $classes ) { if ( is_post_type_archive() ) { $blog_layout = get_theme_mod( 'twentig_blog_layout' ); $classes[] = 'tw-blog-' . $blog_layout; if ( 'grid-basic' === $blog_layout || 'grid-card' === $blog_layout ) { $classes[] = 'tw-blog-grid'; $classes[] = 'tw-blog-columns-' . get_theme_mod( 'twentig_blog_columns', '3' ); add_filter( 'post_thumbnail_size', function() { return 'large'; } ); } } return $classes; } add_filter( 'body_class', 'my_custom_body_class', 12 );