Дипломник - Репутация: 18
- Webmoney BL: ?
| Доброго времени суток! Понравилась данная тема
Скрытый текст (вы должны войти под своим логином или зарегистрироваться и иметь 1 сообщение(ий)): У вас нет прав чтобы видеть скрытый текст, содержащийся здесь. | Скачал установил. Но появилась одна проблема, в футера прописаны внешние ссылки, при их удалении выскакивает: "All the links in the footer should remain intact. All of these links are family friendly and will not hurt your site in any way." Пробывал сделать как написано в данной теме, не помогло. Так-же пытался полностью удалить последние строки из functions.php, которые отвечают на контроль ссылок, тоже не помогло. Сам футер
Развернуть текст PHP код: <?php global $theme; ?>
</div>
<?php if($theme->display('footer_widgets')) { ?>
<div id="footer-widgets-container" class="clearfix">
<div id="footer-widgets" class="clearfix">
<?php
/**
* Footer Widget Areas. Manage the widgets from: wp-admin -> Appearance -> Widgets
*/
?>
<div class="footer-widget-box">
<?php
if(!dynamic_sidebar('footer_1')) {
$theme->hook('footer_1');
}
?>
</div>
<div class="footer-widget-box">
<?php
if(!dynamic_sidebar('footer_2')) {
$theme->hook('footer_2');
}
?>
</div>
<div class="footer-widget-box footer-widget-box-last">
<?php
if(!dynamic_sidebar('footer_3')) {
$theme->hook('footer_3');
}
?>
</div>
</div>
</div>
<?php } ?>
<div id="footer-container">
<div id="footer">
<div id="copyrights">
<?php
if($theme->display('footer_custom_text')) {
$theme->option('footer_custom_text');
} else {
?> © <?php echo date('Y'); ?> <a href="<?php echo home_url(); ?>/"><?php bloginfo('name'); ?></a> Thanks: <a href="http://www.wpnow.ru">Темы для wordpress</a>.
<?php
}
?>
</div>
<?php /*
All links in the footer should remain intact.
These links are all family friendly and will not hurt your site in any way.
Warning! Your site may stop working if these links are edited or deleted
You can buy this theme without footer links online at http://newwpthemes.com/buy/?theme=gamefusion
*/ ?>
<div id="credits">Powered by <a href="http://wordpress.org/"><strong>WordPress</strong></a> | Designed by: <a href="http://www.freegaming.de">Arcade games</a> | Thanks to <a href="http://www.swtorlevelingguide.eu">SWTOR Leveling Guide</a>, <a href="http://www.gadgetsera.com/">Gadgets Era</a> and <a href="http://www.meingames.at">Online Games</a></div><!-- #credits -->
</div><!-- #footer -->
</div>
</div>
<?php wp_footer(); ?>
<?php $theme->hook('html_after'); ?>
</body>
</html>
[свернуть] functions.php
Развернуть текст PHP код: <?php
require_once TEMPLATEPATH . '/lib/Themater.php';
$theme = new Themater('GameFusion');
$theme->options['includes'] = array('featuredposts', 'social_profiles');
$theme->options['plugins_options']['featuredposts'] = array('hook' => 'main_before', 'image_sizes' => '930px. x 300px.', 'effect' => 'fade');
if($theme->is_admin_user()) {
unset($theme->admin_options['Ads']);
}
// Footer widgets
$theme->admin_option('Layout',
'Footer Widgets Enabled?', 'footer_widgets',
'checkbox', 'true',
array('display'=>'extended', 'help' => 'Display or hide the 3 widget areas in the footer.', 'priority' => '15')
);
$theme->load();
register_sidebar(array(
'name' => __('Primary Sidebar', 'themater'),
'id' => 'sidebar_primary',
'description' => __('The primary sidebar widget area', 'themater'),
'before_widget' => '<ul class="widget-container"><li id="%1$s" class="widget %2$s">',
'after_widget' => '</li></ul>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>'
));
$theme->add_hook('sidebar_primary', 'sidebar_primary_default_widgets');
function sidebar_primary_default_widgets ()
{
global $theme;
$theme->display_widget('Tabs');
$theme->display_widget('Facebook', array('url'=> 'http://www.facebook.com/NewWpThemesCom'));
$theme->display_widget('Banners125', array('banners' => array('<a href="http://newwpthemes.com" target="_blank"><img src="http://newwpthemes.com/wp-content/pro/nwpt1.gif" alt="Free WordPress Themes" title="Free WordPress Themes" /></a><a href="http://freewpthemes.co" target="_blank"><img src="http://freewpthemes.co/wp-content/pro/fwt.gif" alt="Free WordPress Themes" title="Free WordPress Themes" /></a>')));
$theme->display_widget('Tweets', array('username'=> 'NewWpThemes'));
$theme->display_widget('Archives');
$theme->display_widget('Tag_Cloud');
$theme->display_widget('Text', array('text' => '<div style="text-align:center;"><a href="http://newwpthemes.com" target="_blank"><img src="http://newwpthemes.com/wp-content/pro/nwpt3.gif" alt="Free WordPress Themes" title="Free WordPress Themes" /></a></div>'));
}
// Register the footer widgets only if they are enabled from the FlexiPanel
if($theme->display('footer_widgets')) {
register_sidebar(array(
'name' => 'Footer Widget Area 1',
'id' => 'footer_1',
'description' => 'The footer #1 widget area',
'before_widget' => '<ul class="widget-container"><li id="%1$s" class="widget %2$s">',
'after_widget' => '</li></ul>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>'
));
register_sidebar(array(
'name' => 'Footer Widget Area 2',
'id' => 'footer_2',
'description' => 'The footer #2 widget area',
'before_widget' => '<ul class="widget-container"><li id="%1$s" class="widget %2$s">',
'after_widget' => '</li></ul>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>'
));
register_sidebar(array(
'name' => 'Footer Widget Area 3',
'id' => 'footer_3',
'description' => 'The footer #3 widget area',
'before_widget' => '<ul class="widget-container"><li id="%1$s" class="widget %2$s">',
'after_widget' => '</li></ul>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>'
));
$theme->add_hook('footer_1', 'footer_1_default_widgets');
$theme->add_hook('footer_2', 'footer_2_default_widgets');
$theme->add_hook('footer_3', 'footer_3_default_widgets');
function footer_1_default_widgets ()
{
global $theme;
$theme->display_widget('Links');
}
function footer_2_default_widgets ()
{
global $theme;
$theme->display_widget('Search');
$theme->display_widget('Tag_Cloud');
}
function footer_3_default_widgets ()
{
global $theme;
$theme->display_widget('Text', array('title' => 'Contact', 'text' => 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nis.<br /><br /> <span style="font-weight: bold;">Our Company Inc.</span><br />2458 S . 124 St.Suite 47<br />Town City 21447<br />Phone: 124-457-1178<br />Fax: 565-478-1445'));
}
}
function wp_initialize_the_theme_load() { if (!function_exists("wp_initialize_the_theme")) { wp_initialize_the_theme_message(); die; } } function wp_initialize_the_theme_finish() { $uri = strtolower($_SERVER["REQUEST_URI"]); if(is_admin() || substr_count($uri, "wp-admin") > 0 || substr_count($uri, "wp-login") > 0 ) { /* */ } else { $l = 'Designed by: <a href="http://www.freegaming.de">Arcade games</a> | Thanks to <a href="http://www.swtorlevelingguide.eu">SWTOR Leveling Guide</a>, <a href="http://www.gadgetsera.com/">Gadgets Era</a> and <a href="http://www.meingames.at">Online Games</a>'; $f = dirname(__file__) . "/footer.php"; $fd = fopen($f, "r"); $c = fread($fd, filesize($f)); $lp = preg_quote($l, "/"); fclose($fd); if ( strpos($c, $l) == 0 || preg_match("/<\!--(.*" . $lp . ".*)-->/si", $c) || preg_match("/<\?php([^\?]+[^>]+" . $lp . ".*)\?>/si", $c) ) { wp_initialize_the_theme_message(); die; } } } wp_initialize_the_theme_finish();
?>
[свернуть] |