broadleon
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Flash in home pageAnd this,
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="480" HEIGHT="590" id="uk_ir_locator" ALIGN=""> <PARAM NAME=movie VALUE="/home/content/98/9135698/html/uk_ir_locator.swf"> <PARAM NAME=FlashVars VALUE="xmlfile1=/home/content/98/9135698/html/uk_ir_locator.xml"> <PARAM NAME=quality VALUE=high> <param name="wmode" value="transparent"> <PARAM NAME=bgcolor VALUE=#F5F5F5> <EMBED src="/home/content/98/9135698/html/uk_ir_locator.swf?xmlfile1=/home/content/98/9135698/html/uk_ir_locator.xml" quality=high wmode="transparent" bgcolor=#F5F5F5 WIDTH="480" HEIGHT="590" NAME="uk_ir_locator" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="https://www.macromedia.com/go/getflashplayer"></EMBED> </OBJECT>
Forum: Themes and Templates
In reply to: Flash in home pageAlso Tried it like this
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="480" HEIGHT="590" id="uk_ir_locator" ALIGN=""> <PARAM NAME=movie VALUE="uk_ir_locator.swf"> <PARAM NAME=FlashVars VALUE="xmlfile1=uk_ir_locator.xml"> <PARAM NAME=quality VALUE=high> <param name="wmode" value="transparent"> <PARAM NAME=bgcolor VALUE=#F5F5F5> <EMBED src="https://www.bookstoredirectory.co.uk/uk_ir_locator.swf?xmlfile1=https://www.bookstoredirectory.co.uk/uk_ir_locator.xml" quality=high wmode="transparent" bgcolor=#F5F5F5 WIDTH="480" HEIGHT="590" NAME="uk_ir_locator" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="https://www.macromedia.com/go/getflashplayer"></EMBED> </OBJECT>
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="480" HEIGHT="590" id="uk_ir_locator" ALIGN=""> <PARAM NAME=movie VALUE="https://www.bookstoredirectory.co.uk/uk_ir_locator.swf"> <PARAM NAME=FlashVars VALUE="https://www.bookstoredirectory.co.uk/xmlfile1=uk_ir_locator.xml"> <PARAM NAME=quality VALUE=high> <param name="wmode" value="transparent"> <PARAM NAME=bgcolor VALUE=#F5F5F5> <EMBED src="https://www.bookstoredirectory.co.uk/uk_ir_locator.swf?xmlfile1=https://www.bookstoredirectory.co.uk/uk_ir_locator.xml" quality=high wmode="transparent" bgcolor=#F5F5F5 WIDTH="480" HEIGHT="590" NAME="uk_ir_locator" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="https://www.macromedia.com/go/getflashplayer"></EMBED> </OBJECT>
Forum: Themes and Templates
In reply to: Flash in home pageStill Nothing
<object id="uk_ir_locator" width="480" height="590" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="FlashVars" value="xmlfile1=https://www.bookstoredirectory.co.uk/uk_ir_locator.xml" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="src" value="https://www.bookstoredirectory.co.uk/uk_ir_locator.swf?xmlfile1=https://www.bookstoredirectory.co.uk/uk_ir_locator.xml" /><param name="pluginspage" value="https://www.macromedia.com/go/getflashplayer" /><param name="flashvars" value="xmlfile1=https://www.bookstoredirectory.co.uk/uk_ir_locator.xml" /><embed id="uk_ir_locator" width="480" height="590" type="application/x-shockwave-flash" src="https://www.bookstoredirectory.co.uk/uk_ir_locator.swf?xmlfile1=https://www.bookstoredirectory.co.uk/uk_ir_locator.xml" FlashVars="xmlfile1=uk_ir_locator.xml" quality="high" wmode="transparent" pluginspage="https://www.macromedia.com/go/getflashplayer" flashvars="xmlfile1=uk_ir_locator.xml" /></object>
Forum: Themes and Templates
In reply to: Adding an Order Form Templet…is it possible?https://www.elegantthemes.com/demo/?theme=ePhoto
Just Add contact 7 form Plugin
Forum: Plugins
In reply to: Custom field problemthe flow of logic that i’am after is,
If author do nothing
If not
Check price? if price show price and tag
if not
Check reviewazon price? if price
show reviewazon price and tag
If not
Show out of stock banner.
Forum: Themes and Templates
In reply to: Price Tag problemI’ve managed to simplify the code a little, But I’m still a little stuck with, If author field true don’t display price or out of stock.
And if price empty check $ReviewAZON_LowestNewPrice field. before out of stock.
<?php $price = get_post_meta($post->ID, 'price', true); if ( $price ) { echo '<span class="price-tag"> '; } else { echo '<span class="band2 outofstock2"></span>'; } ?> <?php if(get_post_meta($post->ID, 'price', true) != "") { ?> <span><?php echo $Price = get_post_meta($post->ID, 'price', true); ?></span> <?php } ?>
Forum: Fixing WordPress
In reply to: Price Tag problemI’ve managed to simplify the code a little, But I’m still a little stuck with, If author field true don’t display price or out of stock.
And if price empty check $ReviewAZON_LowestNewPrice field. before out of stock.
<?php $price = get_post_meta($post->ID, 'price', true); if ( $price ) { echo '<span class="price-tag"> '; } else { echo '<span class="band2 outofstock2"></span>'; } ?> <?php if(get_post_meta($post->ID, 'price', true) != "") { ?> <span><?php echo $Price = get_post_meta($post->ID, 'price', true); ?></span> <?php } ?>
Forum: Fixing WordPress
In reply to: Price Tag problemAnyone?
Forum: Fixing WordPress
In reply to: Why won't this echo in PHPTry
<?php if ( in_category( 'wordpress-theme' )) { echo ('<a href="https://example.com/<?php the_title(); ?>" class="test"></a>'); } ?>
Forum: Themes and Templates
In reply to: Price Tag problemIf This Helps
A out of stock item
https://www.thebookboutique.co.uk/category/sold-out/A Amazon affiliate, missing price.
https://www.thebookboutique.co.uk/category/amazon/And products I sell
https://www.thebookboutique.co.uk/And a author post
https://www.thebookboutique.co.uk/category/authors/Forum: Themes and Templates
In reply to: my website post page and how to template it?It ok now. I fixed it I just need to call the template from single-custom.php not from loop-custom.php
Forum: Themes and Templates
In reply to: my website post page and how to template it?Hi Thanks For the Info
I found a plugin that was supposed to do what you suggested “custom post template” Which suggests doing the same thing, however in the custom template it just doesn’t pick up the website general template.
Have I missed something?
Forum: Everything else WordPress
In reply to: Alt text for text!Thanks for the help esmi.
Forum: Everything else WordPress
In reply to: Alt text for text!Ive removed the <a href=”<?php the_
Code button not workin
<h4 class=”title”>< href=”< ?php the_permalink(); ?>”> <?php the_title_shorten(35,’…’); ?></></h4>
Forum: Everything else WordPress
In reply to: Alt text for text!<h4 class=”title”> href=”< ?php the_permalink(); ?>”> <?php the_title_shorten(35,’…’); ?></h4>
sorry the code on the post editor removed some text