| Re: publisher |
| by Mamba on 2023/10/1 2:08:46 If it worked in an older XOOPS version, then it's a good chance that it will work with the current version, with eventually small adjustments. Please share the links you were looking at... |
| Re: publisher |
| by svenhard on 2023/9/20 15:02:40 I apologize if this is the wrong place to post this. I've been trying to locate recent conversations about implementing an image slider directly into the Publisher module, but all discussions seem to be referencing older versions of XOOPS. I'm building a comic strip website and I ultimately want each post to have single panel images that can be swiped like an Instagram post. I currently have a responsive CSS carousel that I could manually enter as code into an article post, but that is messy and time consuming. So, I just wanted to know if this has been successfully implemented before I invest a lot of time doing dev work someone else already did. |
| Re: publisher |
| by Mamba on 2023/6/12 23:53:38 Thanks for sharing! |
| Re: publisher |
| by zivXP on 2023/6/6 18:41:48 For better use in SEO, I made a conclusion in the information <title> from the "subtitle" field item.php line 233 le="color: #000000"><?php /** Generating meta information for this page * old code $publisherMetagen = new PublisherMetagen($itemObj->getVar('title'), $itemObj->getVar('meta_keywords', 'n'), $itemObj->getVar('meta_description', 'n'), $itemObj->getCategoryPath()); $itemObj->getCategoryPath()) - delete */ if ($itemObj->getVar('subtitle')) { $publisherMetagen = new PublisherMetagen($itemObj->getVar('subtitle'), $itemObj->getVar('meta_keywords', 'n'), $itemObj->getVar('meta_description', 'n')); } else { $publisherMetagen = new PublisherMetagen($itemObj->getVar('title'), $itemObj->getVar('meta_keywords', 'n'), $itemObj->getVar('meta_description', 'n')); }
|
| Re: publisher |
| by zivXP on 2023/3/12 6:31:53 I would like to separate the title of the text from < title >. This is done in most CMS. Working with SEO specialists, I received tasks in such a way that there were different data in these fields. The Yandex search engine manual states that the page names should be unique and should not be repeated. And that's why I make the headlines of articles on the XOOPS platform not for the visitor, but for SEO. I would like to share this. In general, a lot has been done in the XOOPS platform without taking into account the real needs of site editors. Made by programmers for programmers. I think this is the reason for the weak popularity of XOOPS. A more flexible approach would not hurt.
|