MFan
Forum Replies Created
-
Forum: Plugins
In reply to: [Add Meta Tags] Custom title issueI’m also using your plugin (thanks for it! it’s really great) and was having the same problem. I just fixed it here and I don’t think there’s anything wrong with the plugin.
In my case, I am using a custom theme based on blankslate. In that theme’s horrifically, atrociously, abhorrently formatted functions.php there was this function:
add_filter('wp_title', 'blankslate_filter_wp_title'); function blankslate_filter_wp_title($title) { return $title . esc_attr(get_bloginfo('name')); }I just deleted that, and that solved it. So I would suggest searching your theme files for “wp_title”, and see if there’s a filter like this. If so, delete it, and that should do it.
This may be a rare request, but nevertheless I am working on such a site now. I actually found it quite easy to modify Yak to allow for free products.
Working from the latest (2.3.4), check out line 2853 in yak-for-wordpress.php:
if (!empty($prod) && (!empty($prod->price))) {Simply change that to:
if (!empty($prod)) {…and really that seems to work just fine.
I’m just beginning to work with Yak, and my requirements are pretty unique, but it’s extremely well-written and organized, and thus, easy to modify. Kudos to the developer! Hope this helps.