crypticsage
Forum Replies Created
-
Forum: Plugins
In reply to: [Simply Instagram] better html/additional classesif you are not that great at HTML I’d be willing to help you, not sure if you have a GIT Hub account/repo or something.
Forum: Plugins
In reply to: [Simply Instagram] CSS needed to creating 2 colums of imagesuntil the markup is improved you can use CSS psuedo classes to do this
.widget.widget_instagram_user_info .widget-inner-wrap > a:nth-child(odd)
{
float:left;
}
.widget.widget_instagram_user_info .widget-inner-wrap > a:nth-child(even)
{
float:right;
}or any combination of other properties assigned to those classes.
Forum: Plugins
In reply to: [Recent FB Posts] Website links not posting to the feedAnytime, I looked at the CSS to make sure I wasn’t overriding it and didn’t see that.
Look forward to hearing back.
Forum: Fixing WordPress
In reply to: Catagory count for private posts.hoping for a fresh set of eyes and input. any ideas? ty
Forum: Fixing WordPress
In reply to: Catagory count for private posts.also 2 things, is there a place i can modify the category widget to do the same thing as the menu? and i also tried doing this on the wp_list_pages thing and it didn’t work. any ideas for those 2?
Forum: Fixing WordPress
In reply to: Catagory count for private posts.i figured it out i just added the &hide_empty=0 to the end of the depth=2. there is no way to only allow the hide_empty to users logged in?
Forum: Fixing WordPress
In reply to: Catagory count for private posts.sorry i should have put that in code.
<ul id="nav"> <li><a href="<?php echo get_option('home'); ?>">Home</a></li> <?php wp_list_categories('sort_column=name&title_li=&depth=2'); ?> <?php wp_list_pages('sort_column=menu_order&title_li=&depth=2'); ?></align> </ul>
Forum: Fixing WordPress
In reply to: Catagory count for private posts.my code shows
<ul id=”nav”>
- “>Home
<?php wp_list_categories(‘sort_column=name&title_li=&depth=2’); ?>
<?php wp_list_pages(‘sort_column=menu_order&title_li=&depth=2’); ?></align>it doesnt show hide empty
Forum: Fixing WordPress
In reply to: How to change wording of "Leave a Reply"Did you check the language file? I’ve been able to locate similar changes in there.
Forum: Fixing WordPress
In reply to: Is it possible to allow users to view password protected posts?I’m actually starting to think this is not possible as even as admin I cannot view my own posts without the password. oh well, thank you anyway for trying.
Forum: Fixing WordPress
In reply to: Is it possible to allow users to view password protected posts?just trying to make it a little easier. thank you for your help, i will look into it.
Forum: Fixing WordPress
In reply to: Is it possible to allow users to view password protected posts?I do have some people who I only want on certain posts but I have others who I want to be able to view all passworded posts without having to memorize them all.