Quin
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Field validationI managed to get what I needed through jQuery – rather straight forward.
Also, instead of #ID, I simply used [name=”name”] – works a treat! 😀
Forum: Fixing WordPress
In reply to: Display WordPress Page ExternallyOkay, solved it myself – rather easy TBH.
I’m going to be bold and say this can go in any PHP file.
<?php require('WORDPRESS-INSTALL/wp-blog-header.php'); $page_data = get_page(pageID); echo $page_data->post_content; ?>The first part needs to link to the WordPress file.
PageID is the ID for the page you want to display.Forum: Fixing WordPress
In reply to: Help,can't do some edits to a site.Can you log into WP Admin?
Forum: Fixing WordPress
In reply to: Web page fit to screenIf the content is longer than the page, then you will have a scroll.
Try changing the image size.Forum: Fixing WordPress
In reply to: WP 4.01 cannot see my themesDo the themes CSS have the correct comments?
Forum: Fixing WordPress
In reply to: Mailto property in codeblock is being rendered.TBH, I am not entirely sure how to get it to work.
Perhaps just break up the HTML so it is invalid (and therefore won’t render).
It’s the only solution I can think of to stop the rendering.Forum: Fixing WordPress
In reply to: Add style (bg-img) to post image divs using functions.phpIf you need to alter all, you can use arrays and loops.
Use variables too.Essentially you need to store whatever you want to store, then call it later.
You can also amend things to variables.First, just get it to work once, not all, and then once that works, work out the best way to get to work on all.
What is being called in $content?
Forum: Fixing WordPress
In reply to: Redirecting to subfolder installIt’s been a long while since I’ve had to play around with the WP Database records – it’s pretty straight forward when looking through the tables.
As for the redirect, I’d simply install WP to the root directory – having a redirect can cause problems, and isn’t SEO friendly.
Forum: Fixing WordPress
In reply to: Adding "NEW" to Post TitlesCookies – probably the easiest way.
You need to make a cookie to hold all the un/read data for the posts, and also have the “new” dynamic (not actually a part of the post title).
Well, that’s how I’d do it.
Forum: Fixing WordPress
In reply to: Adding a text-indent only to posts and not pagesI don’t like using _s (used it, developed my own based off that – works a treat).
Glad it’s fixed! 🙂
Forum: Fixing WordPress
In reply to: post layout… no
upload the image to the internet, somewhere, and then post the url here
Forum: Fixing WordPress
In reply to: Redirecting to subfolder installYes.
If you changed it through WP-Admin and it broke, then you will need to reinstall WordPress to the correct directory.
Luckily you should be able to use the existing table (so you won’t lose the content).Forum: Fixing WordPress
In reply to: Role ColorsYea, only use letters and numbers for class names – no symbols
It may help to check the source of the page and see what HTML is used to display the users.
Forum: Fixing WordPress
In reply to: Word Press Icon classesUsually WordPress forces the site to have WWW or not, depending on the Settings.
People can access both versions (no redirect), which leads me to believe that there are two versions of the site running (which explains the two sets of icons).
Find the location of the icons – they should be in the image folder. Do you have two pencil icons?
Find out where both of those icons are being displayed – are they all linking correctly, are they broken links?Forum: Fixing WordPress
In reply to: post layoutYea, link the screenshot