GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Wordpress gurus.... halp! (https://gfy.com/showthread.php?t=1017069)

DWB 04-04-2011 04:02 PM

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. :thumbsup

DVTimes 04-04-2011 04:05 PM

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.

CYF 04-04-2011 04:07 PM

Quote:

Originally Posted by DWB (Post 18031928)
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. :thumbsup

it's right there above the text box. Try clicking the "Visual" tab instead of the "HTML" tab.

$5 submissions 04-04-2011 04:09 PM

problem fixed?

Socks 04-04-2011 04:10 PM

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?

candyflip 04-04-2011 04:15 PM

Quote:

Originally Posted by Socks (Post 18031958)
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

Socks 04-04-2011 04:17 PM

Quote:

Originally Posted by candyflip (Post 18031970)
Tools ---> Export

That easy huh... :Oh crap

Eldon Hoke 04-04-2011 04:18 PM

Quote:

Originally Posted by Socks (Post 18031958)
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 ... :Oh crap

Eldon Hoke 04-04-2011 04:20 PM

Quote:

Originally Posted by candyflip (Post 18031970)
Tools ---> Export

It won't back up the post attachments or theme files.

DWB 04-04-2011 04:57 PM

Quote:

Originally Posted by CYF (Post 18031949)
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.

Highest Def 04-04-2011 05:40 PM

Quote:

Originally Posted by DWB (Post 18032102)
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 :winkwink:

Eldon Hoke 04-04-2011 05:57 PM

Quote:

Originally Posted by DWB (Post 18032102)
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;}

yabate 04-04-2011 08:17 PM

@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

Supz 04-04-2011 09:00 PM

Quote:

Originally Posted by Socks (Post 18031976)
That easy huh... :Oh crap

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.

V_RocKs 04-04-2011 09:47 PM

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

Supz 04-04-2011 09:55 PM

Quote:

Originally Posted by V_RocKs (Post 18032595)
if you posted in this thread, the chances are, I fucked your mum...

my mom is pretty old. thats gross

harvey 04-04-2011 10:14 PM

here's some "halp"! :winkwink:

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/

DWB 04-05-2011 03:45 AM

Thanks all, that is what I was looking for!

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

munki 04-05-2011 04:20 AM

Quote:

Originally Posted by V_RocKs (Post 18032595)
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...

fris 04-05-2011 09:37 AM

Quote:

Originally Posted by DWB (Post 18031928)
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. :thumbsup

if you are trying to add new buttons (one of your own) let me know I recently did this in one of my plugins.


All times are GMT -7. The time now is 07:12 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123