twomotifs
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: cleaning title for sigle postYou’ll need to change the title in your template file (probably header.php), and use something like:
if (is_single()) { the_title(); } else { what you currently have }
Forum: Fixing WordPress
In reply to: How to check if Page exists?You can use condition tags:
https://codex.www.ads-software.com/Conditional_Tags
The one that will interest you the most is the following one:
is_page(‘About Me’)
Forum: Installing WordPress
In reply to: Is it possible to create a page without linking it under menu?It all depends on how you have build the menu. Eg if you use
https://codex.www.ads-software.com/Template_Tags/wp_list_pages
you can exclude pages by ID.
Forum: Fixing WordPress
In reply to: Links Visible/Not VisibleYou should fill in get_links() with the values you need. Eg look at the page in the codex for the use of it:
<?php get_links(category, ‘before’, ‘after’,
‘between’, show_images, ‘order’,
show_description,show_rating, limit,
show_updated, echo); ?>and then look at the explanation down the page. You should be able to get something like
<?php get_links(‘-1’, ‘
- ‘, ‘
‘, ‘
‘, FALSE, ‘id’, TRUE,
TRUE, -1, TRUE); ?>but accustomed to your own taste.
Forum: Themes and Templates
In reply to: New Theme: dark.cash v0.7I just noticed something else: when I press the “print” button and then cancel the print page, it goes back to the homepage instead of staying on the existing page.
Forum: Themes and Templates
In reply to: New Theme: dark.cash v0.7This theme really looks great. I’m jealous.
Only one remark: you might want to create an alternative version for people that don’t want to use categories as tags. It’s probably only a small adjustment for an alternative version.
Forum: Fixing WordPress
In reply to: Links Visible/Not VisibleI think you need to look into your template and look at the template tag that generates your link list. There is a variable that allows it to display based on date added. So if you only allow 2 you don’t need to set the others to not visible since it will only display the latest two. That will also solve the second problem.
Forum: Themes and Templates
In reply to: Post views numberI think you need a plugin for that. Maybe
https://weblogtoolscollection.com/archives/2005/11/25/wp-plugin-top-10-posts-and-views-per-post/
is a good one.
Forum: Your WordPress
In reply to: which of these 2 color schemes?vkaryl, do you mean those 3 are better than the previous 2, or just that any of those 5 are better than jeuxdemaux? I really like that site.
Forum: Fixing WordPress
In reply to: links shown in categories and archives.I see. I think it is because of the theme you use. You modified the default theme? This one doesn’t include the sidebar for single post views. So either you’ll have to modify this theme further (delving into the php and html) or choose another theme I’m afraid.
Forum: Fixing WordPress
In reply to: links shown in categories and archives.Hi Kelly,
I’m not sure what you mean because I can’t see any archives. Do you mean how to keep the flash menu visible when viewing archives?Forum: Fixing WordPress
In reply to: do NOT display some categories on 1st pageThere are probably more ways to do it, but one that comes to my mind is in the loop adding 2 conditionals:
if (!is_category) then if (!in_category(‘3’)) { display post }
else { display post }Forum: Your WordPress
In reply to: which of these 2 color schemes?It seems like the blue and green won’t be any good. My goal with these two colors was to create something as bright as https://www.jeuxdemaux.com/ (without its graphical finesse cause I can’t create that) but it doesn’t seem to work out.
https://img86.imageshack.us/img86/2788/scheme3pi1.jpg
https://img86.imageshack.us/img86/2668/scheme4ht0.jpg
https://img86.imageshack.us/img86/4581/scheme5rs3.jpgIn any case, I’ll certainly remove the font color.
Forum: Your WordPress
In reply to: which of these 2 color schemes?The pale gold should be some sort of green. Maybe I should give it more character.
The reason I designed the 2nd one was because I think the first one is a little bit too depressing and I wanted some more cheerful colors. I probably haven’t succeeded very well.Thanks for the replies.
Forum: Fixing WordPress
In reply to: change /category/ prefix to something elseAwesome. I overlooked that. Thanks for your answer.