Forum Replies Created

Viewing 15 replies - 16 through 30 (of 41 total)
  • Thread Starter BlueSoft

    (@flexnds)

    Thanks maverick guy, dtree does rock..

    Also, it’s the same TOS that ezinearticles uses.

    Thread Starter BlueSoft

    (@flexnds)

    Nevermind… Resolved.. Here is the code..

    <?php
    // we add this, to show *all* posts sorted
    // alphabetically by title
         $posts = query_posts($query_string . '&orderby=title&order=asc&posts_per_page=-1');
    // here comes The Loop!
    if (have_posts()) : while (have_posts()) : the_post(); ?>
    <hr />
    <h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>

    Thread Starter BlueSoft

    (@flexnds)

    I took your advice and installed secure wordpress.. Thank you very much for the advice.. I was concerned about the security..

    Thread Starter BlueSoft

    (@flexnds)

    I used the WP-dTree plugin to get the categories as they are in the side bar.. As for the category template is looks like this..

    [Code moderated as per the Forum Rules. Please use the pastebin]

    Thread Starter BlueSoft

    (@flexnds)

    Thanks HAMMADHASSAN

    Thread Starter BlueSoft

    (@flexnds)

    This is quickly becoming a post about ads.. The hosting deal is great.. But if someone is reading an article about Unlaimed Property or the other hundred topics we have articles on I highly doubt they want to see a hosting deal. As website developers I think we forget that the average browsers do click on these ads.

    I would like to get more input on the site itself, not just the ads. Please review usability, functionality, and anything else you can think of.

    I am happy to take opinions on ad placement, color, and any other tips that may increase CTR.

    Thanks

    BlueSoft

    (@flexnds)

    Ya.. not digging the logo too much.. Try https://cooltext.com for logo..

    Thread Starter BlueSoft

    (@flexnds)

    Thank you..

    Ya Google ads are not so pretty but I do need to monetize the site..

    BlueSoft

    (@flexnds)

    I do not see the dynamic code in your side bar. Drop the code below into your sidebar.php file where you want the widget to show up. paste this

    <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Page Sidebar') ) : ?>
        <?php endif; ?>

    after one of these.

    </ul>

    BlueSoft

    (@flexnds)

    Loving the twisted vibe…

    BlueSoft

    (@flexnds)

    My bad.. I missed the fact that this template has another 5 sidebar files. I will look into this further..

    BlueSoft

    (@flexnds)

    You have some big problems in your sidebar.. If you click on the links tab you it appears you have an attempted iframe that links to Amazon.com. Not sure if you put this here or what. You will not be able to put an Amazon iframe in the links section. If you are trying to use this as an affiate link The other link links to hostgator.

    I also downloaded the Suffusion template. I reviewed both sidebars code in the original template. Neither have the code you pasted above. Did you create that template. Also both of the original sidebars have the dynamic sidebar code. A sidebar template should never call for a header or footer in the code. For clarification are you dropping the widget into the correct sidebar. You have chosen to use only the right sidebar so you must drop the widget into the right sidebar under widgets. I will put both sidebar codes below.

    sidebar.php should look like this

    <?php
    /**
     * Default (first) sidebar
     *
     * @package Suffusion
     * @subpackage Templates
     */
    
    global $options;
    foreach ($options as $value) {
        if (get_option($value['id']) === FALSE) {
        	$$value['id'] = $value['std'];
        }
        else {
        	$$value['id'] = get_option( $value['id'] );
        }
    }
    if (is_page_template('1l-sidebar.php') || is_page_template('2l-sidebars.php') || is_page_template('1l1r-sidebar.php')) {
    	$sidebar_alignment = 'left';
    }
    else if (is_page_template('1r-sidebar.php') || is_page_template('2r-sidebars.php')) {
    	$sidebar_alignment = 'right';
    }
    else if ($suf_sidebar_alignment == 'left') {
    	$sidebar_alignment = 'left';
    }
    else if ($suf_sidebar_alignment == 'right') {
    	$sidebar_alignment = 'right';
    }
    ?>
    <div class="dbx-group <?php echo $sidebar_alignment;?> <?php echo $suf_wa_sb1_style;?>" id="sidebar">
    <?php
    if (!function_exists('dynamic_sidebar') || !dynamic_sidebar()) {
    	if ($suf_sidebar_1_def_widgets == 'show') {
    ?>
          <!--sidebox start -->
          <div id="categories" class="dbx-box suf-widget widget_categories">
            <div class="dbx-content">
            <h3 class="dbx-handle <?php echo $suf_sidebar_header;?>"><?php _e('Categories', 'suf_theme'); ?></h3>
              <ul>
                <?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=1'); ?>
              </ul>
            </div>
          </div>
          <!--sidebox end -->
    
          <!--sidebox start -->
          <div id="archives" class="dbx-box suf-widget widget_archive">
            <div class="dbx-content">
            <h3 class="dbx-handle <?php echo $suf_sidebar_header;?>"><?php _e('Archives', 'suf_theme'); ?></h3>
              <ul>
                <?php wp_get_archives('type=monthly'); ?>
              </ul>
            </div>
          </div>
          <!--sidebox end -->
    
          <!--sidebox start -->
          <div id="links" class="dbx-box suf-widget">
            <div class="dbx-content">
            <h3 class="dbx-handle <?php echo $suf_sidebar_header;?>"><?php _e('Links', 'suf_theme'); ?></h3>
              <ul>
                <?php get_links('-1', '<li>', '</li>', '<br />', FALSE, 'id', FALSE, FALSE, -1, FALSE); ?>
              </ul>
            </div>
          </div>
          <!--sidebox end -->
    
          <!--sidebox start -->
          <div id="meta" class="dbx-box suf-widget">
            <div class="dbx-content">
            <h3 class="dbx-handle <?php echo $suf_sidebar_header;?>"><?php _e('Meta', 'suf_theme'); ?></h3>
              <ul>
    				<?php wp_register(); ?>
    				<li class="login"><?php wp_loginout(); ?></li>
    				<?php wp_meta(); ?>
    				<li><a href="https://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional"><?php _e('Valid XHTML', 'suf_theme'); ?></a></li>
    					<li class="rss"><a href="<?php bloginfo('rss2_url'); ?>"><?php _e('Entries (RSS)', 'suf_theme'); ?></a></li>
                  <li class="rss"><a href="<?php bloginfo('comments_rss2_url'); ?>"><?php _e('Comments (RSS)', 'suf_theme'); ?></a></li>
                  <li class="wordpress"><a href="https://www.www.remarpro.com" title="Powered by WordPress">WordPress</a></li>
                  <li><a href="https://dryicons.com/" title="DryIcons">DryIcons</a></li>
              </ul>
            </div>
          </div>
          <!--sidebox end -->
    <?php
    	}
    }
    ?>
    </div><!--/sidebar -->

    sidebar-2.php should look like this

    <?php
    global $options;
    foreach ($options as $value) {
        if (get_option($value['id']) === FALSE) {
        	$$value['id'] = $value['std'];
        }
        else {
        	$$value['id'] = get_option( $value['id'] );
        }
    }
    
    if (is_page_template('1l-sidebar.php') || is_page_template('2l-sidebars.php')) {
    	$sidebar_alignment = 'left';
    }
    else if (is_page_template('1r-sidebar.php') || is_page_template('2r-sidebars.php') || is_page_template('1l1r-sidebar.php')) {
    	$sidebar_alignment = 'right';
    }
    else if ($suf_sidebar_2_alignment == 'left') {
    	$sidebar_alignment = 'left';
    }
    else if ($suf_sidebar_2_alignment == 'right') {
    	$sidebar_alignment = 'right';
    }
    ?>
    
    <div class="dbx-group <?php echo $sidebar_alignment;?>  <?php echo $suf_wa_sb2_style;?>" id="sidebar-2">
    
      <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?>
      <?php endif; ?>
    
    </div><!--/sidebar-2 -->

    As you can see both sidebars originally came with the dynamic sidebar funtion. So either you are dropping the widget in the wrong sidebar or you have edited the original code.

    BlueSoft

    (@flexnds)

    In your admin panel open the Appearance box on your left navigation then click on editor. You will now see a list of files on your right hand side. You will find sidebar.php there. Drop that code in there. Without looking at the html I will not be able to tell you exactly where. You may have to try a couple different spots until you get the widgets to show up exactly where you want them to.

    BlueSoft

    (@flexnds)

    You should have some code that looks like this in your sidebar.php file

    <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Page Sidebar') ) : ?>
        <?php endif; ?>

    If not you need to put it where you want the widget to show up in your sidebar.php

    Forum: Plugins
    In reply to: Sexy Bookmarks not Showing
    BlueSoft

    (@flexnds)

    no problem.. great work.. just takes some digging around and you will always find a solution with wordpress.

Viewing 15 replies - 16 through 30 (of 41 total)