mindhunter77
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
That worked. Thanks man.
Also, it seems to be working on the main page and the category pages, just not product pages.
I added this to the functions area, but it does not seem to work on products/posts. I’m using WooCommerce if that matters.
// added to make meta titles proper case 8-12-2016 add_action( 'aioseop_title', 'change_wordpress_seo_title' ); function change_wordpress_seo_title($title) { $string =ucwords(strtolower($title)); foreach (array('-', '\'') as $delimiter) { if (strpos($title, $delimiter)!==false) { $title =implode($delimiter, array_map('ucfirst', explode($delimiter, $title))); } } return $title; }Thanks. I will look that over.
Forum: Plugins
In reply to: Anyone know a wordpress forum that…Thanks man
Viewing 5 replies - 1 through 5 (of 5 total)