Emphacy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Is there a plugin that allows diffrent page positions?The best way is to manually edit your code and use div containers with your code inside. Placing say, your banner image inside a div tag in the main body of your page will work.
It requires some constant fiddling though to get the position and style right etc.
Here’s an example of placing say a google ad banner anywhere on your page.<div style=”bannerad”>CODE HERE</div>
<style>
.bannerad {
STYLESHEET CODE HERE
}
</style>Forum: Fixing WordPress
In reply to: Permalink has -2 at end of page name and cant remove itIt’s because that particular permalink has already been used once for whatever reason.
Are there any pages/posts within your trash? If so, empty your trash and go back to edit the permalink. It should now work.
It’s caused by that particular permalink being in your database already, so it adds a -2 to the end.
Forum: Fixing WordPress
In reply to: How do I delete unwanted link from Blog???Is it possible for you to give us the URL to your blog so we can help out further.
Do these links appear to be spam links? Have you installed any plugins lately which may create these links?
Forum: Fixing WordPress
In reply to: How to remove unwanted text??? HELP!In your admin panel head to appearence > editor.
Open up your Header.php file for starters and hit CTRL+F on your keyboard to open the find utility and search for “header_contact”
According to my developer tools, this is what it will look like in your code. Find it and delete it.
<div id=”header_contact”>Enter Contact Information Here</div>
Forum: Fixing WordPress
In reply to: How do I make wordpress look like a normal websiteThis is what you want to be looking at…
There are no current plugins to do the trick for you unfortunately. You’ll have to get down and personal with some code editing.My article explains everything very nicely.
https://www.nerd-centre.net/how-to-redirect-pages-categories-wordpress/
Forum: Fixing WordPress
In reply to: How to work on a theme without it being live?You could always turn your home computer into a working server. Install wordpress on there and modify your theme’s files right there.
Then when you’re happy with the changes upload and replace all your themes files to the live website on your server. It will probably be down for about 10mins while you upload all the new files but it’s an easy method.
https://www.nerd-centre.net/how-to-create-offline-testbed-wordpress/
Forum: Fixing WordPress
In reply to: How do I make wordpress look like a normal websiteIs is easy to link within wordpress with tabs or similar?
If you mean tabs within the top navigation bar, it’s not possible without editing some code. Normally you only have tabs for static pages, such as your about page etc.
Forum: Fixing WordPress
In reply to: How can I center my Adsense Ad?You can use a HTML center tag…
<center><div id=”adsense”> put code here </div><center>
or include CSS code using the margin-left attribute to centre it.
<div class=”adsense”> put code here </div>
<style>
.adsense {
margin-left: 50px
}Forum: Fixing WordPress
In reply to: Want to create new website whilst leaving current one liveHi, do you mean create one offline? i.e. on your own home computer until you finally decide to replace the live one?
OR, do you mean have 2 WordPress blogs live at the same time?
Forum: Fixing WordPress
In reply to: How do I use nicer slugs for this?Thanks very much for your help!
Code works perfect with the addition of the missed ?>
??<li><a href="<?php echo get_category_link(4); ?>">How-To</a></li>
Forum: Fixing WordPress
In reply to: Pages show posts from a particular category?Nevermind my previous post, I figured out a useful way to do it.
For anyone else who would like to do the same, read the article:Thanks!
Forum: Fixing WordPress
In reply to: Pages show posts from a particular category?Thanks for the reply, I have previously read through the Category Templates page, unfortunately though It doesn’t seem to help me.
I’m not sure where to start, do I make a category template PHP and then somehow make this my How-To page?
I’m not sure how to do this, my apologies for my lack of knowledge on this matter, this is why I am here.Thanks again.