ashconnor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Lightbox JS for WordPressAny chance you will let the rest of us know how?
Ash
Forum: Plugins
In reply to: Digg Link Style Link RSS to source?ZMAng genius my friend it worked with a little modification.
I added
<?php list ($avariablename) = get_post_custom_values(‘link’); ?>
Under:
<?php $items_count = 0; if ($posts) { foreach ($posts as $post) { start_wp(); ?>
<link><?php print $avariablename ?></link>
Just need to mod the CSS so that the Product link appears underneath the posts and above the comments and I’m done.
Ash
Forum: Plugins
In reply to: Digg Link Style Link RSS to source?OK this is where I stand ATM.
ID, ‘link’, $single=true) ?>”>Product Link
I’ve placed this in the Loop but it isn’t aligned where I would like. I think this might be a CSS problem/solution.
RSS still havent got a clue, I get errors when replacing:
this:
<link><?php permalink_single_rss() ?></link>with:
<link><?php get_post_meta($post->ID, ‘link’, $single=true)?></link>Need help.
Ash
Forum: Themes and Templates
In reply to: Category RSS Links and ImagesThat works thanks for your time I appreciate it.
Ash
Forum: Themes and Templates
In reply to: Category RSS Links and ImagesOK I’ve found out that editing widgets.php in the widgets plugin folder works.
But the image is not showing just RSS which links to feed correctly.
<?php wp_list_cats(“sort_column=name&optioncount=$c&hierarchical=$h&feed=RSS&feed_image=classic/feed-icon-16×16.jpg”); ?>
Ash
Forum: Themes and Templates
In reply to: Category RSS Links and ImagesYes I’ve edited the image url but still no luck.
I’m not editing the /theme/sidebar.php because I’ve using the sidebar widgets plugin so I’ve been editing
/plugins/widgets/classic/
/plugins/widgets/default/Because they both containt wp_cats and I don’t know which one wordpress is using.
Now I’ve just read in the widgets readme:
– themes
– classic
| functions.php (optional)
\ sidebar.php (optional)
– default
| functions.php (optional)
\ sidebar.php (optional)These themes are optional how do I activate them?
Ash
Forum: Themes and Templates
In reply to: Category RSS Links and ImagesOK
wp-content/plugins/widgets/default/sidebar.php
I’ve added
- <h2>Categories</h2>
-
<?php wp_list_cats(‘sort_column=name&optioncount=1&hierarchical=0&feed=RSS&feed_image=full_url_to_feed_img’); ?>
But still no luck.
Ash
Forum: Themes and Templates
In reply to: Category RSS Links and ImagesWhere does this string go?
Ash
Forum: Themes and Templates
In reply to: Category RSS Links and Images