aneemal
Forum Replies Created
-
Forum: Plugins
In reply to: Retrieve and loop through comments with AJAX and jQueryAha, I think my syntax was wrong.
I changed:
action: 'do_ajax', data: { 'post_id' : '72' },to:
data: { 'action' : 'do_ajax', 'post_id' : '72' },and I’m getting the correct response from the
console.log.So now I’m figuring out how best to handle the array 🙂
Forum: Themes and Templates
In reply to: Positioning previous/next_comments_linkThank you so much Andrei! 🙂
Forum: Themes and Templates
In reply to: Show time infront of post (inline)Ok, I changed the quote marks:
<?php echo apply_filters("the_content", "<span class='stmp'>" . get_the_time('g:ia') . " </span>" . get_the_content( '...read more' )); ?>Forum: Themes and Templates
In reply to: Show time infront of post (inline)Mmmmm, the
<strong></strong>tags don’t appear to have an effect?!Forum: Themes and Templates
In reply to: Show time infront of post (inline)Thank you so much alchymyth that’s a great help to me!!!
Forum: Fixing WordPress
In reply to: Embedding Flash within theme (header)Hi esmi and samboll, thank you for your input.
esmi, I tried replacing the code, as suggested, but it makes no difference.
samboll, I had installed the Kimili plugin… but I’m struggling with it. Do I insert the generated tags? i.e., the square ones:
[kml_flashembed movie="/my/great/movie.swf" width="400" height="300"]with these [] tags, the code itself appears in the page. If I replace them with these <> tags, the Download Flash icon (alternative content) appears. I tried inserting the flash into the post, for testing, but again, the writing inside the square tags is all that appears.
Going back to just normal html embedding, nothing shows, but if I right-click over the area, it gives me the Flash menu – so the Flash is there?
This is driving me insane :'( …It can’t be this difficult!!
Thanks for your help… if you have any other tips, please let me know. If I find any solutions, I’ll be sure to post them here.
Forum: Fixing WordPress
In reply to: Embedding Flash within theme (header)Hi Esmi,
thank you for your response. Yes, I’ve tried both relative and absolute urls, but it seems to make no difference?
Does it matter that I am running the site locally on localhost?
I put this in my header php file:
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/swfobject.js"></script> <script type="text/javascript"> swfobject.registerObject("menu_container", "8"); </script>And this in the main page:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="menu_container" width="770" height="380"> <param name="movie" value="<?php bloginfo('stylesheet_directory'); ?>/flash/new.swf"> <!--[if !IE]>--> <object type="application/x-shockwave-flash" data="<?php bloginfo('stylesheet_directory'); ?>/flash/new.swf" width="770" height="380"> <!--<![endif]--> <a href="http://www.adobe.com/go/getflashplayer"> <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player"> </a> <!--[if !IE]>--> </object> <!--<![endif]--> </object>Please, I’d really appreciate any input!