Osclass Support Forums

Osclass plugin support => Seo Plugins => Topic started by: Web on March 20, 2020, 10:38:08 AM

Title: Meta title change
Post by: Web on March 20, 2020, 10:38:08 AM
I’m change meta title publish page and search page use this code

<?php
function wm_custom_meta_title($title) {
    if(Params::getParam('page') == 'search') {
        return __('All listings');
    } else if(Params::getParam('action') == 'item_add') {
        return __('Publish a listing');
    }

    return $title;
}
osc_add_filter('meta_title_filter', 'wm_custom_meta_title');


After install this plugin change title not showing
Title: Re: Meta title change
Post by: MB Themes on March 20, 2020, 03:13:25 PM
@Web
Because plugin use same hook, try to add 1 as last parameter in add filter function or modify it in plugin
Title: Re: Meta title change
Post by: Web on March 25, 2020, 11:47:45 AM
@mbthemes

Add 1 but not working

Title: Re: Meta title change
Post by: MB Themes on March 25, 2020, 01:43:25 PM
Now try 10
Title: Re: Meta title change
Post by: Web on March 26, 2020, 08:31:02 AM
@mbthemes

Not working
Title: Re: Meta title change
Post by: MB Themes on March 26, 2020, 09:41:28 AM
@Web
Ok, then only way is to update it directly in index.php and put into meta title condition your owns.
Title: Re: Meta title change
Post by: Web on March 26, 2020, 12:46:41 PM
Solved