201
heyula
TDMDownloads for theme
  • 2013/12/21 23:27

  • heyula

  • Theme Designer

  • Posts: 590

  • Since: 2008/4/24


I'm still working on it but will be nice when finished.

sample pictures :

Resized Image


Demo :

Content Page :http://xoopstasarim.com/tdm/modules/TDMDownloads/singlefile.php?lid=1
Home Page :http://xoopstasarim.com/tdm/

coming soon



202
heyula
Publisher add a field
  • 2013/12/20 13:31

  • heyula

  • Theme Designer

  • Posts: 590

  • Since: 2008/4/24


We know how to add additional fields to the publisher module ?



203
heyula
Re: For each page or the section the sidebar or blocks
  • 2013/12/19 9:35

  • heyula

  • Theme Designer

  • Posts: 590

  • Since: 2008/4/24


@Thanks Bleekk

publisher to pull the data from the module

The sample code:

<{php}>
include_once 
XOOPS_ROOT_PATH '/modules/tarifler/include/common.php';
$tarifler =& TariflerTarifler::getInstance();
$myts =& MyTextSanitizer::getInstance();
$itemsObj $tarifler->getHandler('item')->getItems($limit 14$start 0, array(_TARIFLER_STATUS_PUBLISHED), -1$sort 'datesub'$order='DESC'''true$criteria nulltrue);
$totalItems count($itemsObj);

global 
$items;
$items = array();
if (
$itemsObj) {
        for ( 
$i 0$i $totalItems$i++ ) {

            
$newItems['itemid']       = $itemsObj[$i]->itemid();
            
$newItems['title']        = $itemsObj[$i]->title();
            
$newItems['body']         = $itemsObj[$i]->body();
            
$newItems['votes']        = $itemsObj[$i]->votes();
            
$newItems['image']        = XOOPS_URL '/uploads/blank.gif';
            
$images $itemsObj[$i]->getImages();
            if (
is_object($images['main'])) {
                
$newItems['image'] = XOOPS_URL '/uploads/' $images['main']->getVar('image_name');
            }
        
$items[] = $newItems;
    }
}
<{/
php}>
       
        <
link rel="stylesheet" type="text/css" href="http://www.pratiktatlilar.org/themes/tatlitarifleri/homeslider/css/demo.css" />
        <
link rel="stylesheet" type="text/css" href="http://www.pratiktatlilar.org/themes/tatlitarifleri/homeslider/css/elastislide.css" />
        <
link rel="stylesheet" type="text/css" href="http://www.pratiktatlilar.org/themes/tatlitarifleri/homeslider/css/custom.css" />
        <
script src="http://www.pratiktatlilar.org/themes/tatlitarifleri/homeslider/js/modernizr.custom.17475.js"></script>
            <
div class="container demo-1">


            <
div class="main">
                <!-- 
Elastislide Carousel -->
                <
ul id="carousel" class="elastislide-list">
                 
            <{
php}>
        foreach ( 
$GLOBALS['items'] as $myrow )
        {
        
$GLOBALS['xoopsTpl']->assign('itemid'$myrow['itemid']);
        
$GLOBALS['xoopsTpl']->assign('title'$myrow['title']);
        
$GLOBALS['xoopsTpl']->assign('body'$myrow['body']);
        
$GLOBALS['xoopsTpl']->assign('votes'$myrow['votes']);
        
$GLOBALS['xoopsTpl']->assign('image'$myrow['image']);
<{/
php}>
    
                    <
li><a href="<{$xoops_url}>/modules/tarifler/item.php?itemid=<{$itemid}>"><img src="<{$image}>" width="160" height="270" title="<{$title}>" alt="<{$title}>" /></a></li>            
                    
                <{
php}>
        }
<{/
php}> 
        </
ul>
                <!-- 
End Elastislide Carousel -->

          </
div>
          </
div>

        <
script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
        <
script type="text/javascript" src="http://www.pratiktatlilar.org/themes/tatlitarifleri/homeslider/js/jquerypp.custom.js"></script>
        <
script type="text/javascript" src="http://www.pratiktatlilar.org/themes/tatlitarifleri/homeslider/js/jquery.elastislide.js"></script>
        <
