91
toddherrold
Re: appearance of broken gifs in main menu after using theme chooser

I figured out where the code string is coming from at least. In the admin/template section, is see that in the default template set, system_block_mainmenu.html has the following code:

Quote:
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="outer">
<!-- start module menu loop -->
<tr>
<td style="padding-left: 2px; " class="even"><a class="menuTop" href="<{$xoops_url}>/"><{$block.lang_home}></a></td>
</tr>
<{foreach item=module from=$block.modules}>
<tr>
<td width="20" align="center" valign="top" class="even">
<{if $module.directory=="newbb"}>
<img src="<{$xoops_imageurl}>images/forum.gif" width="20" height="20" align="absmiddle">
<{elseif $module.directory=='cbb'}>
<img src="<{$xoops_imageurl}>images/forum.gif" width="20" height="20" align="absmiddle">
<{elseif $module.directory=='xoopsmembers'}>
<img src="<{$xoops_imageurl}>images/members.gif" width="18" height="18">
<{elseif $module.directory=='wfdownloads'}>
<img src="<{$xoops_imageurl}>images/downloads.gif" width="18" height="18">
<{elseif $module.directory=='mydownloads'}>
<img src="<{$xoops_imageurl}>images/downloads.gif" width="18" height="18">
<{elseif $module.directory=='xt-repositorio'}>
<img src="<{$xoops_imageurl}>images/downloads.gif" width="18" height="18">
<{elseif $module.directory=='uploader'}>
<img src="<{$xoops_imageurl}>images/downloads.gif" width="18" height="18">
<{elseif $module.directory=='rmservices'}>
<img src="<{$xoops_imageurl}>images/library.gif" width="18" height="18">
<{elseif $module.directory=='rmdp'}>
<img src="<{$xoops_imageurl}>images/library.gif" width="18" height="18">
<{elseif $module.directory=='rmdp'}>
<img src="<{$xoops_imageurl}>images/library.gif" width="18" height="18">
<{elseif $module.directory=='contact'}>
<img src="<{$xoops_imageurl}>images/contacts.gif" width="18" height="18">
<{elseif $module.directory=='mylinks'}>
<img src="<{$xoops_imageurl}>images/links.gif" width="18" height="18">
<{elseif $module.directory=='wffaq'}>
<img src="<{$xoops_imageurl}>images/faq.gif" width="18" height="18">
<{elseif $module.directory=='xoopsfaq'}>
<img src="<{$xoops_imageurl}>images/faq.gif" width="18" height="18">
<{elseif $module.directory=='xoopspartners'}>
<img src="<{$xoops_imageurl}>images/links.gif" width="18" height="18">
<{elseif $module.directory=='smartpartners'}>
<img src="<{$xoops_imageurl}>images/links.gif" width="18" height="18">
<{elseif $module.directory=='xoopspoll'}>
<img src="<{$xoops_imageurl}>images/polls.gif" width="18" height="18">
<{elseif $module.directory=='news'}>
<img src="<{$xoops_imageurl}>images/news.gif" width="18" height="18">
<{elseif $module.directory=='rmgallery'}>
<img src="<{$xoops_imageurl}>images/gallery.gif" width="18" height="18">
<{elseif $module.directory=='xoopsgallery'}>
<img src="<{$xoops_imageurl}>images/gallery.gif" width="18" height="18">
<{elseif $module.directory=='myalbum'}>
<img src="<{$xoops_imageurl}>images/gallery.gif" width="18" height="18">
<{elseif $module.directory=='xmail'}>
<img src="<{$xoops_imageurl}>images/xmail.gif" width="18" height="18">
<{elseif $module.directory=='piCal'}>
<img src="<{$xoops_imageurl}>images/agenda.gif" width="18" height="18">
<{elseif $module.directory=='wfprojects'}>
<img src="<{$xoops_imageurl}>images/sections.gif" width="18" height="18">
<{elseif $module.directory=='wfsections'}>
<img src="<{$xoops_imageurl}>images/sections.gif" width="18" height="18">
<{elseif $module.directory=='sections'}>
<img src="<{$xoops_imageurl}>images/sections.gif" width="18" height="18">
<{elseif $module.directory=='Titulares'}>
<img src="<{$xoops_imageurl}>images/titulares.gif" width="18" height="18">
<{/if}>
</td>
<td class="even">
<a class="menuMain" href="<{$xoops_url}>/modules/<{$module.directory}>/"><{$module.name}></a>
<{foreach item=sublink from=$module.sublinks}>
<br><img src="<{$xoops_imageurl}>images/root.gif" align="absmiddle"><a class="menuSub" href="<{$sublink.url}>" style='margin-left: 5px;'><{$sublink.name}></a>
<{/foreach}>
</td>
</tr>
<{/foreach}>
<!-- end module menu loop -->
</table>


