gutterboy333
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: TinyMCE Plugin ParameterNo no, I still want WP to add
<p>tags, I just don’t want to remove them when I’m switching from visual to the html editor.Forum: Fixing WordPress
In reply to: TinyMCE Plugin ParameterI know TinyMCE advanced has what I’m looking for, but as I say, trying to avoid using a plugin for core functionality such as this.
Forum: Fixing WordPress
In reply to: TinyMCE Plugin ParameterTrying to avoid using a plugin as don’t want to have to deal with stuff like not being able to upgrade WP because the plugin doesn’t support the new version or the possibility that the plugin may stop being upgraded indefinitely to support future versions.
So yeah, trying to find a way for WP to stop removing my
<p>tags and doing the above seemed to do it, but wondering what the purpose of that plugin is!?Forum: Fixing WordPress
In reply to: is_front_page not workingOk, got it working. I was using index.php for my static front page, but seems I needed to use front-page.php
If that is the case, what is index.php used for?
Forum: Fixing WordPress
In reply to: Editor formatting and colorsThat’s what I will be doing. The html code that I copied into the editor is the parts that contain the content that the user needs to have control over.
Btw, I checked out that linked and it’s exactly what I was looking for – thanks!
Forum: Fixing WordPress
In reply to: Editor formatting and colorsyou would be using the dashboard – appearance – editor
I don’t use that, I do it via my own editor.
that is for writing posts or page content.
what exactly are you working on?
what are you trying to format?I know, but I am building a already existing site into a new design that I am turning into a WP theme. So the page already has content, of which I have copied the html code and placed it into the html section of the editor; but when you view it via the visual tab, the colors that they are on the page and spacing etc are not the same, obviously because the admin doesn’t have the stylesheet loaded for it.
So I’m wondering if it is possible do that?
I’ll take a look at the add_editor_style page you linked me to, it may be what I need. 🙂
Forum: Themes and Templates
In reply to: Confused on loading page contentOk, if I call it the same way and make a content.php file and just put
<?php the_content(); ?>inside of it, the content shows.Still confused on the purpose of doing it this way.
I’m assuming so that you can use the index file for many things and then put specific code differences inside the content file!?
Forum: Themes and Templates
In reply to: Confused on loading page contentYeah, it’s similar, it has this..
<?php get_template_part( 'content', get_post_format() ); ?>So I’m guessing that uses
content.php. I go and look at this file and it contains a whole bunch of code. But I don’t need any more code/html – what do I put in there? Do I have to separate my code or something?So confusing!!
Forum: Themes and Templates
In reply to: Confused on loading page contentIt’s using the default template. The page is coming up fine when I go to the index page, but the content (from the admin->pages editor) just isn’t showing up.
Forum: Themes and Templates
In reply to: Confused on loading page contentIt doesn’t output anything when I use that.
Forum: Themes and Templates
In reply to: Confused on loading page contentNope, doesn’t work.
Forum: Themes and Templates
In reply to: Confused on loading page contentI thought that was just for the blog part of the site (posts, not pages)?
Also trying to get a better understanding of the above method and how it’s used so I can use it properly when needed. 🙂
Forum: Themes and Templates
In reply to: Linking to pages in WPI found these but neither worked, all I got was an output of the ID I gave it..
http://codex.wordpress.org/Function_Reference/get_page_link
http://codex.wordpress.org/Function_Reference/get_page_uriForum: Themes and Templates
In reply to: Giving width to nav buttons in fixed width menuYeah I know that, but what I mean is if you set the width of say the first-child (Example 1) to 100px and the 3rd child (Example 2) to 150px and then moved Example 1 to be the third child and Example 1 to be the first child, then that would mean Example 2 now would have a width of 100px and Example 1 would have a width of 150px. 😉
Forum: Themes and Templates
In reply to: Giving width to nav buttons in fixed width menuYes, if the buttons are moved from for example the first spot (first child) to the 3rd child.