WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: line spacing problem in postWhere did you change excerpt to content? Which file?
categories.php
index.php
could be a blog template.phpThere’s plenty of places that it could be for this change.
If your not sure if your in the right file just throw some random text in the template and see if it shows on that page. If not, you’re probably on the wrong page.
Forum: Fixing WordPress
In reply to: PHP error message when trying to activate child themeThat’s a premium theme and I would contact the seller of the theme for support.
Forum: Fixing WordPress
In reply to: GalleryYou find a theme that looks like what you want and buy or install it.
Forum: Fixing WordPress
In reply to: Red x inside a box has replaced my green check marksMeans your image cant be found. Find the URL where the image is supposed to be and put the image there.
Forum: Fixing WordPress
In reply to: adding " my posts " in menuHope you understand this. 🙂
For the menu item you will need to add a condition to see if they are logged in. You dont want to show the link to their posts if they arent.
So it would be something like.
<?php if ( is_user_logged_in() ) { CODE WILL GO HERE } ?>Now your link you will want to post can be an author.php or any template you want to use and will contain a function to call all the posts from the author.
<?php the_author_posts_link(); ?>Sorry for not doing it step by step but this is a general idea on how to do it.
Forum: Fixing WordPress
In reply to: WordPress TemplateWordPress does not look at or need a PSD file.
The PSD file is so you can have the resource there if you want to make graphical changes easier. If you make changes on the PSD you need to slice it into HTML/CSS.
The files you would change is the index.php, header.php, style.css, function.php, ect. These are what WordPress uses.
Forum: Fixing WordPress
In reply to: Remove Login/Register?Appearance -> Menu and remove it?
Or
Appearance -> Editor and select style.css
at the bottom of the page enter the code
.login { display: none; }Save it
Forum: Fixing WordPress
In reply to: Theme Settings?No idea without knowing your theme.
I would start by going to Appearance -> Themes and see if their is a theme option link next to the theme you have activated.
Forum: Fixing WordPress
In reply to: Change "Groups" to "Clans"Well can only guess still..
But for the top one it’s probably either in Appearance -> Menus where you can just simply find it and rename the title.
Or possibly in a Appearance -> Editor where you select the file header.php or navigation.php or could be something similar to naviagation or menu.
Then just search the page for the word and replace it.
Another possible way is to find the PAGE named groups and change the title there.
Besides that I dont see that word anywhere else. If you change it there on the homepage it will change there on all the other pages, or should.
Forum: Fixing WordPress
In reply to: Change "Groups" to "Clans"Need a link to your theme, your website, or html where those words are in order to help.
Forum: Fixing WordPress
In reply to: 1 category on each pageThen you are doing something else wrong. Do you have it assigned to multiple categories? Are you browsing a PAGE and not a CATEGORY when you are viewing the results?
The url should have /category/season-9/ in it or something similar. If it doesnt have category in it then you are probably just viewing a page which is the wrong way to do it.
Forum: Fixing WordPress
In reply to: 1 category on each pageSeems like you should be making categories named “season x” and then making posts and assigning them to the right season.
That way you just look at the category for that season and you will see all the right posts.
Forum: Fixing WordPress
In reply to: Get rid of /wordpressForum: Fixing WordPress
In reply to: Private page showing up!Why?
When you go to yoursite.com/wp-admin/ what happens?
Forum: Fixing WordPress
In reply to: Private page showing up!Yes other plugins could be messing it up.
Activate the Private Pages and deactivate all the others and test it.