191
mariane
Re: New Shop Themes
  • 2009/7/30 8:25

  • mariane

  • Theme Designer

  • Posts: 649

  • Since: 2008/1/11


as i remember it's bbleck www.xoops-theme.com who created this theme
the road of success is always under construction



192
mariane
Re: is there way to embed a dynamic marquee into xoops theme.html
  • 2009/7/30 8:23

  • mariane

  • Theme Designer

  • Posts: 649

  • Since: 2008/1/11


you can do it by using marquee , a module found by instant zero, also if you use block anywhere (the hack founded by trabis www.xuups.com) you can manipulate more the place of the block
the road of success is always under construction



193
mariane
Re: Editor in blocks
  • 2009/7/27 12:19

  • mariane

  • Theme Designer

  • Posts: 649

  • Since: 2008/1/11


hello, yes you can make any editor the default one, for example if you want to make tinyeditor the default XOOPS editor (for blocks and everything) do the following:
- edit the file formdhtmltextarea.php , you can find it in this path: /class/xoopsform/
look for this code (i think it's on line 74):
var $htmlEditor = array();

and replace it by the following:
var $htmlEditor = array('XoopsFormTinyeditorTextArea''/class/xoopseditor/tinyeditor/formtinyeditortextarea.php');

save the file and replace it by the existing one in your website.
- edit this file: blockform.php, you can find it on this path:
module/system/admin/blocksadmin/
look for the folowing code in it:
$textarea = new XoopsFormDhtmlTextArea(_AM_CONTENT'bcontent'$block['content'], 1570);

and replace it by this one:
if ( is_readable(XOOPS_ROOT_PATH "/class/xoopseditor/tinyeditor/formtinyeditortextarea.php")) { 
    include_once(
XOOPS_ROOT_PATH "/class/xoopseditor/tinyeditor/formtinyeditortextarea.php"); 
    
$textarea = new XoopsFormTinyeditorTextArea(array('caption'=>_AM_CONTENT'name'=>'bcontent''value'=>$block['content'], 'width'=>'100%''height'=>'400px',  'xEditor'=>'1')); 
    }else{ 
    
$textarea = new XoopsFormDhtmlTextArea(_AM_CONTENT'bcontent'$block['content'], 1570); 
    }

save the file and replace it by the existing one in your website and update the system module.


now if you need to make this editor also the default editor of all modules installed in your website , do the following:

- go to xoops_version.php and look for this code:
array(_MI_NEWS_FORM_DHTML => 'dhtml',  
_MI_NEWS_FORM_COMPACT => 'textarea',  
_MI_NEWS_FORM_SPAW => 'spaw',  
_MI_NEWS_FORM_HTMLAREA => 'htmlarea',  
_MI_NEWS_FORM_KOIVI => 'koivi',  
_MI_NEWS_FORM_FCK => 'fck';

and replace it by the following:

array(_MI_NEWS_FORM_DHTML => 'dhtml',  
_MI_NEWS_FORM_COMPACT => 'textarea',  
_MI_NEWS_FORM_SPAW => 'spaw',  
_MI_NEWS_FORM_HTMLAREA => 'htmlarea',  
_MI_NEWS_FORM_KOIVI => 'koivi',  
_MI_NEWS_FORM_FCK => 'fck',  
'tinyeditor' => 'tinyeditor');


finally, edit include/functions.php
and look for:
case "koivi":  
if(!
$x22) {  
if ( 
is_readable(XOOPS_ROOT_PATH "/class/wysiwyg/formwysiwygtextarea.php")) {  
include_once(
XOOPS_ROOT_PATH "/class/wysiwyg/formwysiwygtextarea.php");  
$editor = new XoopsFormWysiwygTextArea($caption$name$value'100%''400px''');  
}  
} else {  
$editor = new XoopsFormEditor($caption"koivi"$editor_configs);  
}  
break;

and replace it by the following
case "tinyeditor":  
if ( 
is_readable(XOOPS_ROOT_PATH "/class/xoopseditor/tinyeditor/ formtinyeditortextarea.php")) {  
include_once(
XOOPS_ROOT_PATH "/class/xoopseditor/tinyeditor/formtinyeditortextarea.php");  
$editor = new XoopsFormTinyeditorTextArea(array 'caption'=>$caption'name'=>$name'value'=>$value'width'=>'100%''height'=>'400px''xEditor'=>'1'));  
}  
break;


Please try this methode on your local host first or backup the files that you will change in your website.
the road of success is always under construction



194
mariane
Re: Multi-menu links doesn't show in block on homepage
  • 2009/7/9 19:49

  • mariane

  • Theme Designer

  • Posts: 649

  • Since: 2008/1/11


after making the menu, you havr to go to the block area, choose multimenu blocks, and set visibility to the block also you have to give him a style to be shown : drop down ...etc you will find more than 5 styles. then you try it
the road of success is always under construction



195
mariane
Re: block with different color
  • 2009/7/9 19:06

  • mariane

  • Theme Designer

  • Posts: 649

  • Since: 2008/1/11


hello, i have another methode, try it and let me know if this exactly what you want or no.
if you need every block in left area with a color, you do the following:
- edit theme_blockleft.html and replace the existing code with this one:
<div class="<{cycle values = "d01,d02,d03,d04,d05,d06,d07,d08,d09"}>">
    <
div><{$block.title}></div>
    <
div class="blockContent"><{$block.content}></div>
</
div>

(sure you can use it for all block in the theme )
- add this code in the end of your css style:
.d01 {background-color:#99cc99; padding:2px 4px 2px 2px; font-size: 12px; margin-bottom:8px;}
.d02 {background-color:#cccc99; padding:2px 4px 2px 2px; font-size: 12px; margin-bottom:8px;}
.d03 {background-color:#294081; padding:2px 4px 2px 2px; font-size: 12px; margin-bottom:8px;}
.d04 {background-color:#5f9ea0; padding:2px 4px 2px 2px; font-size: 12px; margin-bottom:8px;}
.d05 {background-color:#3350a1; padding:2px 4px 2px 2px; font-size: 12px; margin-bottom:8px;}


that's all
you can edit colors, styles...etc by changing : .d01 ..etc
the road of success is always under construction



196
mariane
Re: Name of the module to re-order menus
  • 2009/7/2 12:12

  • mariane

  • Theme Designer

  • Posts: 649

  • Since: 2008/1/11


you can re order your menu by giving them numbers in the modules area (administration then modules) or you can use multimenu modules. also i knew that trabis is developping a new paid and great module for menus
the road of success is always under construction



197
mariane
Re: Does anyone know how I can clone News 1.63
  • 2009/7/1 7:22

  • mariane

  • Theme Designer

  • Posts: 649

  • Since: 2008/1/11


look there is a module developped by smart factory and called: smartclone,http://smartfactory.ca/modules/newbb/viewtopic.php?topic_id=1550&forum=25&post_id=6674#forumpost6674
run it as any other module but in your locahost
go to the path : modules/smartclone/pluggins
then copy and past any php exixting file in this folder, then give her the same title of the module you wish to clone : for example if you need to clone the news module , rename the file : news.php
and plz be sure that the module you need to clone is runing in your system.
now go the the smart clone module and click on any link you will get in the first line a drop down menu, choose from it the name of the module you need to clone, in the second line type the new name you need to give to your module : for example : localnews
and click ok,
within few seconds you will get a new cloned module

but note that maybe it wont be working 100% coz sumetimes there is some duplicated files so you wil get a blank page everytime you run the module

how to resolve this problem?
run the debugs mode from your preferences, and see the duplicated files who's caused the error,
then open the cloned module, and go to the specified pages and lines
and rename duplicated files
for example maybe some files called the same functions in the 2 modules, so you will face an error, for this reason see what's wrong and gave them another name but not totaly diffrent, but try to change some letters : for example xoopstube_mn, rename it for example tube_mn

wishing you an easy clone
have a nice day
the road of success is always under construction



198
mariane
Re: Yogurt.. let's start hacking
  • 2009/6/27 8:33

  • mariane

  • Theme Designer

  • Posts: 649

  • Since: 2008/1/11


look go to preferences then general settings and enable the debug mode, if you recieve an error on modules/profile/social.php in the line 181
do the following:
replace these lines in socila.php:
$xoopsTpl->assign('eprofile_version','eProfile '.XoopsLocal::number_format(($xoopsModule->getVar('version') / 100)));
by the following

$xoopsTpl->assign('eprofile_version','eProfile '.sprintf("%0.2f",$xoopsModule->getVar('version') / 100));
the road of success is always under construction



199
mariane
Re: Ferrari
  • 2009/6/26 5:54

  • mariane

  • Theme Designer

  • Posts: 649

  • Since: 2008/1/11


in the top of your theme.html put <{$xoops_banner}>
the road of success is always under construction



200
mariane
Re: Obituary module not working
  • 2009/6/12 8:33

  • mariane

  • Theme Designer

  • Posts: 649

  • Since: 2008/1/11


hello topgun21, the module requires php5 to run well, so you have to upgrade your php version or to create a .htaccess and put the following code in it:
AddHandler application/x-httpd-php5 .php .php4 .php3 .phtml

then upload it to obituaries module
the road of success is always under construction




TopTop
« 1 ... 17 18 19 (20) 21 22 23 »



Login

Who's Online

167 user(s) are online (108 user(s) are browsing Support Forums)


Members: 0


Guests: 167


more...

Donat-O-Meter

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

Latest GitHub Commits