Wordpress gurus.... halp!

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • DWB
    Registered User
    • Jul 2003
    • 31779

    #1

    Wordpress gurus.... halp!

    Where do I find the buttons in the new-post admin that allow you to make text bold, linked, listed, align, quotes and so on?

    I'm trying to add some things to it so I can inject it into posts as I need them.

    I looked in post-new.php but I don't see them.

    Thanks.
  • DVTimes
    xxx
    • Jun 2003
    • 31658

    #2
    the easy thing to do is type it in a htlm doc, then copy and past it in.

    its much easer than typing it in and it should copy bold and so on.
    XXX

    Comment

    • CYF
      Coupon Guru
      • Mar 2009
      • 10973

      #3
      Originally posted by DWB
      Where do I find the buttons in the new-post admin that allow you to make text bold, linked, listed, align, quotes and so on?

      I'm trying to add some things to it so I can inject it into posts as I need them.

      I looked in post-new.php but I don't see them.

      Thanks.
      it's right there above the text box. Try clicking the "Visual" tab instead of the "HTML" tab.
      Webmaster Coupons Coupons and discounts for hosting, domains, SSL Certs, and more!
      AmeriNOC Coupons | Certified Hosting Coupons | Hosting Coupons | Domain Name Coupons

      Comment

      • $5 submissions
        I help you SUCCEED
        • Nov 2003
        • 32195

        #4
        problem fixed?

        Comment

        • Socks
          Confirmed User
          • May 2002
          • 8475

          #5
          Hey not to jack your thread here DWB, but I also have a WP question.

          I have some WP blogs on an old server that I don't have SSH access to anymore. I do have access to their admin areas and domains though. Is there a way to get them backed up so I can put them on a new host without file level access?

          Comment

          • candyflip
            Carpe Visio
            • Jul 2002
            • 43069

            #6
            Originally posted by Socks
            Hey not to jack your thread here DWB, but I also have a WP question.

            I have some WP blogs on an old server that I don't have SSH access to anymore. I do have access to their admin areas and domains though. Is there a way to get them backed up so I can put them on a new host without file level access?
            Tools ---> Export

            Spend you some brain.
            Email Me

            Comment

            • Socks
              Confirmed User
              • May 2002
              • 8475

              #7
              Originally posted by candyflip
              Tools ---> Export
              That easy huh...

              Comment

              • Eldon Hoke
                Confirmed User
                • Mar 2011
                • 323

                #8
                Originally posted by Socks
                Hey not to jack your thread here DWB, but I also have a WP question.

                I have some WP blogs on an old server that I don't have SSH access to anymore. I do have access to their admin areas and domains though. Is there a way to get them backed up so I can put them on a new host without file level access?

                Just run a backup plugin:- http://wordpress.org/extend/plugins/wordpress-backup/

                It will only work if you can access the ftp to upload the plugin though ...

                Comment

                • Eldon Hoke
                  Confirmed User
                  • Mar 2011
                  • 323

                  #9
                  Originally posted by candyflip
                  Tools ---> Export
                  It won't back up the post attachments or theme files.

                  Comment

                  • DWB
                    Registered User
                    • Jul 2003
                    • 31779

                    #10
                    Originally posted by CYF
                    it's right there above the text box. Try clicking the "Visual" tab instead of the "HTML" tab.
                    No, I mean IN the code. Not on the page itself when posting. I want to ADD buttons to it, to the actual admin.

                    Example, you see B there now. But what if I want to make it B and 2 font sizes larger, and red. Want to be able to add that to the admin buttons there. Without actually doing it in html.

                    Comment

                    • Highest Def
                      In the Cave of Gold
                      • Jun 2010
                      • 660

                      #11
                      Originally posted by DWB
                      No, I mean IN the code. Not on the page itself when posting. I want to ADD buttons to it, to the actual admin.

                      Example, you see B there now. But what if I want to make it B and 2 font sizes larger, and red. Want to be able to add that to the admin buttons there. Without actually doing it in html.
                      It's pretty easy. Just open up quicktags.dev.js (it's in wp-includes/js folder).
                      You'll see how each button is created and should be able to figure out how to add a custom one. Just save a copy of the original in case you break it

                      Comment

                      • Eldon Hoke
                        Confirmed User
                        • Mar 2011
                        • 323

                        #12
                        Originally posted by DWB
                        No, I mean IN the code. Not on the page itself when posting. I want to ADD buttons to it, to the actual admin.

                        Example, you see B there now. But what if I want to make it B and 2 font sizes larger, and red. Want to be able to add that to the admin buttons there. Without actually doing it in html.
                        I wouldn't bother editing the Wordpress core files. Makes it a pain when you have to upgrade, as these files get overwritten.

                        A better method would be to use this:-

                        http://wordpress.org/extend/plugins/addquicktag/

                        Then for the start tag add this:-

                        Code:
                        <span class="red-text">
                        And the end tag:-

                        Code:
                        </span>
                        Then go to your theme folder, open up style.css and add this class selector:-

                        Code:
                        .red-text {color:red;font-weight:bold;font-size:larger;}

                        Comment

                        • yabate
                          Confirmed User
                          • Jan 2010
                          • 296

                          #13
                          @Socks
                          If you want to backup only database then use:
                          Tools > export
                          only if you don't want to get in game with .sql files.

                          But, you have access to admin area, then :
                          - backup mySQL database
                          - backup all files
                          OR
                          if you are using cPanel, then you can do FULL backup, and it will backup all files and databases. Then, on a new host (if have cPanel) just use restore button.
                          Also, make sure you change NS, A and other records for a domain

                          @DWB, use any extender plugin or if you are editing core files make sure to backup edited files cause WP update will mostly overwrite it.Also, backup original, if you screw something up, to easily restore it
                          OR do as Eldon Hoke told you, to edit you CSS file.

                          Greetings
                          Twistys Hot Babes

                          Comment

                          • Supz
                            Arthur Flegenheimer
                            • Jul 2006
                            • 11057

                            #14
                            Originally posted by Socks
                            That easy huh...
                            I am moving some sites right now,

                            these are the 2 things you need to do basically

                            Old site

                            Export XML

                            Download WP-Content folder

                            New Site

                            Import XML

                            Upload WP-Content folder

                            Activate theme
                            Activate Plugins.

                            Thats pretty much it.

                            Comment

                            • V_RocKs
                              Damn Right I Kiss Ass!
                              • Nov 2003
                              • 32449

                              #15
                              if you posted in this thread, the chances are, I fucked your mum...

                              Comment

                              • Supz
                                Arthur Flegenheimer
                                • Jul 2006
                                • 11057

                                #16
                                Originally posted by V_RocKs
                                if you posted in this thread, the chances are, I fucked your mum...
                                my mom is pretty old. thats gross

                                Comment

                                • harvey
                                  Confirmed User
                                  • Jul 2001
                                  • 9266

                                  #17
                                  here's some "halp"!

                                  http://wordpress.org/extend/plugins/tinymce-advanced/

                                  and this one is amazing, but it doesn't work with 3.1 yet (although the plugin page says it does, anyway, just try it)

                                  http://wordpress.org/extend/plugins/wp-super-edit/
                                  This post is endorsed by CIA, KGB, MI6, the Mafia, Illuminati, Kim Jong Il, Worldwide Ninjas Association, Klingon Empire and lolcats. Don't mess around with it, just accept it and embrace the truth

                                  Comment

                                  • DWB
                                    Registered User
                                    • Jul 2003
                                    • 31779

                                    #18
                                    Thanks all, that is what I was looking for!

                                    V_RocKs, my mom wanted me to tell you, she is pregnant.

                                    Comment

                                    • munki
                                      Do Fun Shit.
                                      • Dec 2004
                                      • 13393

                                      #19
                                      Originally posted by V_RocKs
                                      if you posted in this thread, the chances are, I fucked your mum...
                                      Fuck... finally somewhere to send the back child support requests off to...

                                      I have the simplest tastes. I am always satisfied with the best.” -Oscar Wilde

                                      Comment

                                      • fris
                                        Too lazy to set a custom title
                                        • Aug 2002
                                        • 55679

                                        #20
                                        Originally posted by DWB
                                        Where do I find the buttons in the new-post admin that allow you to make text bold, linked, listed, align, quotes and so on?

                                        I'm trying to add some things to it so I can inject it into posts as I need them.

                                        I looked in post-new.php but I don't see them.

                                        Thanks.
                                        if you are trying to add new buttons (one of your own) let me know I recently did this in one of my plugins.
                                        Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                                        Comment

                                        Working...