Forum Replies Created

Viewing 15 replies - 16 through 30 (of 38 total)
  • Thread Starter jonny12345

    (@jonny12345)

    I cant find wpautop in theme functions.php or ds.functions.php.
    Any other ideas?

    Thread Starter jonny12345

    (@jonny12345)

    Hi,
    thanks very much – turns out pasting in plain editor made the uppercase stick, saved me from getitng into the html
    cheers
    jonny

    Thread Starter jonny12345

    (@jonny12345)

    just read on a previous forum post it could be due to “generous line height in wordpress but that doesn;t sound right

    Thread Starter jonny12345

    (@jonny12345)

    The reason for doing such a thing is for inserting documents such as privacy policy/disclaimers which are required to be in capitals. Also i just tried using the paste from word button but it still doesnt preserve the formatting
    Any other ideas?

    Thread Starter jonny12345

    (@jonny12345)

    anyone…?

    Thread Starter jonny12345

    (@jonny12345)

    hi cubecolour,
    thanks very much for the help. Had loads of pages in trash i needed to get rid of!
    I have taken your tip onboard aswell, next time will start a new thread.
    thanks
    very much

    Thread Starter jonny12345

    (@jonny12345)

    wow! thanks, i used tafts code and worked a charm!
    I don’t think the exclude pages plugin would solve the problem, as the mian problem before was that the default home page didn’t show up in my pages list.

    I have one other question!!!

    There are certain pages that i created then deleted, for example, i created privacy policy page, so https://www.mysite.com/privacy. However since deleting when i try to create the same page it will not let me create the same url. So if i put https://www.mysite.com/privacy for some reason it changes it to https://www.mysite.com/privacy-2

    I’m assuming the page i deleted must be coded somewhere and is still present somehow. I’m not sure.
    What do you think guys?

    Thread Starter jonny12345

    (@jonny12345)

    this is the header php. if that helps?

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
    <title><?php if(get_option('ds_home_title') && is_home()) echo stripslashes(get_option('ds_home_title')).' &raquo; '; ?><?php bloginfo('name'); ?> <?php wp_title(); ?></title>
    <meta name="description" content="<?php bloginfo('description'); ?>" />
    <meta http-equiv="imagetoolbar" content="no" />
    <meta name="MSSmartTagsPreventParsing" content="true" />
    <style type="text/css" media="all">
    @import url("<?php bloginfo('template_directory'); ?>/css/reset.css");
    @import url("<?php bloginfo('stylesheet_url'); ?>");
    <?php if(get_option('ds_custom_css')) { ?>
    @import url("<?php bloginfo('template_directory'); ?>/custom.css");
    <?php } ?>
    <?php if(get_option('ds_custom_styles')) { echo get_option('ds_custom_styles'); }?>
    
    </style>
    <style type="text/css" media="print">
      @import url("<?php bloginfo('template_directory'); ?>/css/print.css");
    </style>
    <?php if(get_option('ds_rss')) { ?><link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" /><?php } ?>
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    <?php if (is_singular()) wp_enqueue_script('comment-reply'); ?>
    <?php wp_head(); ?>
    <!-- <script src="<?php bloginfo('template_directory'); ?>/js/jquery.masonry.js" type="text/javascript"></script> -->
    <script src="<?php bloginfo('template_directory'); ?>/js/library.js" type="text/javascript"></script>
    <script src="<?php bloginfo('template_directory'); ?>/js/jquery.corner.js" type="text/javascript"></script>
    <?php include (TEMPLATEPATH . '/inc/scripts.php'); ?>
    <?php if(get_option('ds_header_tracker')) echo stripslashes(get_option('ds_header_tracker')); ?>
    
    <script type="text/javascript">
          jQuery(document).ready(function() {
            jQuery('.url').corner('round all 5px');
          });
        </script> 
    
    </head>

    Thread Starter jonny12345

    (@jonny12345)

    what do you think keesie?

    Thread Starter jonny12345

    (@jonny12345)

    <!--Page Navigation-->
    <?php
    if(is_array(get_option('ds_cat_exclude'))) $ds_cat_exclude = implode(',', get_option('ds_cat_exclude'));
    // if($ds_cat_exclude) $ds_cat_exclude = $ds_cat_exclude.','.get_option('ds_blog_cat');
    if(is_array(get_option('ds_exclude'))) $ds_exclude = implode(',', get_option('ds_exclude'));
    ?>
    <?php if(get_option('ds_landing') == 'Categories' || get_option('ds_landing') == 'Pages') { ?>
    <?php if (get_option('ds_home_link')) $hidden = ' hidden'; ?>
    <ul id="menu">
    	<li<?php if (is_home()) echo ' class="current_page_item'.$hidden.'"'; ?>><a href="<?php echo get_settings('home'); ?>/">Home</a></li>
    	<?php echo $ds_cat_exclude; if(get_option('ds_landing') == 'Categories') wp_list_categories('exclude='.$ds_cat_exclude.'&orderby=name&show_count=0&title_li='); else wp_list_pages('exclude='.$ds_exclude.'&title_li=&sort_column=menu_order'); ?>
    	<?php if(get_option('ds_blog') && !get_option('ds_blog_link')) echo '<li><a href="'.get_category_link(get_option('ds_blog_cat')).'">Blog</a></li>'; ?>
    </ul>
    <?php } ?>
    Thread Starter jonny12345

    (@jonny12345)

    hi,
    i have not solved the problem, only made “trading terminology” the parent of my second home button. So now i still have two home buttons, but one is just hidden.
    I Would still really like to change the code to get rid of the default one that i can’t change currently, just for the future when i do an other website. Also because i want to get to the bottom of this properly!!

    Here is the navigation php. i cannot find wp_list_pages in header or index php
    <!–Page Navigation–>
    <?php
    if(is_array(get_option(‘ds_cat_exclude’))) $ds_cat_exclude = implode(‘,’, get_option(‘ds_cat_exclude’));
    // if($ds_cat_exclude) $ds_cat_exclude = $ds_cat_exclude.’,’.get_option(‘ds_blog_cat’);
    if(is_array(get_option(‘ds_exclude’))) $ds_exclude = implode(‘,’, get_option(‘ds_exclude’));
    ?>
    <?php if(get_option(‘ds_landing’) == ‘Categories’ || get_option(‘ds_landing’) == ‘Pages’) { ?>
    <?php if (get_option(‘ds_home_link’)) $hidden = ‘ hidden’; ?>
    <ul id=”menu”>
    <li<?php if (is_home()) echo ‘ class=”current_page_item’.$hidden.'”‘; ?>>/”>Home
    <?php echo $ds_cat_exclude; if(get_option(‘ds_landing’) == ‘Categories’) wp_list_categories(‘exclude=’.$ds_cat_exclude.’&orderby=name&show_count=0&title_li=’); else wp_list_pages(‘exclude=’.$ds_exclude.’&title_li=&sort_column=menu_order’); ?>
    <?php if(get_option(‘ds_blog’) && !get_option(‘ds_blog_link’)) echo ‘

    • Blog
    • ‘; ?>

      <?php } ?>

    Thread Starter jonny12345

    (@jonny12345)

    this is the code in header.php that refers to the homepage and title, i think…
    what do i need to change?

    <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
    <title><?php if(get_option(‘ds_home_title’) && is_home()) echo stripslashes(get_option(‘ds_home_title’)).’ » ‘; ?><?php bloginfo(‘name’); ?> <?php wp_title(); ?></title>
    <meta name=”description” content=”<?php bloginfo(‘description’); ?>” />

    Thread Starter jonny12345

    (@jonny12345)

    what code do you want to see… can you not do the view source code on your browser?

    Thread Starter jonny12345

    (@jonny12345)

    ah thanks guys, just needed to clear my browser…
    Next million dollar quesition
    On my homepage for some reason i have two “home” options in the navigation bar. One of them i set as my front static page, the other one i don’t have a clue where it came from or how to get rid of it, as it is not listed as one of my pages. I am using affilaite theme as my wordpress theme and when i go to normal word press theme there is only one home button.
    very strange.
    let me know what you think
    Link is below
    https://www.professionaltradingsecrets.com/

    Thread Starter jonny12345

    (@jonny12345)

    by the way forerrunner, if you have skype or msn, or somekind of livechat, would be really useful to steal you for 5minutes if you have the spare time, let me know!
    thanks
    j

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