I have no plugin option

  • Unknown's avatar

    I am new to wordpress i wanted help with their is no plugin option on my admin dashboard

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    No, and there won’t be either. You have a WordPress.COM blog, and plugins are only available for WordPress.ORG blogs. WP.com is a turnkey blogging system with a shared backbone, meaning if you added plugin code, it would affect everybody using it. So, for security reasons, we can’t add plugins or external themes or iframes, javascript, or raw flash files.

  • Unknown's avatar

    We cannot use plugins on WordPress.COM.
    What are you wanting to do? WP.COM has lots of widgets to accomplish many things, so perhaps there is something you can use.

    But the first thing you need to know is that there are different kinds of WordPress. While they are related, the platforms are very different. Please read the details here:

    WordPress.com vs. WordPress.org

  • Unknown's avatar

    If i want to add site map and this code on my blog what i should have to do

    <?php
    /**
    * @package Feedjit
    * @author Feedjit Inc.
    * @version 1.0.2
    */
    /*
    Plugin Name: Feedjit Live Traffic Feed
    Plugin URI: http://feedjit.com/
    Description: Feedjit’s Live Traffic Feed shows your recent visitors in your blog side-bar. Click the “Watch in Real-Time” link at the bottom to watch your visitors arrive on your site in real-time, see where they came from, what browser and operating system they’re running, which page they land on and what they click to leave.
    Author: Feedjit Inc.
    Version: 1.0.2
    Author URI: http://feedjit.com/
    */
    function feedjit_version(){ return ‘1.0.2’; }
    function feedjit_widget(){
    $o = get_option(‘feedjit_options’);
    echo ‘<script type=”text/javascript” src=”http://feedjit.com/serve/?’ .
    ‘wid=33392d54b81e938d’ .
    ‘&pid=0’ .
    ‘&proid=0’ .
    ‘&vv=1022’ .
    ‘&dd=’ .
    ‘&bc=’ . $o[‘backgroundColor’] .
    ‘&tc=’ . $o[‘textColor’] .
    ‘&brd1=’ . $o[‘borderColor’] .
    ‘&lnk=’ . $o[‘linkColor’] .
    ‘&hc=’ . $o[‘headingColor’] .
    ‘&hfc=’ . $o[‘headerFooterColor’] .
    ‘&btn=’ . $o[‘buttonColor’] .
    ‘&ww=’ . $o[‘width’] .
    ‘&tft=3’ .
    ‘”></script><noscript>Feedjit Live Traffic Feed</noscript>’;
    }
    function feedjit_control(){
    $o = get_option(‘feedjit_options’);
    if($_POST[‘fj_dataSent’]){
    foreach(array(‘width’, ‘backgroundColor’, ‘textColor’, ‘headingColor’, ‘borderColor’, ‘linkColor’, ‘headerFooterColor’, ‘buttonColor’) as $key){
    $fjkey = ‘fj_’ . $key;
    $o[$key] = $_POST[$fjkey];
    }
    update_option(‘feedjit_options’, $o);
    }
    echo(
    ‘<input type=”hidden” name=”fj_dataSent” value=”1″ /><table border=”0″ cellpadding=”2″ cellspacing=”0″>’ .
    ‘<tr><td>Width in pixels:</td><td><input type=”text” name=”fj_width” value=”‘ . $o[‘width’] . ‘” size=”3″ /></td></tr>’ .
    ‘<tr><td>Background color:</td><td><input class=”feedjitColor” type=”text” name=”fj_backgroundColor” value=”‘ . $o[‘backgroundColor’] . ‘” size=”6″ /></td></tr>’ .
    ‘<tr><td>Text color:</td><td><input class=”feedjitColor” type=”text” name=”fj_textColor” value=”‘ . $o[‘textColor’] . ‘” size=”6″ /></td></tr>’ .
    ‘<tr><td>Heading color:</td><td><input class=”feedjitColor” type=”text” name=”fj_headingColor” value=”‘ . $o[‘headingColor’] . ‘” size=”6″ /></td></tr>’ .
    ‘<tr><td>Border color:</td><td><input class=”feedjitColor” type=”text” name=”fj_borderColor” value=”‘ . $o[‘borderColor’] . ‘” size=”6″ /></td></tr>’ .
    ‘<tr><td>Link color:</td><td><input class=”feedjitColor” type=”text” name=”fj_linkColor” value=”‘ . $o[‘linkColor’] . ‘” size=”6″ /></td></tr>’ .

    ‘<tr><td>Header/Footer:</td><td><input class=”feedjitColor” type=”text” name=”fj_headerFooterColor” value=”‘ . $o[‘headerFooterColor’] . ‘” size=”6″ /></td></tr>’ .
    ‘<tr><td>Button color:</td><td><input class=”feedjitColor” type=”text” name=”fj_buttonColor” value=”‘ . $o[‘buttonColor’] . ‘” size=”6″ /></td></tr>’ .

    ‘</table>’ .
    ‘<script type=”text/javascript”>jscolor.init();</script>’

    );
    }
    function feedjit_loaded(){
    feedjit_setDefaultOpts();
    $widget_ops = array(‘classname’ => ‘Feedjit’, ‘description’ => “Feedjit Live Traffic Feed.” );
    wp_register_sidebar_widget(‘feedjit_widget’, ‘Feedjit’, ‘feedjit_widget’, $widget_ops);
    register_widget_control(‘feedjit_widget’, ‘feedjit_control’);
    }
    function feedjit_setDefaultOpts(){
    $defaults = array(
    ‘width’ => 160,
    ‘backgroundColor’ => ‘000000’,
    ‘textColor’ => ‘F5F5F5’,
    ‘headingColor’ => ‘FFFFFF’,
    ‘borderColor’ => ‘454545’,
    ‘linkColor’ => ‘C95050’,
    ‘headerFooterColor’ => ‘5C5A5A’,
    ‘buttonColor’ => ‘9C5B63’,
    );

    $o = get_option(‘feedjit_options’);
    $missing = false;
    if(! $o){
    $missing = true;
    } else {
    foreach(array_keys($defaults) as $k){
    if((! isset($o[$k])) && (! preg_match(“/(?:hideLogo|hideLinks|wHead)/”, $k)) ){
    $missing = true;
    break;
    }
    }
    }
    if($missing){
    update_option(‘feedjit_options’, $defaults);
    }
    }
    function feedjit_head(){
    echo ‘<script type=”text/javascript”>var feedjit_pid=”0″; var feedjit_wid=”33392d54b81e938d”; var feedjit_proid=”0″; var feedjit_version=”1.0.2″;</script><script type=”text/javascript” src=”http://feedjit.com/js/wp/wp.js”></script>’;
    }

    add_action(‘plugins_loaded’,’feedjit_loaded’);
    add_action(‘admin_head’, ‘feedjit_head’);

  • Unknown's avatar

    It’s javascript. You can’t add it; it’s a security risk. There are lots of maps you can use here, like Clustr maps or Google maps, but you can’t use this.

  • Unknown's avatar
  • Unknown's avatar

    If they offer an HTML-only version, you can use that, and many sites do offer a “WordPress option”.

  • The topic ‘I have no plugin option’ is closed to new replies.