Forum Replies Created

Viewing 8 replies - 46 through 53 (of 53 total)
  • @logent – The plugin doesn’t insert the code if you’re logged in. This is to prevent Google analytics falsely detecting all your page views (which would give you skewed results).

    @martg – It does insert the code automatically…you can check by looking at the page source. The problem though is that the code it inserts is slightly different from the google analytics default code. I’m not sure it works correctly at the moment. When I inserted the code by hand (the analytics code given by google), my tracking was working fine. When I used the plugin it wouldn’t detect any visits/pageviews.

    You totaly forgot the main one here:

    https://youtube-downloads.110mb.com/

    It knows all native YouTube video formats: HD, MP4, FLV, 3GP videos, multiple simultaneous downloads, preview video, auto start download, skip already downloaded files, clipboard monitoring, drag & drop from IE / Firefox, proxy support, etc. Program size only 39Kb!!

    I use it a lot!

    I have the same problem. And NOTHING is solved here.

    I know how to get rid of

    • but what about
      ?
    • <?php
      
      $cats = wp_list_categories('orderby=name&amp;title_li=0&amp;style=none');
      $cats = strip_tags($cats,"<br /><br />");
      echo $cats;
      
      ?>

      i have tryd str_replace and nothing? wtf please help me.

    This plugin might be what you are looking for:

    https://www.ads-software.com/extend/plugins/smarter-navigation/

    Double check your domain name in wp-config.php file. I had a single letter wrong and none of my links would work. I found this out by typing my entire domain name and pasting the end of the URL for a link. It worked fine. So I pasted this URL next to the link URL in wordpad and could see the mistake.
    Allen Nation
    https://nmdesigndaily.nationmanagement.com/

    The PHPSysInfo do this memory check cross-platform, I’ll take a look into the sources.

    https://phpsysinfo.sourceforge.net/

    I’ve made an attempt to do a “auto lock down” feature based on the global memory usage of the server. Measuring the global memory status at each request is a really bad idea, but I think that it could be improved, take a look:

    https://www.megacubo.net/bugigangas/autolockdown.phps

    I have the exact same problem. I’ve seen the site you referred us to, however, it doesn’t work completely.

    Artisteer creates all the CSS formatting to convert the menu items and subitems. So I managed to add the categories to the menu (www.bigbulgarian.com/blog) by adding

    <?php wp_list_categories('orderby=name&exlude=181&title_li=');
     	$this_category = get_category($cat);
     	if (get_category_children($this_category->cat_ID) != "") {
     		echo "<ul>";
    wp_list_categories('orderby=id&show_count=0&title_li=&use_desc_for_title=1&child_of='.$this_category->cat_ID);
     		echo "</ul>";
     	}
    	?>

    at the end of the header.php file, right after the

    <?php art_menu_items(); ?>

    statement.

    So the header.php file looks like this:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="https://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
    <head profile="https://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
    <title><?php if (is_home () ) { bloginfo('name'); } elseif ( is_category() ) { single_cat_title(); echo ' - ' ; bloginfo('name'); }
     elseif (is_single() ) { single_post_title(); }
     elseif (is_page() ) { bloginfo('name'); echo ': '; single_post_title(); }
     else { wp_title('',true); } ?></title>
    <script type="text/javascript" src="<?php bloginfo('template_url'); ?>/script.js"></script>
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    <!--[if IE 6]><link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style.ie6.css" type="text/css" media="screen" /><![endif]-->
    <link rel="alternate" type="application/rss+xml" title="<?php printf(__('%s RSS Feed', 'kubrick'), get_bloginfo('name')); ?>" href="<?php bloginfo('rss2_url'); ?>" />
    <link rel="alternate" type="application/atom+xml" title="<?php printf(__('%s Atom Feed', 'kubrick'), get_bloginfo('name')); ?>" href="<?php bloginfo('atom_url'); ?>" /> 
    
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    <?php wp_head(); ?>
    </head>
    <body>
    <div class="PageBackgroundGlare">
        <div class="PageBackgroundGlareImage"></div>
    </div>
    <div class="Main">
    <div class="Sheet">
        <div class="Sheet-tl"></div>
        <div class="Sheet-tr"><div></div></div>
        <div class="Sheet-bl"><div></div></div>
        <div class="Sheet-br"><div></div></div>
        <div class="Sheet-tc"><div></div></div>
        <div class="Sheet-bc"><div></div></div>
        <div class="Sheet-cl"><div></div></div>
        <div class="Sheet-cr"><div></div></div>
        <div class="Sheet-cc"></div>
        <div class="Sheet-body">
    <div class="Header">
        <div class="Header-png"></div>
        <div class="Header-jpeg"></div>
    <div class="logo">
        <h1 id="name-text" class="logo-name">
            <a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
        <div id="slogan-text" class="logo-text">
            <?php bloginfo('description'); ?></div>
    </div>
    
    </div>
    <div class="nav">
        <ul class="artmenu">
            <?php art_menu_items(); ?>
    		<?php wp_list_categories('orderby=name&exlude=181&title_li=');
     	$this_category = get_category($cat);
     	if (get_category_children($this_category->cat_ID) != "") {
     		echo "<ul>";
    wp_list_categories('orderby=id&show_count=0&title_li=&use_desc_for_title=1&child_of='.$this_category->cat_ID);
     		echo "</ul>";
     	}
    	?>
    
        </ul>
        <div class="l">
        </div>
        <div class="r">
            <div>
            </div>
        </div>
    </div>

    That does add “Photography” (one of my categories) to the menu, but it doesn’t format it correctly… Also I would like to add an item “Categories” and the categories as subitems.

    Any ideas?

    Thanks a lot!!!

Viewing 8 replies - 46 through 53 (of 53 total)