651
alain01
Re: Overload the images on the search.php page
  • 2021/10/19 21:38

  • alain01

  • Just can't stay away

  • Posts: 530

  • Since: 2003/6/20


Thank you for the syntax, zyspec,
but it does not work.

<{if file_exists($chaine_surcharge)}>
                            <
div class="d-inline"><img src="<{$chaine_surcharge}>" alt="<{$module.name}>"> <a href="<{$result.link}>"><{$result.title}>a>div>
                            <
div class="d-none d-md-inline "><span class="fas fa-calendar fa-sm ml-2">span> <{$result.time}>div>
                            <
br />
                        <{else}>
                            <
img src="<{$result.image}>" alt="<{$module.name}>"> <a href="<{$result.link}>"><{$result.title}>a> (<{$result.time}>)<br />
                        <{/if}>

The condition is always false... but the file exists

If I delete the test, the image is overloaded.



652
zyspec
Re: Overload the images on the search.php page
  • 2021/10/19 20:36

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


@alain01

You should be able to just use something like this:
<{if file_exists($chaine_surcharge)}>
Found my file<br>
<{else}>
Unknown file<br>
<{/if}>



653
alain01
Re: Overload the images on the search.php page
  • 2021/10/17 21:43

  • alain01

  • Just can't stay away

  • Posts: 530

  • Since: 2003/6/20


Ok, error in my code.

The code should be :
<{assign var="chaine_surcharge" value=$xoops_imageurl|cat:"modules/"|cat:$result.image|replace:"$xoops_url/modules/":''}>

result in a example :
Quote:So with that, I can overload the images...
But same trouble,
i dont know to test the existence of a file (image) with smarty.



654
alain01
Re: Overload the images on the search.php page
  • 2021/10/17 0:27

  • alain01

  • Just can't stay away

  • Posts: 530

  • Since: 2003/6/20


To understand the code :
Code :
<{assign var="chaine_start" value="$xoops_url/modules/"}>
                    
chaine_start = <{$chaine_start}> <br />
                    
                    <{
assign var="chaine_surcharge" value=$xoops_imageurl|cat:$result.image|replace:$chaine_start:''}>
                    
chaine_surcharge = <{$chaine_surcharge}> <br />


result :
Quote:



655
alain01
Re: Overload the images on the search.php page
  • 2021/10/17 0:22

  • alain01

  • Just can't stay away

  • Posts: 530

  • Since: 2003/6/20


Ok,
I found a solution but I dont know How to test if a file exist in the template.

My code for the profile_userinfo.tpl overload file (http://mysite.com/themes/my_theme/modules/profile/profile_userinfo.tpl)

<li>
                    <{
assign var="chaine_start" value="$xoops_url/modules/"}>
                    <{
assign var="chaine_surcharge" value=$xoops_imageurl|cat:$result.image|replace:$chaine_start:''}>
                 
                     <{if 
$chaine_surcharge}>
                        <
img src="<{$chaine_surcharge}>" alt="<{$module.name}>"> <a href="<{$result.link}>"><{$result.title}>a> (<{$result.time}>)
                    <{else}>
                        <
img src="<{$result.image}>" alt="<{$module.name}>"> <a href="<{$result.link}>"><{$result.title}>a> (<{$result.time}>)
                    <{/if}>
               li>


I know that
<{if $chaine_surcharge}>
is always true but I dont find a test to test the existence of a file (image)

So the question now is :
How can I test the existence of an image with smarty in a template file ?



656
alain01
Overload the images on the search.php page
  • 2021/10/15 15:41

  • alain01

  • Just can't stay away

  • Posts: 530

  • Since: 2003/6/20


Hi,
I need to change the icons on the /search.php page.

Resized Image


Basic methode :
I change on each module the file /modules/module_name/assets/images/image_search.png
BUT it's a bad method cause when i will update the module, i will erase my customize pictures

Overload method :
I add an new overloaded image in this directory:
/themes/my_theme/modules/module-1/assets/images/image_search.png
But it doesn't work

URL concerned :
1 - /search.php
2 - /modules/profile/userinfo.php?uid=x

Concrete example :
Search page: https://www.monxoops.fr/search.php?query=xswatch4&action=results
Profile page : https://www.monxoops.fr/modules/profile/userinfo.php?uid=3

I want to change this image : [img ]https://www.monxoops.fr/modules/xmnews/assets/images/xmnews_search.png[/img]
to
[img ]https://www.monxoops.fr//themes/mx-theme/modules/xmnews/assets/images/xmnews_search.png[/img] (just an example to view the change)

Any good solution ?



657
goffy
Re: RssFit 1.32 Beta 1
  • 2021/10/15 7:57

  • goffy

  • Just can't stay away

  • Posts: 535

  • Since: 2010/12/27


I have tested it and found only small bug (sent a PR)

I have also added the language files to http://www.transifex.com

Please help for translations



658
Mamba
RssFit 1.32 Beta 1
  • 2021/10/14 11:07

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


Resized Image


XOOPS RssFit 1.32 Beta 1 released for testing/contributions!

RssFit is a module to create syndicated RSS feeds from your modules.

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

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

ISSUES/BUGS: Please report all issues on GitHub

REQUIREMENTS:
- XOOPS 2.5.10
- PHP 7.3+

It was tested on PHP 8.011
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



659
heyula
Re: My Latest Xoops Project
  • 2021/10/8 21:46

  • heyula

  • Theme Designer

  • Posts: 594

  • Since: 2008/4/24


Thanks for your nice comments.

Finally, I adapted the slideshow module for the slide section.

Resized Image


I adapted mymenus module for menus

Resized Image



660
alain01
Re: My Latest Xoops Project
  • 2021/10/8 16:39

  • alain01

  • Just can't stay away

  • Posts: 530

  • Since: 2003/6/20


Yes, goob job and nice design.

I 've just noticed a strange thing :

On the https://www.invitahome.com/modules/publisher/item.php?itemid=27 link,
You can view xoops images then , it would be override by the good images.

It is alternative image I think
https://www.invitahome.com/modules/publisher/assets/images/default_image.jpg

<a data-lightbox="image-1" data-title="Gallery" href="https://www.invitahome.com/uploads/images/img615fd7bfe4885.jpg">
                                <
img class="img-responsive" alt="" src="https://www.invitahome.com/modules/publisher/assets/images/default_image.jpg" data-echo="https://www.invitahome.com/uploads/images/img615fd7bfe4885.jpg" />
                            a>




TopTop
« 1 ... 63 64 65 (66) 67 68 69 ... 29425 »



Login

Who's Online

715 user(s) are online (334 user(s) are browsing Support Forums)


Members: 0


Guests: 715


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