621
fla-ts
Re: Home Page
  • 2021/11/3 10:35

  • fla-ts

  • Friend of XOOPS

  • Posts: 204

  • Since: 2005/1/4 1


Thank you, I will take a backup of the current situation first and then try it quietly
Best Regards, Fernand



622
Mamba
Re: Home Page
  • 2021/11/3 0:36

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


You can do it in three ways:

1) Modify the theme's "theme.tpl" file

2) use a module to create the content and then in Admin/Preferences set the module as the starting one in "Module for your start page"

3) Create a custom block and make it visible in the "Top page" and set it for only the "Anonymous" group
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



623
fla-ts
Home Page
  • 2021/11/2 14:59

  • fla-ts

  • Friend of XOOPS

  • Posts: 204

  • Since: 2005/1/4 1


Hello friends, it's been ages since I've been here and everything is going pretty smoothly with changes or additions to my website. Now I do have something that I don't find, because I want to designate a certain menu from the summeray as the home page. I mean that when someone visits the website, he ends up on a page that I set myself, is that possible?
My sincere apologies if this post is in the wrong place on the forum.



624
Mamba
Rating 0.3.0 Alpha 1
  • 2021/11/1 7:47

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


Resized Image


XOOPS Rating 0.3.1 Alpha 1 released for testing/contributions!

Rating module for XOOPS CMS, originally developed by Cointin Maxime (Kraven30), is an extension for XOOPS 2.5.11 that allows you to easily add a voting system to the inside of another module. You can add as many modules as you want. For example, to rate a hotel, restaurant service, quality of food, price, etc.
It can be used by any module, it works the same way as the module Tag. It uses the jquery plugin 'jRating'.

This update is just a proof of concept for testing, so it might change over time as we gain more experience with it

DOWNLOAD: https://github.com/mambax7/rating/releases

FORK: https://github.com/mambax7/rating/

ISSUES/BUGS: Please report all issues on GitHub

REQUIREMENTS:
- XOOPS 2.5.10
- PHP 7.3+

It was tested on PHP 8.012 and PHP 8.1 RC-5

HOW TO USE IT:

This is an example of usage based on the Adslight module:

1) In the Admin of the Rating module, create a new "module rating", and select your module that you want to use:

Resized Image



2) Add the file name where you will want the Rating to appear (here: viewads.php)

3) In viewads.php add somewhere:

if (is_dir('../rating')){
     include 
XOOPS_ROOT_PATH .'/modules/rating/include/rating.php';
     
$GLOBALS['xoopsTpl']->assign('ratingPerm'true);
     
$GLOBALS['xoopsTpl']->assign('ratings'rating($lid));
 } else {
     
$GLOBALS['xoopsTpl']->assign('ratingPerm'false);
}


4) In the template: adslight_item.tpl

add before the

<{if $ratingPerm}>    
     <{include 
file='./../modules/rating/templates/rating.tpl'}>
<{/if}>


And that's it.

You should have now a rating option in your Adslight module:

Resized Image
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



625
Mamba
xBootstrap5 5.1.3 Beta 1
  • 2021/11/1 2:39

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


Resized Image


If you're interested in helping, please check out xBootstrap5 theme:

https://github.com/mambax7/xbootstrap5

It has been updated with Bootstrap 5.1.3 Final, but we need help with testing and improving the theme...
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



626
Mamba
xBootstrap4 4.6.1 Beta 1
  • 2021/11/1 2:39

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


Resized Image


If you're interested in helping, please check out xBootstrap4 theme:

https://github.com/mambax7/xbootstrap4

It has been updated with Bootstrap 4.6.1 Final, but we need help with testing and improving the theme...
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



627
Mamba
XoopsFAQ 2.1.0 Alpha 2
  • 2021/10/29 20:51

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


Resized Image


XoopsFAQ 2.1.0 Alpha 2 released for testing/contributions!

XoopsFAQ is a simple but powerful FAQ module that includes permissions aware categories, and which was recently updated by Zyspec and Geekwright

This release adds Schema Markup through JSON-LD to mark up your FAQs with structured data based on http://www.schema.org to help search engines better understand the content of your FAQ web page

DOWNLOAD: https://github.com/mambax7/xoopsfaq/releases

FORK: https://github.com/mambax7/xoopsfaq/

ISSUES/BUGS: Please report all issues on GitHub

REQUIREMENTS:
- XOOPS 2.5.10
- PHP 7.3+

It was tested on PHP 8.012 and PHP 8.1 RC-5
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



628
Mage
Re: xlanguage and xoopsfaq problem
  • 2021/10/29 7:56

  • Mage

  • Core Developer

  • Posts: 206

  • Since: 2009/8/2 1


Hello,

I don't know if it's related but the problem with xlanguage is that it processes the tags right before display. Let's imagine that the module makes a php break in the text (the php code takes the first 50 characters):

[en]My text of more than 50 characters [/en][fr]Mon texte de plus de 50 caractères [/fr]

It will transmit to xlanguage:

[en]My text of more than 50 characters...

And this is the beginning of the problems! He cannot close the tags!

To correct the problem, the module must clean the tags before processing the length of the text!

This is how I did for my modules:

https://github.com/GregMage/xmnews/commit/74fb8d951e7100f51162bcda2f3316070e95dfcb

for comment:

https://github.com/GregMage/xmnews/commit/350c02dda31018f8e5515e1a8941767889c36af3

If modules don't do this, they won't be able to work properly with xlanguage.

Today there are no other possible solutions...



629
Mamba
Re: Misspelling in login block
  • 2021/10/29 0:53

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


Thank you for letting us know! It was the German spelling

It is fixed now!
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



630
iHackCode
Misspelling in login block

I noticed a misspelling in the login block. Password is misspelled.

I noticed it here..
https://xoops.org/modules/repository/
https://xoops.org/modules/newbb/

Thanks




TopTop
« 1 ... 60 61 62 (63) 64 65 66 ... 29425 »



Login

Who's Online

824 user(s) are online (279 user(s) are browsing Support Forums)


Members: 0


Guests: 824


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Jul 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits