bAs
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Collapsible category list?Actually found something which took a bit more work on my part as far as the links go, but was well worth it.
https://gemal.dk/util/
1- basically edited the images locations in the tread.js with textpad, upload it the your wp root:
{ node.childNodes.item(0).src = "pics/menu_minus.gif";
2- then make your menu links page in textpad(name it links.php or something) by coping the source code from the site (i/e from the test section you like to style after- I did test 3, but renamed it to id01):
<img src="pics/menu_plus.gif" alt="+" width="13" height="13" /> Leagues<div id="id01" style="display:none">
<img src="pics/menu_item.gif" alt="item" width="13" height="13" />
CTFDL
<img src="pics/menu_item.gif" alt="item" width="13" height="13" />
The OGL
<img src="pics/menu_item.gif" alt="item" width="13" height="13" />
Team Warfare3- put
<script type="text/javascript" src="thread.js"></script>
in between your head tags.
4- include your new links page in your template where you want it:
<?php include("https://www.yoursite.net/wpdir/linkpage.php"); ?>
5- right click and “save as” the + & – & block item pics from the site and upload them to your site where you made the path(the path for the images is in both the thread.js and the links.php, in this example the pics directory)
site back and say ah.Forum: Fixing WordPress
In reply to: Collapsible category list?I cant seem to get it to work sushubh ??
I know I’m doing it wrong, could you help me please?
I did this part:
1. Copy, paste and save into listCollapse.js file the script listed at the end of
https://www.howtocreate.co.uk/jslibs/htmlhigh/listCollapse.html Then uploas .js file to you wp root folder.
2. Put in your template after <body> tag following script:
<script type=”text/javascript” language=”javascript1.2″ src=”listCollapse.js”></script>
<script type=”text/javascript” language=”javascript1.2″></script>
https://www.ctfzone.netForum: Plugins
In reply to: editing any wp-pagesproblem solved- my newbified css skills were the cuprit. ??
working now.Forum: Fixing WordPress
In reply to: EmailsForum: Plugins
In reply to: Polls 1.2 database erroryou could alway use phpmyadmin to create the extra fields first then try the install- but as always back up your existing db before anything.
Forum: Installing WordPress
In reply to: Creating mySQL Linkyou have to create the db on your host server, just create the db name and the password so you those in that install proccess.
Forum: Fixing WordPress
In reply to: Make Users only read it…Forum: Fixing WordPress
In reply to: Not editing other people’s postswell it is after all just point and click- not like they have to really work. lol
Forum: Requests and Feedback
In reply to: Email Blog SubscriptionForum: Fixing WordPress
In reply to: Not editing other people’s postsran into the same issue- easy to fix without much fuss- edit your main index template.
look for the “div class=”post”” at the end of that you’ll see “?php edit_post_link(); ?” right before the ending div for that section- just remove it.Forum: Themes and Templates
In reply to: CSS Font Problemwith your fav text editor, edit the style sheet in your main wp dir. wp-layout.css see the wiki docs for help.
Forum: Themes and Templates
In reply to: Design Resourceswoohoo!
Forum: Fixing WordPress
In reply to: Offset posts/archive listsSomebody (the persons nick was “somebody”) gave me the answer on irc- all I had to do was goto options and reading-
and under the Front PageShow the most recent: put 15 and then choose posts pagedForum: Fixing WordPress
In reply to: Categories are listing all- how do I edit the codeSomebody (the persons nick was “somebody”) gave me the answer on irc- all I had to do was goto options and reading-
and under the Front PageShow the most recent: put 15 and then choose posts pagedForum: Fixing WordPress
In reply to: Offset posts/archive listswhere exactly would you put that code:
<?php get_posts('numberposts=15'); ?>
in order to limit the # of posts to 15 when you click on any category?
i posted this question already and then spent 3 hours looking for possible answers ??
if this is the answer- then all i need to know is where to put it to make it work for categories.