xamataca
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Category order problemyou are welcome ??
Forum: Fixing WordPress
In reply to: Category problemsNo, I asked it because plugins usually add more templates so it could be one of them… just paste here the line where it is
<?php the_content('Read more'); ?>
in your theme index.phpForum: Fixing WordPress
In reply to: Uploading media, directory not writable IIS issueI think you need to give more permisions because wordpress needs to create subfolders and store files and text (posts) are stored in a MySQL DB, not at your wp folders directory.
Create the “uploads” folder and give it enough permissions…Forum: Fixing WordPress
In reply to: Where do I go to edit this?In the very same estylesheet:
.SCS blockquote { padding: 2px 10px; background: #e9f8ff; margin: 0px; color: #336699; }
background: #e9f8ff; —> background color
color: #336699; —> text colorForum: Fixing WordPress
In reply to: Category order problemsort_column??? where do you get this paremeter from?? ??
orderby=ID
https://codex.www.ads-software.com/Template_Tags/wp_list_categorieswp_list_categories('orderby=ID&order=DESC&title_li=&depth=2');
Forum: Fixing WordPress
In reply to: Category problemsIt is usually at:
wp-content/themes/”yourtheme”/index.php
look for the_content() tag.
Should put<?php the_content('Read more'); ?>
Btw, are you using a plugin called recent-post in your blog?
Forum: Fixing WordPress
In reply to: Category problemsPost your loop code, it seems you handcoded that in your theme index.php and forgot to delete it.
<?php the_content('more_link_text', strip_teaser, 'more_file'); ?>
https://codex.www.ads-software.com/Template_Tags/the_contentForum: Fixing WordPress
In reply to: Different Date displayIf I understand you well this is the normal bahaviour of template tag the_date():
SPECIAL NOTE: When there are multiple posts on a page published under the SAME DAY, the_date() only displays the date for the first post (that is, the first instance of the_date()). To repeat the date for posts published under the same day, you should use the Template Tag the_time() with a date-specific format string.
https://codex.www.ads-software.com/Template_Tags/the_date
and doing a search at codex:
https://codex.www.ads-software.com/User:MCincubus/group_by_day
Don’t know if the code in that page works but you can try ??Forum: Fixing WordPress
In reply to: OMG! Newbie Here How Do I Add a Page?under “write > pages”
Forum: Fixing WordPress
In reply to: How to add “bookmark” links to pages?If your sections are “bookmarks”:
<?php wp_list_bookmarks(); ?>
https://codex.www.ads-software.com/wp_list_bookmarksIf your sections are “categories”:
<?php wp_list_categories(); ?>
https://codex.www.ads-software.com/Template_Tags/wp_list_categoriesIf your sections are “pages”:
<?php wp_list_pages(); ?>
https://codex.www.ads-software.com/wp_list_pagesForum: Fixing WordPress
In reply to: Add ‘end date’ or ‘end time’ to a post?something similar to events? searching the plugins page:
https://www.ads-software.com/extend/plugins/wp-events/Forum: Fixing WordPress
In reply to: Change hyperlink coloursAdd this to your style.css :
#userarea a:link, #userarea a:visited { color: #ffff99; }
Forum: Fixing WordPress
In reply to: image overlay…Did you try the JonDesign’s SmoothGallery 2.0?:
https://smoothgallery.jondesign.net/showcase/gallery/You probably can change the default behaviour (the one that automatically shows the overlaying caption) to suit your mouse “hovers” need ??
And a link with ajax galleries and slideshows you can try:
https://www.smashingmagazine.com/2007/05/18/30-best-solutions-for-image-galleries-slideshows-lightboxes/Forum: Fixing WordPress
In reply to: moving scripts from headerThis has to do with plugins inserting their needed javascript to work.
And the correct placement is between your <head> tags in header.php if they are linking to a .js fileMost won’t work if you put them in the footer.php, because the js scripts need to set vars and functions before call them inside the <body> tags. Another matter is if those plugins just fill the head with javascript code… I think that’s a problem with how the plugin is coded.
I’m not an expert in JS but probably you will get a proper explanation from someone with more knowledge.
Forum: Fixing WordPress
In reply to: Sidebar Helpcreate a new sidebar template and call it whatever.php, then in your theme index.php include it where you want with:
<?php include (TEMPLATEPATH . "/whatever.php"); ?>