Alter the Blog Post Published Date to Last Modified Date
The following snippet can be used to modify the default published date in the theme's post meta to display the last modified date instead.
The following snippet can be used to modify the default published date in the theme's post meta to display the last modified date instead.
.wpb-js-composer .vc_tta.vc_general .vc_tta-panel-body { -webkit-transition: none !important; -o-transition: none !important; transition: none !important; }
IMPORTANT: Customizer setting added in Total 5.1 for this (see Header > Menu > Stretch Items?)
There are 2 methods to disable the logo on mobile. You can either hide it via CSS or you can insert a custom classname to the logo so it becomes hidden on mobile. Here are both examples. Make sure you…
add_action( 'woocommerce_review_order_before_payment', function() { echo '' . esc_html__( 'Payment Options' ) . ''; } );
@media (min-width: 960px) { #wrap .vcex-image-gallery-slider { padding-left: 100px; position: relative; } #wrap .vcex-image-gallery-slider .sp-nc-thumbnails-container { position: absolute; left: 0; top: 0; width: 80px; } #wrap .vcex-image-gallery-slider .sp-nc-thumbnail-container { width: 100% !important; margin-bottom: 10px !important; } #wrap .vcex-image-gallery-slider .sp-buttons {…
If you are using the Post Views Counter plugin and wish to display post views using the Total Post Meta module you can do this easily with a little custom code.
// Change the default heading tag for the Total Heading Builder Module add_filter( 'vcex_heading_default_tag', function() { return 'h2'; // options: span, div, h2, h3, h4, h5, h6 } );
The following snippet can be used to hide the main header on mobile devices.
body .wpex-video-bg { left: 50%; top: 50%; transform: translate(-50%, -50%); }