script type="text/javascript">
            
            $( 
'#carousel' ).elastislide();
            
        </
script>



$itemsObj = $tarifler->getHandler('item')->getItems($limit = 14, $start = 0, array(_TARIFLER_STATUS_PUBLISHED), -1, $sort = 'datesub', $order='DESC', '', true, $criteria = null, true);

($limit = 14,.....15......20 as
array(_TARIFLER_STATUS_PUBLISHED), -1, $sort category selection =1-2-3 as

Sample Code :http://pratiktatlilar.org/themes/tatlitarifleri/homeslider.html

Resized Image


http://pratiktatlilar.org/



204
heyula
Re: For each page or the section the sidebar or blocks
  • 2013/12/19 8:17

  • heyula

  • Theme Designer

  • Posts: 590

  • Since: 2008/4/24


If you want to use a separate tpl for each model would

theme.html into Introduce the module into pages

sample :

<{if $smarty.server.PHP_SELF=='/index.php'}>
       <{
includeq file="$theme_name/home.html"}>
    <{/if}>
    
    <{if 
$xoops_dirname == "TDMDownloads"}>
          <{
includeq file="$theme_name/tdmfullstroy.html"}>
        <{/if}>
    
    <{if 
$xoops_dirname == "publisher"}>
          <{
includeq file="$theme_name/publishercontent.html"}>
        <{/if}>


sample :

Home :
http://kirpiproje.com/ = home.tpl

Publisher:
http://kirpiproje.com/modules/genel/ = publisher.tpl

Publisher Clone Menager :
http://kirpiproje.com/modules/menager/ = menager.tpl

Blog :
http://kirpiproje.com/modules/blog/ = blog.tpl




205
heyula
Xoops Technology Theme
  • 2013/11/28 16:15

  • heyula

  • Theme Designer

  • Posts: 590

  • Since: 2008/4/24


Resized Image


was performed using the publisher module
Very soon will be sharing

Demo :http://xoopstasarim.com/technology/



206
heyula
Re: TinyMCE v4 pour XOOPS
  • 2013/11/16 18:03

  • heyula

  • Theme Designer

  • Posts: 590

  • Since: 2008/4/24


Thanks for sharing...

SyntaxHighlighter Although it would be nice...
http://alexgorbatchev.com/SyntaxHighlighter/



207
heyula
Re: Pop up window
  • 2013/11/12 11:54

  • heyula

  • Theme Designer

  • Posts: 590

  • Since: 2008/4/24


Xoops Js Popup window Cokie

http://xoopstasarim.com/modules/themes/item.php?itemid=8



208
heyula
Re: Enzyme Theme for Xoops
  • 2013/10/11 12:21

  • heyula

  • Theme Designer

  • Posts: 590

  • Since: 2008/4/24


Quote:

Cesag wrote:
Great job Heyula, as always


Thanks Cesag.



209
heyula
Enzyme Theme for Xoops
  • 2013/10/11 8:48

  • heyula

  • Theme Designer

  • Posts: 590

  • Since: 2008/4/24


Hello dear xoops users

Resized Image


Enzyme theme for xoops

complete

templates organized in three modules

These Modules:

Publisher + SmartPartner + Contact

In addition to the module at one publisher did the external blocks

Publisher scroller module is automatic.

getting ready to share...

will be downloadable soon !

Demo :
Home Page :http://xoopstasarim.com/sonxoops/
Publisher Home Page :http://xoopstasarim.com/sonxoops/modules/publisher/
SmartPartner Home Page :http://xoopstasarim.com/sonxoops/modules/smartpartner/
Contact :http://xoopstasarim.com/sonxoops/modules/contact/

orjinal Theme :http://ethemes.com/live/Enzyme/index-nivo.html




210
heyula
Re: Xoops Theme vlogistix and AdsLight
  • 2013/10/7 7:06

  • heyula

  • Theme Designer

  • Posts: 590

  • Since: 2008/4/24


Dedicated Theme for AdsLight module

https://xoops.org/modules/news/article.php?storyid=6529




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



Login

Who's Online

196 user(s) are online (135 user(s) are browsing Support Forums)


Members: 0


Guests: 196


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