Tagged: wordpress

0

WordPress – allow password protected content in search results

Source: https://wordpress.org/support/topic/how-to-allow-password-protected-content-in-search-results SOLUTION: Add this code to your functions.php file and you will get it to work. add_filter( ‘posts_search’, ‘include_password_posts_in_search’ ); function include_password_posts_in_search( $search ) { global $wpdb; $pattern = ” AND ({$wpdb->prefix}posts.post_password = ”)”; $search = str_replace( $pattern, ”,...

0

WordPress theme support page print

Add following snippet to style.css @media print { .post-nav,.post-tags,.sidebar,.s1,.s2,.single article ~ *,li.comments, #header, #footer{display: none !important;} * {color:black !important;background: none !important; } body {font-size: 10pt;} .main-inner{padding-left:0 !important;padding-right:0 !important;} }   Hueman theme: Colored fonts printing, removed share icon bar @media...

0

WordPress metro themes

Are you looking for nice metro themes for wordpress? Here is my list.. Yeah all free to my best knowledge 😉 Metro style free wordpress theme (http://reliablethemes.com/metro-style-free-wordpress-theme/) WP Metro Theme (http://www.wp-metro-theme.com/) Themify Metro WordPress Theme (http://www.nulledclonescripts.com/themify-metro-wordpress-theme/)       Related...

0

On wordpress

Update 2019/12/25 – While on a flight to Home Increase Upload Limit for All-in-One WP Migration Plugin In wordpress (as of v5.3.2), 1. Go to plugin editor Admin login -> Plugins -> Plugin editor 2. Select plugin to edit (All-in-One...

0

How to Map a Domain Name to a Hosting Account

How to Map a Domain Name to a Hosting Account Two most essential things that you need to get started with your own website are a valid domain name and a web hosting account. Domain name with .com, .net, .org...