Theme Support Forum

Support Forum for Free and Premium Themes. Premium Theme Forums are Private! Please log in first to see the Premium forums

Forum Replies Created

Viewing 25 posts - 1,976 through 2,000 (of 2,462 total)

Home Forums

  • #23430

    Towfiq I.

    administrator

    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

    #23428

    Towfiq I.

    administrator

    Yes, they will be lost, you will have to make those edits all over again.
    Its better to make a child theme to prevent this.

    #23426

    Towfiq I.

    administrator

    The download system is having some issues. Will be fixed soon. Please check your email. I replied to your email.

    #23338

    Towfiq I.

    administrator

    1. 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&amp;url=<?php the_permalink() ?>&amp;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(&apos;script&apos;);e.setAttribute(&apos;type&apos;,&apos;text/javascript&apos;);e.setAttribute(&apos;charset&apos;,&apos;UTF-8&apos;);e.setAttribute(&apos;src&apos;,&apos;http://assets.pinterest.com/js/pinmarklet.js?r=&apos;+Math.random()*99999999);document.body.appendChild(e)%7D)());'>Pinterest</a>
                    </div>
    #23331

    Towfiq I.

    administrator

    1. open up single.php and replace this:

    					  <?php if (is_attachment()){ previous_image_link( false, '&#171; '.__('Previous Image' , 'theron').'' ); } else { previous_post_link( '%link', __( '<span class="meta-nav">&larr;</span> Previous', 'theron' ) ); } ?> 
                          </div>
    						<div class="alignright"><?php if (is_attachment()){ next_image_link( false, ''.__('Next Image' , 'theron').' &#187;' ); } else { next_post_link( '%link', __( 'Next <span class="meta-nav">&rarr;</span>', 'theron' ) ); } ?>

    with:

    					  <?php if (is_attachment()){ previous_image_link( false, '&#171; '.__('Previous Image' , 'theron').'' ); } else { previous_post_link( '%link', __( '<span class="meta-nav">&larr;</span> Previous', '%in_same_cat = 1', 'theron' ) ); } ?> 
                          </div>
    						<div class="alignright"><?php if (is_attachment()){ next_image_link( false, ''.__('Next Image' , 'theron').' &#187;' ); } else { next_post_link( '%link', __( 'Next <span class="meta-nav">&rarr;</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;}

    #23257

    Towfiq I.

    administrator

    1. Please read the documentation from Appearance> Theron Options.
    2. Add this to the very bottom of your stylesheet:

    #thn_welcom{margin-top:0px!important;}

    #23140

    Towfiq I.

    administrator

    The 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-->

    #23009

    Towfiq I.

    administrator

    Go to Appearance> Zenon Options> Documentation and read how to setup the slider.

    #22980

    Towfiq I.

    administrator

    reset the password by clicking the “Forget Password” link. All the passwords are removed after the forum migration.

    #22947

    Towfiq I.

    administrator

    do not remove the

    #22944

    Towfiq I.

    administrator

    Add 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;
    }

    #22941

    Towfiq I.

    administrator

    Make 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.

    #22939

    Towfiq I.

    administrator

    Delete the the “Triton Lite” theme folder completely from your “themes” folder.

    #15885

    Towfiq I.

    administrator

    for forum, use bbpress. the forum layout may look broken, in that case let me know.

    #19989

    Towfiq I.

    administrator

    1. 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’);

    #22605

    Towfiq I.

    administrator

    what color do you want?

    #22453

    Towfiq I.

    administrator

    Read this to learn how to install theme the other ways:

    http://codex.wordpress.org/Using_Themes#Adding_New_Themes

    #22438

    Towfiq I.

    administrator

    Add this to the very bottom of your stylesheet:

    #slider li img{max-width:950px; height:auto;}

    #15882

    Towfiq I.

    administrator

    @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>

    #15881

    Towfiq I.

    administrator

    @shoaib

    Open up comments.php and remove this:

    <p class="nocomments"><?php _e('Comments are closed.', 'scylla'); ?></p>

    #15878

    Towfiq I.

    administrator

    open up comments.php and remove that line.

    and what point 1 are you talking about? I dont see any question above.

    #21854

    Towfiq I.

    administrator

    what do you want instead?

    or do you just want to change the style of the li elements?

    #21042

    Towfiq I.

    administrator

    are you using any plugin for the members area page?

    #21040

    Towfiq I.

    administrator

    are you using any plugin for the members area page?

    #21761

    Towfiq I.

    administrator

    copy the css changes and then install the PRO and then paste the css commands that you copied to the PRO stylesheet.

Viewing 25 posts - 1,976 through 2,000 (of 2,462 total)