Now the corresponding modules/system/templates/blocks file on the server doesn't contain the 20x20 image code.

How do I rebuild the default template set? I guess somehow they were corrupted as I was switching between themes. When I update the system file, it says that block_mainmenu is rebuilt and put in the dbase, but it remains the same as that posted above.



92
toddherrold
Re: appearance of broken gifs in main menu after using theme chooser

thanks for the suggestion and the fast reply. I had about 500 temp files in there but no effect when i deleted them. It's weird because only certain modules are looking for navigation icons or something and they are all 20x20 gifs. As you click deeper into the site, the image source URLs for all the gifs change to look for the image in the module images folder.

In other words on the home page, the broken gifs are supposed to be coming from /images but when you click onto a menu link that has one of the broken images, then once in that module section, all of the broken menu gifs are caled from /modulename/images.

Bizarre behavior. . .

These broken images remain when i switch to the default theme set.



93
toddherrold
appearance of broken gifs in main menu after using theme chooser

I'm hoping someone can offer what is probably some quick help. I was playing around with changing themes on my site and when I selected back to the default theme (blogstyle), there appeared broken gif images in the main menu. I've looked through the theme files and the system module files and can't seem to figure out where these image strings are coming from. I've never had images in the menu, so I'm not sure where this code is coming from.

Any ideas?
http://www.hotdogblog.com



94
toddherrold
Re: what blog module?

NobuNobu has made the multi-user version of Wordpress for Xoops. Here is the link to the 0.3.3 version. There is a much newer version if you follow the links to his site.

One caveat is that the module has some bugs when running on XOOPS 2.2.3 and Nobu has said it will be a little while before the module is updated for 2.2.3, so I would avoid using it on 2.2.3 for now. 2.0.x should be fine. I use it and have been very pleased.

https://xoops.org/modules/repository/singlefile.php?cid=4&lid=1420



95
toddherrold
Re: Paypal Shop/Mall?

I think there are other commerce modules that work with paypal. . OSCommerce, Zshop, and some others.



96
toddherrold
Re: SmartMedia .85

I have this white page problem with smartmedia on XOOPS 2.2.3. Only affects the blocks and groups page in the smartmedia admin and if you enable the block it will kill the pages you have it displayed on.



97
toddherrold
Re: uploading media to smartmedia 0.85

helpful, but I hope the next version of smartmedia allows user uploads. . .



98
toddherrold
Re: EBay Module (beta) for Xoops

what about having multiple pages and categories, so that affiliates can list other peoples auctions for different keyword searches and basically create a full auction section on their site?



99
toddherrold
Re: Multiply plugin

I use the Wordpress ME module created by NobuNobu for multiuser blogs in Xoops. It works fine, but under 2.2.3 it causes some invalid session errors randomly, which is frustrating. But you do not need Multiply if you use this one.

I believe the XPress module functions just like regular wordpress, such that multiple people can register and post, but it all goes to one blog.



100
toddherrold
Re: security token

did this help? I'm having security token issues and have tried all these solutions and it's not working.




TopTop
« 1 ... 7 8 9 (10) 11 12 13 ... 23 »



Login

Who's Online

112 user(s) are online (65 user(s) are browsing Support Forums)


Members: 0


Guests: 112


more...

Donat-O-Meter

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

Latest GitHub Commits