Forum Replies Created

Viewing 6 replies - 181 through 186 (of 186 total)
  • Your welcome, I always find myself doing the same thing.

    Hi: might be easier to debug with a link to the actual page in question. However it seems that you may simply not have closed all your italic / em tags.

    Hi:

    Basically Sidebar Widgets are inserted through the following method that can be found in the theme’s template files.
    dynamic_sidebar( 'secondary-widget-area' );
    Where the value passed is the name of the sidebar.

    To be able to use the WordPress Widget Admin to drag-n-drop widgets to your named sidebars you will need to register them in your theme’s functions.php file.

    Example:

    register_sidebar(
        array(
            'name' => __( 'Secondary Widget Area', 'twentyten' ),
            'id' => 'secondary-widget-area',
            'description' => __( 'The secondary widget area', 'twentyten'
        ),
        'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
        'after_widget' => '</li>',
        'before_title' => '<h3 class="widget-title">',
        'after_title' => '</h3>',
     ) );

    You should be able to search the functions file and copy the existing registration and change the name to your newly created one and you should be all set.

    Hope this helps you out.

    Forum: Hacks
    In reply to: TinyMCE (with plugin)

    Martin:

    I compared your above code against my plugins code for including it’s custom tinyMCE control and it looks correct. When I first created my plugin I had the same issue and to correct it I needed to sync my tinyMCE’s command name to match the value used in the insert/register functions.

    For example:

    ed.addCommand('dam', function(ui, val) {
    ...
    });
    tinymce.PluginManager.add('dam', tinymce.plugins.dam);

    Hi:

    Looking briefly at your code I think you simply need to modify your if/else statement. Currently if your post_meta option is equal to bottom you are pre-pending the $postmeta data when you should be appending it.

    if ( get_option('post_meta') == 'bottom' ) return $content . $postmeta;
    	else return $postmeta . $content;

    Plugin Author Matthew Denton

    (@mdbitz)

    Hi, sorry for not getting back to you sooner. I’ll have to make it a point to check the forums for any issues users are having.

    WordPress Amazon Associate unfortunately is a long name and doesn’t display nicely in WordPress’ Admin menu. Therefore all the plugin settings and configurations are found under the menu item WP – Amazon.

    You will find that in the main Settings page that you can set your associate/affiliate ID for all Amazon Locales.

    Please let me know if you have any other questions and I will be sure to update the plugin page with detailed installation/setup instructions once I wrap up development of version 1.3.0

    P.S. Additional information on usage can be found on my project website

Viewing 6 replies - 181 through 186 (of 186 total)