boatwizard
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Tags and Includes – Not for the feint heartedThanks Michael, you’re quite right, needed get_the_tags not the_tags.
The tags part works great now and I can get my script to print the correct url like this:
<?php<br /> $posttags = get_the_tags(); if ($posttags) { foreach($posttags as $tag) { $url = '"https://www.boats.com/boats/search/boats_for_sale_list.html?Ntt=' . $tag->name . '"'; echo "$url"; } } ?>
But when I just use the include, it doesn’t work:
<?php $posttags = get_the_tags(); if ($posttags) { foreach($posttags as $tag) { $url = '"https://www.boats.com/boats/search/boats_for_sale_list.html?Ntt=' . $tag->name . '"'; include($url); } } ?>
Any ideas what I’m doing wrong?
Forum: Fixing WordPress
In reply to: Tags and Includes – Not for the feint heartedNo one have an idea?
Forum: Plugins
In reply to: [Plugin: GRAND Flash Album Gallery] Working in IE and FF, but NOT Safari!I removed the “Flash photo gallery” – I was testing it before I found the Grand Flash Album Gallery. Still not working though on Safari! Do I need to find a copy of the swfobject.js file? Thanks for your help.
Forum: Plugins
In reply to: [Plugin: GRAND Flash Album Gallery] Working in IE and FF, but NOT Safari!Doesn’t seem to though using Safari here: https://www.yachtworld.com/boat-content/features/
JavaScript is enabled on the Safari it was tested withForum: Plugins
In reply to: Feedback for new Sociable versionWould be great to have different image options available with the plugin such as size and background colour.
I would also love for it to work with MPMU again!
ThanksForum: Plugins
In reply to: [Plugin: Sociable] How to manually add code to WordPressIt used to be:
<?php if (function_exists(‘sociable_html’)) { echo sociable_html(); } ?>And to define what to show:
<?php if (function_exists(‘sociable_html’)) { echo sociable_html(Array(“Print”, “email”, “LinkedIn”, “TwitThis”, “Facebook”)); } ?>Not sure if still works!
Forum: Fixing WordPress
In reply to: Calling Posts from a Specific CategoryThanks, I have a post on other forum – just need to get as much awareness to this to fix it and thought WP Forum would do it! Theme seems to work otherwise – using basic theme although created new template using one from theme as basis.
Forum: Fixing WordPress
In reply to: Calling Posts from a Specific CategoryOdd, just gave me a blank white page. Needs cat_ID to display! This is what I have (but shows posts from both categories):
<?php query_posts(‘cat_ID=8’); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>This shows a blank white page;
<?php query_posts(‘cat=8’); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>Forum: Fixing WordPress
In reply to: Calling Posts from a Specific CategoryWhat if I just want to display posts per one category (e.g. cat_ID=8).
Have tried:
<?php if (is_page()) { query_posts(‘cat_ID=8’); } ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>And…
<?php query_posts(‘cat_ID=8’); ?>
<?php if (is_page()) { query_posts(“cat_ID=8”); } ?>
<?php if(is_category(‘8’)) continue; ?>
<?php if (have_posts()) : ?><?php query_posts(array(‘category__and’ => array(8,1))); ?>
Stuck! Using WPMU 2.7.1
Forum: Plugins
In reply to: [Plugin: Sociable] Will Not Display the Picsworked a treat, thank you ardee00
Forum: Plugins
In reply to: [Plugin: Sociable] Will Not Display the Picsdoes anyone know where the previous version is available from? It appears that 2 versions were quickly put out one after the other.
Forum: Plugins
In reply to: [Plugin: Sociable] Will Not Display the PicsThe fix from aka-es will not work unfortunately.
Forum: Plugins
In reply to: [Plugin: Sociable] Will Not Display the Picsthe plug-in is trying to use:
/wp-content/plugins/images/email_link.pnginstead of the correct url:
/wp-content/plugins/sociable/images/email_link.pngForum: Plugins
In reply to: WP-to-Twitter problemAnyone know how to get WP-to-Twitter to work on WPMU?
Forum: Plugins
In reply to: WP-to-Twitter problemPS. I am using version 1.3.7