https://millionclues.com/wordpress-tips/adding-safari-only-css/
https://millionclues.com/wordpress-tips/adding-safari-only-css/

https://millionclues.com/wordpress-tips/adding-safari-only-css/

On a project, I had a request from client who wants WordPress users to be notified by email when they update information in their user profile. I think its fair because most of the websites sends an automatic email notification when a user updates his profile and it’s good for security reasons too. But the…

While working on a WooCommerce project recently, my client asked me if there is a way to show a message to seller on their own product items. A simple message like “you are the seller of this item” if the product page is previewed by the seller itself. Typically WooCommerce is a plugin which essentially…

By OutsourcedContent — on June 3, 2021 For quick reference. Remember to change my_subdir and example.com <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_HOST} ^(www.)?example.com$ RewriteCond %{REQUEST_URI} !^/my_subdir/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /my_subdir/$1 RewriteCond %{HTTP_HOST} ^(www.)?example.com$ RewriteRule ^(/)?$ my_subdir/index.php [L] </IfModule> Reference: Giving WordPress Its Own Directory

By OutsourcedContent — on October 10, 2017 /** * Include File In WordPress Theme’s Functions.php * * @since 1.0 * @refer https://millionclues.com/wordpress-tips/php-include-and-require-wordpress/ */ include_once( dirname(__FILE__) . ‘/includes/simple-post-likes/post-like.php’);

By OutsourcedContent — on December 9, 2017 Here is the Query. Highlighted content will have to be changed for your case. <?php $my_query = new WP_Query( array( ‘post_type’ => ‘company’, ‘tax_query’ => array( array( ‘taxonomy’ => ‘service’, ‘field’ => ‘slug’, ‘terms’ => get_query_var( ‘service’ ), ), ), ‘paged’ => get_query_var(‘paged’, 1), ) ); ?>…

By default, WordPress uses the “From Email” as “[email protected]” and “From Name” as “WordPress” when it sends out notifications to users. In our case, the emails come from [email protected] This is meaningless and quite annoying to be honest because WordPress does not offer any way to change this email settings from admin panel and modifying…
