SIERRA Posted February 15 Share Posted February 15 Hi, We are in the process of upgrading our website. Our current PHP version is 5.6. Do we have SeoMaestro version compatible with PHP 5.6. If yes could you please share the download link After upgrade we will make use of the latest version of SeoMaestro Thanks Link to comment Share on other sites More sharing options...
elabx Posted February 15 Share Posted February 15 Not really, since from the beginning it has been PHP >= 7.0.0 2 Link to comment Share on other sites More sharing options...
SIERRA Posted February 16 Share Posted February 16 Could you please suggest on the below Do we have any good SEO plugin compatible with both PHP 5.6 and PHP 7 Also do we have export and import feature in SeoMaestro Thanks Link to comment Share on other sites More sharing options...
Tyssen Posted April 9 Share Posted April 9 Apologies if this has been asked before (I searched but didn't find anything), but most of the pages of my site, I want the meta title format to be Page Name – Site Name. But for the home page, I want it to be Site Name – some text. I don't see a way to do that. Link to comment Share on other sites More sharing options...
fliwire Posted April 10 Share Posted April 10 delete " - site name" from module settings and add "site name" if not home page. $wire->addHookAfter('SeoMaestro::renderSeoDataValue', function (HookEvent $event) use ($settings) { $group = $event->arguments(0); $name = $event->arguments(1); $value = $event->arguments(2); $page = wire("page"); if ($page->id != 1 && $group === 'meta' && $name === 'title') { $event->return = $value . ' - ' . $settings->site_name; } }); 1 Link to comment Share on other sites More sharing options...
bernhard Posted May 19 Share Posted May 19 Hey @Wanze do you plan to do something about the PHP 8.1 errors? 🙂 https://github.com/wanze/SeoMaestro/issues/41 Thx in advance! 1 Link to comment Share on other sites More sharing options...
zoeck Posted May 19 Share Posted May 19 2 hours ago, bernhard said: Hey @Wanze do you plan to do something about the PHP 8.1 errors? 🙂 https://github.com/wanze/SeoMaestro/issues/41 Thx in advance! I think Wanze no longer uses PW, it was written here somewhere... "LAST VISITED October 23, 2021" 2 Link to comment Share on other sites More sharing options...
Wanze Posted June 4 Author Share Posted June 4 Hi folks, I just released version 1.1.1 which fixes the PHP 8.1 related errors from this issue: https://github.com/wanze/SeoMaestro/issues/41 These issues have been fixed by merging a pull request. I appreciate if the community can help me out, as I am quite disconnected from the ProcessWire world (as you might have noticed). However, I still want to support this module with bugfix releases. Cheers 6 Link to comment Share on other sites More sharing options...
Krlos Posted August 6 Share Posted August 6 Hi, I was using this code: <?php $wire->addHookAfter('SeoMaestro::renderMetatags', function (HookEvent $event) { $tags = $event->arguments(0); $group = $event->arguments(1); if ($group === null) { unset($tags['meta_generator']); $event->return = $tags; } }); To hide generator from SEO Maestro, but with the last version is not working anynore. Thx in advance 😄 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now