Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter biok

    (@biok)

    No, I’m just putting the call to the newsletter-signup.php on the sidebar as demonstrated above.

    Thread Starter biok

    (@biok)

    sorry, here is the content of the file:

    http://pastebin.com/4VFPsu9Z

    I also had this problem, my event didn’t show up in the widget calendar but I found out why. I just add the jquery call to the header and it solved the problem.

    just open your header.php and add this 2 lines of code at the top of the page.

    <?php wp_enqueue_script(“jquery”); ?>
    <?php wp_head(); ?>

    I’m using WP v3.2.1 and TinyMCE Advanced, and here is how I made the styles to show up on the drop down menu and on to the final post.
    I’m not adding anything to my functions.php

    1- once TinyMCE is installed and activated, go to your themes folder, let’s say in this case is wordpress/wp-content/themes/twentyten

    2- Tiny MCE will create a file in this folder (and all the themes folders) with the name:
    editor-style.css

    3- Open this file and add the style you want at the bottom of this file, for example:
    .MyTitle
    { font-family: Arial;
    font-size:12px;
    font-style:italic;
    }

    4- Save the editor-style.css file and LOG-OUT from WordPress.

    5- You MUST clear the cache once you are logged out from Word press.

    6- Log back in to WP and you will see the new style in your drop down menu

    7- TinyMCE will ONLY add the style tag in your final Post so when you publish the page or post your title will have the class only.
    something like this.
    < div class=”MyTitle”> This is the title of my post </div>

    8- You will have to add the same CSS style you added in to your
    editor-style.css, to your themes style.css file, located at, in my case
    wordpress/wp-content/themes/twentyten

Viewing 4 replies - 1 through 4 (of 4 total)