Forum Replies Created

Viewing 15 replies - 16 through 30 (of 50 total)
  • Forum: Plugins
    In reply to: User level administratoin
    Thread Starter c0c0c0

    (@c0c0c0)

    Thank you for the links, They all seem to be geared to specific pages, not to items within pages. I do have the role manager. I think I am going to take the syntax used within and see if I can get it to apply to elements of the form. Hopefully it will work this way.

    Thread Starter c0c0c0

    (@c0c0c0)

    Never mind, I fixed it by using content only, thank you again!!

    Thread Starter c0c0c0

    (@c0c0c0)

    Kafkaesqui I have your plugin and active, and it is perfect for what I need to use, however, I have it on my left hand collumn, and it is not fitting into that collumn, is there a way I can modify the width? I tried using the div tag for the collumn, and no joy. If this was designed to be put just outside the loop, then I will put it there.

    Thread Starter c0c0c0

    (@c0c0c0)

    Awesome! Thanks!

    Thread Starter c0c0c0

    (@c0c0c0)

    That is how it normally would be an install, in the gallery plugin it even has a place to put the path to the install. Everything else is working fine for it including the sidebar pictures.

    Thread Starter c0c0c0

    (@c0c0c0)

    Several times. It is valadated. I have tried with a fresh .htaccess file. I have tried updating to the most recent version of the plugin with the same results.

    Thread Starter c0c0c0

    (@c0c0c0)

    @lesbessant
    wordpress is at the root, gallery is in /gallery3

    All latest and greatest versions.

    Everything wass done automagicly through the wordpress permalink and the gallery plugin permalink creator.

    @dgold If I put the gallery underneeth, it breaks the gallery permalink structure.

    Forum: Plugins
    In reply to: viewlevel2 exclude pages
    Thread Starter c0c0c0

    (@c0c0c0)

    I wanted to update that I am now using the latest version of wordpress and view level and I still have not resolved this.

    If anyone can help me with this I would appreciate it.

    Forum: Plugins
    In reply to: viewlevel2 exclude pages
    Thread Starter c0c0c0

    (@c0c0c0)

    I tried doing that. I made brand new pages and made the view level * and it still made the pages set to 1 (that is my default page view. This and the vl=* method works fine for posts, however pages are unaffected by either method. Thank you.

    Thread Starter c0c0c0

    (@c0c0c0)

    bumpy bump!

    Thread Starter c0c0c0

    (@c0c0c0)

    **bump**

    Can anyone help me with this one please?

    Denis, I am having issues with the way the extract terms plugin is parsing the informatoin on the Tabloid theme, it is using a 2 column theme, and somehow Yahoo is parsing the data to the plugin. I would really like to use it on https://blogyournews.com because it works nicely with https://whogivesacrap.net. Is there a way I can have yahoo get the data from a different theme, the database directly, or something like what was discussed here:
    https://www.ads-software.com/support/topic/32071

    Thank you for any insite you can give me.

    Jared

    Thread Starter c0c0c0

    (@c0c0c0)

    I got it sorted out, I created page.php and hacked out the collumn instructions, thanks.

    I just hacked up his tags plugin and renamed it terms2keywords, upped it and made it a plugin. It isn’t perfect, but it works for me.

    Try this:


    <?php
    /*
    Plugin Name: Terms2tags*cough*keywords*cough*
    Plugin URI: https://www.semiologic.com/projects/terms2tags/
    Description: <a href="https://www.semiologic.com/projects/terms2tags/">Doc/FAQ</a> &bull; <a href="https://www.ads-software.com/tags/semiologic">Support forum</a> — Requires the <a href="https://www.semiologic.com/projects/extract-terms/">Extract terms plugin</a>. Returns Yahoo! terms as technorati tags. To use, call sem_terms2tags(); where you want the terms to appear.
    Version: 1.6
    Author: Denis de Bernardy
    Author URI: https://www.semiologic.com
    Place the following code in your header:
    <meta name="keywords" content="<?php if ( is_single() ) {
    sem_terms2keywords($wp_query->post);
    } else {
    bloginfo('name'); echo " - "; bloginfo('description');
    }
    ?>"/>
    */
    /*
    * Terms of use
    * ------------
    * Except where otherwise noted, this software is:
    * - Copyright 2005, Denis de Bernardy
    * - Licensed under the terms of the CC/GNU GPL
    * https://creativecommons.org/licenses/GPL/2.0/
    * - Provided as is, with NO WARRANTY whatsoever
    **/
    require_once dirname(__FILE__) . '/sem-extract-terms.php';
    /*
    * sem_get_terms2keywords()
    * ----------------
    * returns post's terms as meta keywords
    **/
    function sem_get_terms2keywords( $my_post = null )
    {
    if ( function_exists( 'sem_extract_terms' ) )
    $terms = sem_extract_terms( $my_post );
    if ( $terms && sizeof( $terms ) )
    {
    foreach ( $terms as $term )
    $output .= "$term" . ( ( ++$i < sizeof($terms) ) ? ', ' : '' );
    return $output;
    }
    } // end sem_get_terms2keywords()
    #
    # sem_terms2keywords()
    #
    function sem_terms2keywords($my_post = null)
    {
    echo sem_get_terms2keywords($my_post);
    } # end sem_terms2keywords()
    ?>

    Forum: Plugins
    In reply to: Spam Karma 2.0
    Thread Starter c0c0c0

    (@c0c0c0)

    Mainly because of the time it will take to re hack the code, and the time it took me to get plug ins to work like lj press.

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