Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Defaso klausimai (naujas klausymas)

Parašė defasas· 2010 Spa. 4 16:10:09
#1

Sveiki, sukuriau sia tema kad nereiketu kurti atskiru.

1. Atsisiunciau sia tema bet yra virsuje Naujausi siuntiniai kaip ji issimti.





Redagavo defasas· 2010 Lap. 22 20:11:50

Parašė switz· 2010 Spa. 4 16:10:18
#2

Įdėk theme.php failą,išimsim.

Parašė defasas· 2010 Spa. 4 16:10:32
#3

Jei galima i tu naujausiu siuntiniu vieta idekite prisijumgimo panele
Jei galima i tu naujausiu siuntiniu vieta idekite prisijumgimo panele

Redagavo defasas· 2010 Spa. 4 16:10:04

Parašė switz· 2010 Spa. 4 17:10:43
#4

defasas parašė:
Jei galima i tu naujausiu siuntiniu vieta idekite prisijumgimo panele
Jei galima i tu naujausiu siuntiniu vieta idekite prisijumgimo panele

Taigi yra jau šalia :D (Prisegtas theme.php)

Redagavo switz· 2010 Spa. 4 17:10:59

Parašė defasas· 2010 Spa. 4 20:10:00
#5

Switz, ACIU!

Gal kas galetumete duoti issileidziancia navigacija.




Redagavo defasas· 2010 Lap. 22 20:11:11

Parašė switz· 2010 Spa. 4 20:10:10
#6

Switz, ACIU!

jeigu negaila +11 už pagalbą ;)

Parašė defasas· 2010 Spa. 5 19:10:10
#7

Taigi trecias klausymas.
Kur iterpti Google Analytics koda?

Parašė edeni· 2010 Spa. 5 20:10:00
#8

v6: subheader.php
v7: themes/templates/header.php

Parašė defasas· 2010 Spa. 5 20:10:46
#9

o iterpti galiu bet kurioje vietoj?

Parašė edeni· 2010 Spa. 5 20:10:19
#10

tarp <head></head> tagų. geriausia .

Parašė defasas· 2010 Spa. 5 20:10:30
#11

Google analytics kodas :

<script type="text/javascript">
 
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-18738203-1']);
  _gaq.push(['_trackPageview']);
 
  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
 
</script>


Header :
Google analytics kodas :

<script type="text/javascript">
 
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-18738203-1']);
  _gaq.push(['_trackPageview']);
 
  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
 
</script>


Header :

Redagavo defasas· 2010 Spa. 5 20:10:07

Parašė edeni· 2010 Spa. 5 20:10:45
#12

<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: header.php
| Author: Nick Jones (Digitanium)
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
if (!defined("IN_FUSION")) { die("Access Denied"); }

require_once INCLUDES."output_handling_include.php";
require_once INCLUDES."header_includes.php";
require_once THEME."theme.php";

if ($settings['maintenance'] == "1" && !iADMIN) { redirect(BASEDIR."maintenance.php"); }
if (iMEMBER) { $result = dbquery("UPDATE ".DB_USERS." SET user_lastvisit='".time()."', user_ip='".USER_IP."' WHERE user_id='".$userdata['user_id']."'"); }

echo "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>\n";
echo "<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='".$locale['xml_lang']."' lang='".$locale['xml_lang']."'>\n";
echo "<head>\n<title>".$settings['sitename']."</title>\n";
echo "<meta http-equiv='Content-Type' content='text/html; charset=".$locale['charset']."' />\n";
echo "<meta name='description' content='".$settings['description']."' />\n";
echo "<meta name='keywords' content='".$settings['keywords']."' />\n";
echo "<link rel='stylesheet' href='".THEME."styles.css' type='text/css' media='screen' />\n";
if (file_exists(IMAGES."favicon.ico")) { echo "<link rel='shortcut icon' href='".IMAGES."favicon.ico' type='image/x-icon' />\n"; }
if (function_exists("get_head_tags")) { echo get_head_tags(); }
echo "<script type='text/javascript' src='".INCLUDES."jscript.js'></script>\n";
echo "<script type='text/javascript' src='".INCLUDES."jquery.js'></script>\n";
?>
<script type="text/javascript">
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-18738203-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>
<?php
echo "</head>\n<body>\n";

require_once THEMES."templates/panels.php";
ob_start();
?>



Parašė defasas· 2010 Spa. 8 14:10:42
#13

Sveiki, dar vienas klausimas:
Kaip patalpinti reklamini baneri kad jis judetu (nes kai idedu jis sustinges)

Parašė defasas· 2010 Spa. 13 15:10:06
#14

Naujas klausymas (kas atsakys gaus +11) :

Gal kas galite duoti sios navigacijos koda


Jinai yra www.filmas.wu.lt ir plz5.zxq.net