Yo,
Demo: Menu drop up issue
Cheers
]]>Hello,
Excerpt or not displayed correctly.
If you have this setting:
Settings -> reading -> “For each post in a feed, include” set to “Summary”
both excerpt and content will be displayed.
Demo, https://oller.angst.nu/wp_dev/category/uncategorized/
<div class="card-body dmbs-post-content">
<?php if ( has_excerpt() ) : ?>
<div class="dmbs-post-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php endif; ?>
<?php
/* translators: %s: Name of current post */
the_content( sprintf( __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'devdmbootstrap4' ),
get_the_title()
) );
?>
</div>
Noticed in at least single.php and archive.php
Cheers
]]>Hello,
It seems to be an issue with dropdowns on small screens.
Look at the gif to see the behavior:
devdm4-menu-dropdown.gif
Cheers
]]>Hello,
First, thank you for a great theme.
Perhaps im totally wrong here.
Is really Bootstrap v4.3.1 included? Source tell me its 4.1.0
Example here, https://devdmbootstrap.com/wp-content/themes/devdmbootstrap4/assets/css/devdmbootstrap/devdmbootstrap4.min.css?ver=5.2.5
* Bootstrap v4.1.0 (https://getbootstrap.com/)
Toasts was introduced in 4.3 but a searched for “toast” gives no.
js version is correct though
* Bootstrap v4.3.1 (https://getbootstrap.com/)
Cheers
]]>I wanted to have fa icons in dropdown menus so I wanted to be able to id each item, so I edited includes/devdmbootstrap_enhanced_nav_walker.php line 63:
$atts['class'] = 'dropdown-item';
and replaced it with
$atts['class'] = 'dropdown-item dropdown-item-' . $item->ID;
Now I can add fontawesome in css with something like
ul.navbar-nav li.menu-item div.dropdown-menu a.dropdown-item-147:before {
content: '\f028';
font-weight: 900;
}
This would be a nice addition to a future release.
]]>Dear Danny,
I think your theme is super!
I have run some Audit on my site [ redundant link removed ] and I noticed an error according to Google LightHouse
My suggestion:
function.php under Register left and right Sidebar section:
register_sidebar(
array(
'name' => __('Right Sidebar', 'devdmbootstrap4'),
'id' => 'dmbs-right-sidebar',
'description' => __('Widgets in this area will be shown on all posts and pages.', 'devdmbootstrap4'),
'before_widget' => '<li id="%1$s" class="widget dmbs-widget dmbs-widget-right %2$s">',
'after_widget' => '</li>',
'before_title' => '<h3 class="widgettitle dmbs-widget-title dmbs-widget-right-title">',
'after_title' => '</h3>',
));
change to:
register_sidebar(
array(
'name' => __('Right Sidebar', 'devdmbootstrap4'),
'id' => 'dmbs-right-sidebar',
'description' => __('Widgets in this area will be shown on all posts and pages.', 'devdmbootstrap4'),
'before_widget' => '<ul><li id="%1$s" class="widget dmbs-widget dmbs-widget-right %2$s">',
'after_widget' => '</li></ul>',
'before_title' => '<h3 class="widgettitle dmbs-widget-title dmbs-widget-right-title">',
'after_title' => '</h3>',
));
Additionally, Google LightHouse says “Minifying JavaScript files can reduce payload sizes and script parse time”:
/devdmbootstrap4/assets/js/bootstrap4x/bootstrap.js
I have done a reducing and the original file changed 154KB to 64KB.
Best regards,
Mihály
PS.: If you can fix it, it will be awesome!
]]><style>
Fatal error: Call to undefined function sprint_f() in /home/httpd/vhosts/hundesport-weilmatten.ch/httpdocs/cms/wp-content/themes/devdmbootstrap4/includes/utilities.php on line 85