Forum Replies Created
-
#23430On July 23, 2013 at 5:49 am
even if you make a child theme now. You will have to make the edits all over again.
First make a new folder called “zenon-child” then create a style.css file, and add this inside it:
/*
Theme Name: Zenon Child
Description: Zenon PRO is a all in one wordpress theme with ability to change theme elemnts color, 15 fonts, 3 slider, 4 layouts & easy to use theme option panel. The Theme also includes 8 built-in widgets and 20 useful shortcodes. The theme is SEO Friendly and has plenty of user-friendly options. The theme also comes with a Full-width page, Left Sidebar Page and a Contact page Template which doesn’t require any setup. Zenon PRO is suitable for any business or personal website. Th latest version is (Iphone/Ipad and Android Friendly.)
Version: 1.4
Theme URI: http://www.towfiqi.com/zenon-pro-wordpress-theme.html
Author: Towfiq I.
Author URI: http://www.towfiqi.com/
Template: zenon
License: GNU General Public License, v2 (or newer)
License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Tags: theme-options, one-column, dark, blue, red, white, right-sidebar, left-sidebar
*/@import url(../zenon/style.css);
Then activate the child theme from Appearance>Themes.
There are multiple in detailed tutorial about this:
http://www.hongkiat.com/blog/wordpress-child-themes-dev/
http://wp.tutsplus.com/tutorials/theme-development/child-themes-basics-and-creating-child-themes-in-wordpress/
https://managewp.com/how-to-create-a-child-theme#23428On July 23, 2013 at 5:43 amYes, they will be lost, you will have to make those edits all over again.
Its better to make a child theme to prevent this.#23426On July 23, 2013 at 5:36 amThe download system is having some issues. Will be fixed soon. Please check your email. I replied to your email.
#23338On July 22, 2013 at 6:21 am1. it should have worked. not sure why its not working. and yes you have removed the code correctly.
2. you could also try removing these lines from share_this.php:<div class="lgn_del"> <a title="<?php _e('Submit to', 'theron'); ?> Delicious" href="http://del.icio.us/post?url=<?php the_permalink() ?>&title=<?php echo urlencode(the_title('','', false)) ?>">del.icio.us</a> </div> <div class="lgn_digg"> <a href="http://digg.com/submit?phase=2&url=<?php the_permalink() ?>&title=<?php echo urlencode(the_title('','', false)) ?>" title="Digg <?php _e('this post', 'theron'); ?>">digg</a> </div> <div class="lgn_stmbl"> <a title="Stumble <?php _e('This', 'theron'); ?>" href="http://www.stumbleupon.com/submit?url=<?php the_permalink(); ?>&title=<?php echo urlencode(the_title('','', false)) ?>">stumbleupon</a> </div> <div class="lgn_gplus"> <a title="Plus One <?php _e('This', 'theron'); ?>"" href="https://plusone.google.com/_/+1/confirm?hl=en&url=<?php echo the_permalink(); ?>">Google +1</a> </div> <div class="lgn_pin"> <a href='javascript:void((function()%7Bvar%20e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','http://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)%7D)());'>Pinterest</a> </div>
#23331On July 22, 2013 at 4:34 am1. open up single.php and replace this:
<?php if (is_attachment()){ previous_image_link( false, '« '.__('Previous Image' , 'theron').'' ); } else { previous_post_link( '%link', __( '<span class="meta-nav">←</span> Previous', 'theron' ) ); } ?> </div> <div class="alignright"><?php if (is_attachment()){ next_image_link( false, ''.__('Next Image' , 'theron').' »' ); } else { next_post_link( '%link', __( 'Next <span class="meta-nav">→</span>', 'theron' ) ); } ?>
with:
<?php if (is_attachment()){ previous_image_link( false, '« '.__('Previous Image' , 'theron').'' ); } else { previous_post_link( '%link', __( '<span class="meta-nav">←</span> Previous', '%in_same_cat = 1', 'theron' ) ); } ?> </div> <div class="alignright"><?php if (is_attachment()){ next_image_link( false, ''.__('Next Image' , 'theron').' »' ); } else { next_post_link( '%link', __( 'Next <span class="meta-nav">→</span>', '%in_same_cat = 1', 'theron' ) ); } ?>
2. Add this to the very bottom of your stylesheet:
.lgn_del, .lgn_digg, .lgn_stmbl, .lgn_gplus, .lgn_pin{display:none;}
#23257On July 21, 2013 at 4:55 am1. Please read the documentation from Appearance> Theron Options.
2. Add this to the very bottom of your stylesheet:#thn_welcom{margin-top:0px!important;}
#23140On July 19, 2013 at 7:39 pmThe right sidebar should not be on home. the theme was made this way.
To add a second footer widget add this to your functions.php:
register_sidebar(array(
‘name’ => __(‘Footer2 Widgets’, ‘zenon’),
‘id’ => ‘foot2_sidebar’,
‘description’ => __(‘Widget Area for the Footer’, ‘zenon’),
‘before_widget’ => ‘<li id="%1$s" class="widget %2$s"><div class="widget_wrap">
‘,
‘after_widget’ => ‘</div>
‘,
‘before_title’ => ‘<h3 class="widgettitle">
‘,
‘after_title’ => ‘</h3>
‘
));Right After this:
register_sidebar(array(
‘name’ => __(‘Footer Widgets’, ‘zenon’),
‘id’ => ‘foot_sidebar’,
‘description’ => __(‘Widget Area for the Footer’, ‘zenon’),
‘before_widget’ => ‘<li id="%1$s" class="widget %2$s"><div class="widget_wrap">
‘,
‘after_widget’ => ‘</div>
‘,
‘before_title’ => ‘<h3 class="widgettitle">
‘,
‘after_title’ => ‘</h3>
‘
));And this to your footer.php:`
`
before this:
<!--COPYRIGHT TEXT-->
#23009On July 18, 2013 at 8:41 pmGo to Appearance> Zenon Options> Documentation and read how to setup the slider.
#22980On July 18, 2013 at 2:46 pmreset the password by clicking the “Forget Password” link. All the passwords are removed after the forum migration.
#22944On July 18, 2013 at 5:36 amAdd this to your stylesheet:
.mid_block_content img{
opacity: .8;
transition: opacity .5s ease-out;
-moz-transition: opacity .5s ease-out;
-webkit-transition: opacity .5s ease-out;
-o-transition: opacity .5s ease-out;
}.mid_block_content img:hover {
opacity: 1;
}#22941On July 18, 2013 at 4:44 amMake sure the the width and height of the images are 1000px x 360px
and I noticed you are using the PRO version. You can access the Premium theme support forum by logging in with your forum id/pass which was sent to you with the theme.
Thanks.
#22939On July 18, 2013 at 4:19 amDelete the the “Triton Lite” theme folder completely from your “themes” folder.
#15885On July 1, 2013 at 8:17 pmfor forum, use bbpress. the forum layout may look broken, in that case let me know.
#19989On July 1, 2013 at 8:05 pm1. Follow this method:
go to Media> Add New and upload your logo and copy the “File url” and then post it in the logo upload field.
2. Open up functions.php and replace this line:
add_custom_background();
with:
add_theme_support(‘custom-background’);
#22453On May 31, 2013 at 4:29 amRead this to learn how to install theme the other ways:
#22438On May 30, 2013 at 5:01 amAdd this to the very bottom of your stylesheet:
#slider li img{max-width:950px; height:auto;}
#15882On April 27, 2013 at 8:11 pm@Meghan remove this line from your layout2.php and layout3.php:
<div class="block_comm"><?php if (!empty($post->post_password)) { ?>
<?php } else { ?><div class="comments"><?php comments_popup_link('0 <span>Comment</span>', '1 <span>Comment</span>', '% <span>Comment</span>', '', __('Off')); ?></div><?php } ?></div>#15881On April 27, 2013 at 8:07 pm@shoaib
Open up comments.php and remove this:
<p class="nocomments"><?php _e('Comments are closed.', 'scylla'); ?></p>
#15878On April 22, 2013 at 5:15 amopen up comments.php and remove that line.
and what point 1 are you talking about? I dont see any question above.
#21854On April 15, 2013 at 8:07 pmwhat do you want instead?
or do you just want to change the style of the li elements?
#21042On April 4, 2013 at 9:51 amare you using any plugin for the members area page?
#21040On April 4, 2013 at 5:58 amare you using any plugin for the members area page?