Total Theme: Move Badge on top in Headlines
Usually it is below. But i don't like it there. Here is some CSS to fix it: .vcex-heading-w-badge .vcex-heading-inner { display: flex; flex-direction: column-reverse; } .wpex-badge { width: fit-content; }
Usually it is below. But i don't like it there. Here is some CSS to fix it: .vcex-heading-w-badge .vcex-heading-inner { display: flex; flex-direction: column-reverse; } .wpex-badge { width: fit-content; }
Add this and reload the page, then remove it from functions.php. This is useful if your server does not send emails 8yet) or ayou dont want toe prior admin to know about your changes. //force update admin email update_option( 'admin_email',…
add_filter( 'wpex_typography_settings', function( $settings ) { if ( isset( $settings['entry_h1'] ) ) { $settings['entry_h1']['target'] = 'h1, .wpex-h1, .vcex-module h1, h1.vcex-heading'; } if ( isset( $settings['entry_h2'] ) ) { $settings['entry_h2']['target'] = 'h2, .wpex-h2, .vcex-module h2, h2.vcex-heading'; } if ( isset( $settings['entry_h3']…
Using WordPress mehtods via capabilities is the best way to achieve this. Hiding the elements in the backend still shows the admin bar edit link. also hiding is not good practice. WordPress provides a good capability system. So if you…
This seems to work only if the plugin is active. but this is ok for me. function remove_update_notification($value) { //unset($value->response[ plugin_basename(__FILE__) ]); //when usin in plugin itself //if( isset( $value->response['facebook-comments-plugin/facebook-comments.php'] ) ) { unset( $value->response['organization-chart/wpdevart_chart.php'] ); //} return $value; }…
add_filter( 'wpex_typography_settings', function( $settings ) { if ( isset( $settings['entry_h1'] ) ) { $settings['entry_h1']['target'] = 'h1, .wpex-h1, .vcex-module h1, h1.vcex-heading'; } if ( isset( $settings['entry_h2'] ) ) { $settings['entry_h2']['target'] = 'h2, .wpex-h2, .vcex-module h2, h2.vcex-heading'; } if ( isset( $settings['entry_h3']…
Hello, plesk can make website faster. But it seems clómplicated. in the pasrt. I feel like it its better and working now. so here is how it works. You need to install nginx extension if not doneyet. If done so…
Sometimes if you relaunch a design on a given website in your development system, you might want to finally bring it live in the best and cleanest form technically possible. Usually I use WP Vivid to migrate my finished product…
WordPress: Build me a custom query for php to query posts of the post type "portfolio" and query by the meta tag "event-date-start" which is in a date format. I want to query only posts where today is smaller than…
// Add Custom Category Shortcode function enym_statusx( $atts ) { // Attributes $atts = shortcode_atts( array( 'label' => '', 'class' => '', 'link'=>'' ), $atts ); global $post; //$terms = wp_get_post_terms( $atts['post_id'], $atts['taxonomy']); //$term = get_term( '24', 'objektart' ); $terms…