Termato
Forum Replies Created
-
Forum: Plugins
In reply to: Category Icon Plugin Updated Incorrectly – Now ALL Icons are Large.I fixed this problem by going to the functions.php file.
The default setting for the new Icons were reset to small=false.
I had to add in to every function calling get_cat_icon(); the variable of small=true. There were other variables inside of the function call so I just added the small=true to EVERY instance of it in the functions called by the page which was having the problem.
This solved the issue. Hope this helps anyone who runs into the same problem.
Forum: Plugins
In reply to: [Category Icons] Updated Category Icon Plugin to new versionI fixed this problem by going to the functions.php file.
The default setting for the new Icons were reset to small=false.
I had to add in to every function calling get_cat_icon(); the variable of small=true. There were other variables inside of the function call so I just added the small=true to EVERY instance of it in the functions called by the page which was having the problem.
This solved the issue. Hope this helps anyone who runs into the same problem.
Forum: Plugins
In reply to: [Category Icons] Updated Category Icon Plugin to new versionOnly the large icon is being brought in.
It is using the large image for both inputs.
Forum: Fixing WordPress
In reply to: Theme Name: Twenty Eleven – pageofposts.php Not FoundThank you.
Forum: Fixing WordPress
In reply to: Theme Name: Twenty Eleven – pageofposts.php Not FoundThank you so much.
That really helped and it worked well. See here
The only thing I do not understand about this code is why it is in a while loop?
<?php while( have_posts() ) : the_post(); ?> <div class="page-content"> <?php the_content(); ?> </div> <?php endwhile; ?>
I can see it is calling “the_content();” function but why is it in a loop?
That will only show the content if there are posts present. If I want the content to show regardless I would exclude that code.
Forum: Fixing WordPress
In reply to: Theme Name: Twenty Eleven – pageofposts.php Not FoundEdit.
Forum: Fixing WordPress
In reply to: Theme Name: Twenty Eleven – pageofposts.php Not FoundThank you for the quick response alchymyth.
I literally copied this code:
https://codex.www.ads-software.com/Pages#A_Page_of_Posts
I added the concluding ?> that is missing and changed the category names.
Forum: Fixing WordPress
In reply to: Theme Name: Twenty Eleven – pageofposts.php Not FoundCurrent Theme: Twentyeleven Child
I was able to activate the new Child Theme.
I also got the page of posts to work here: https://www.termato.net/aquariums/20g-community/ for two categories.
Is these a way I can also put content on this page. When I go into the editor on the admin side and to Edit Page, the content in the content box is not on the page.
I am guessing I will need to take the variable for this content and put it on the template for the pageofposts?
Forum: Fixing WordPress
In reply to: Theme Name: Twenty Eleven – pageofposts.php Not FoundI am having problem with this step:
Go to Dashboard ? Themes and activate your new theme, the Twenty Eleven Child.
I have created the folder in the directory where the style.css file is.
When I go to themes I do not see where I can activate the new child theme.
Forum: Fixing WordPress
In reply to: Theme Name: Twenty Eleven – pageofposts.php Not FoundThank you for the help.
I have created a child theme as directed.
I want my home page to display ALL new posts stickied to the home page.
I have the following Categories: Aquariums, Mice, Art and Snake.
These are also pages.I want the Aquarium page to show all posts under the category aquarium and so forth.
I will try what you have said and see if it works this way.