Editing WITH vi editor
To edit /etc/yum.conf with vi, run: sudo vi /etc/yum.conf Press i to enter insert mode and make changes. Press Esc, then type :wq and press Enter to save and exit. To exit without saving, use :q!.
To edit /etc/yum.conf with vi, run: sudo vi /etc/yum.conf Press i to enter insert mode and make changes. Press Esc, then type :wq and press Enter to save and exit. To exit without saving, use :q!.
Core CPT: Open the Customizer and navigate to "Blog" – "Archive". Product Archives: Open the Customizer and navigate to "WooCommerce (Total)" – "Shop & Archives". Manufaturer Taxnomy Make sure you don't have something like this in your functions.php //WOOCOMMERCE -…
I actually just added that to my todo list yesterday! I was looking at WordPress.com and noticed they had carousels going both directions. So I will add this in the next update.You can use some custom code to change the…
function plus_func($atts) { extract( shortcode_atts( array( 'symbol' => '+++', ), $atts ) ); $return = '<span class="symbol">'.$symbol.'</span>'; return $return; } add_shortcode('plus','plus_func');
Add the class "megamenu-template-1" to the submenu item to replace its content. Add this code to the functions.php // Override the menu item with the 'megamenu-template-1' class with a dynamic template add_filter( 'walker_nav_menu_start_el', function( $output, $item, $depth, $args ) {…
/** * Add Custom Dynamic Variables. * * @link https://total.wpexplorer.com/docs/snippets/add-custom-dynamic-variables/ * @since 5.6.1 */ add_filter( 'totaltheme/replace_vars/vars', function( $vars ) { // Check if the post has a featured image if (has_post_thumbnail(get_the_ID())) { $class = 'xxx'.get_the_ID(); // Return an empty string…
/*SLIDER KEN BURNS*/ .sp-mask .wpex-slider-media img { animation: move 30s infinite; } .wpex-slider-media { overflow: hidden; } .wpex-slider__overlay { z-index: 1000; } @keyframes kenburns { 0% { opacity: 0; } 5% { opacity: 1; } 95% { transform: scale3d(1.5, 1.5,…
Link .barn { height: 35vh; /* width: 100%; */ display: flex; /* justify-content: center; */ /* align-items: center; */ /* gap: 5px; */ /*border-top-left-radius: 20px; border-top-right-radius: 20px; overflow: hidden;*/ } .barn.wpex-vc-full-width-row--centered { padding-inline: 0 !important; } .wrapper .card, .barn .door…
/** * Add Custom Dynamic Variables. * * @link https://total.wpexplorer.com/docs/snippets/add-custom-dynamic-variables/ * @since 5.6.1 */ add_filter( 'totaltheme/replace_vars/vars', function( $vars ) { // Check if the post has a featured image if (has_post_thumbnail(get_the_ID())) { $class = 'xxx'.get_the_ID(); // Return an empty string…
Just give the item a css class like megamenu-template-1 and add this to the functions.php // Override the menu item with the 'megamenu-template-1' class with a dynamic template add_filter( 'walker_nav_menu_start_el', function( $output, $item, $depth, $args ) { //LEISTUNGEN if (…