SIERRA Posted February 15, 2022 Share Posted February 15, 2022 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, 2022 Share Posted February 15, 2022 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, 2022 Share Posted February 16, 2022 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, 2022 Share Posted April 9, 2022 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, 2022 Share Posted April 10, 2022 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, 2022 Share Posted May 19, 2022 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, 2022 Share Posted May 19, 2022 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, 2022 Author Share Posted June 4, 2022 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, 2022 Share Posted August 6, 2022 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...
SIERRA Posted September 12, 2022 Share Posted September 12, 2022 HI, In Seo Maestro Plugin - There is no provision to add twitter:url, twitter:title, twitter:description, twitter:image values.PFA Please suggest. Link to comment Share on other sites More sharing options...
cst989 Posted February 3, 2023 Share Posted February 3, 2023 On 12/20/2021 at 10:06 AM, DV-JF said: Hey @Wanze I've maybe figured out a problem with your module - see: https://github.com/wanze/SeoMaestro/issues/40 Edit: Because this seems for me that this could be a problem for anybody else, I'll copy the text and images here - anyone else facing this problem? Seo image is duplacated multiple times: PW Ver. 3.0.184 Modul Ver. 1.1.0 PHP 7.4 Settings - see. Screenshot below Description: Till now I've only setup one image on the Homepage (page id 1) for the SEO image field. But it seems, that every time I save the page I visit the page an extra image is created in site/assets/files/1234 the folder corresponding to the page I'm saving. EDIT OUUUCH -It seems even worse: - The suspicious files are generated every time the page is loaded in frontend - see last three screenshots. This blows up the assets folder enormously and is absolutely weird. For more screenshots see attachments. Was this tackled in the 1.1.1 update? I can see it's still an open issue on github 1 Link to comment Share on other sites More sharing options...
Flashmaster82 Posted October 2, 2023 Share Posted October 2, 2023 Should you use multiple sitemaps on a multi language website? On my current website (only one sitemap) i have this in the generated sitemap. https://www.example.se/ 2023-09-24T00:43:23+00:00 hourly 1.0 https://www.example.se/en/ 2023-09-24T00:43:23+00:00 hourly 1.0 Link to comment Share on other sites More sharing options...
DV-JF Posted July 3 Share Posted July 3 @Wanze Any news on this... https://github.com/wanze/SeoMaestro/issues/40 - Had a website which runs out of disk space because of this error ? Link to comment Share on other sites More sharing options...
uiui Posted August 20 Share Posted August 20 Hey, I have a multi-language site with a localized site name for each language. Is there a way to reflect that in the site name field? Link to comment Share on other sites More sharing options...
FireWire Posted November 11 Share Posted November 11 (edited) It doesn't look like this module is being maintained anymore and there's an issue that should be known by users. The sitemap generator is including: Pages that have 'include in sitemap' unchecked Hidden pages Children of unpublished pages Not sure if this is being experienced by others but this can be problematic for discovery of pages that shouldn't be readily known to the public. Correction If a parent page has indexing disabled, but a child page does not, then the child page will still be indexed, which kind of opens the parent page for indexing as well. Best to keep robots.txt up to date as a fallback. If you would like hidden pages to not show up in sitemap.xml, then modify L77 of SeoMaestro/src/SitemapManager.php <?php $selector = sprintf( 'template=%s,template!=admin,id!=%s,include=hidden', // Remove 'include=hidden' from this line implode('|', array_keys($templates)), $this->getExcludedPages() ); Edited November 11 by FireWire Add solution 1 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