deathwinger
Forum Replies Created
-
Thank you Total Soft, you are correct. I’ve followed the screenshot you placed and the video is now showing properly.
You have to go to add video, and then put the URL for the video link in the options to the side. Not the target link that I originally thought its supposed to go.
I appreciate you guiding me with this and now the latest video is showing.
Most appreciated and you can put this as resolved.
Sure, here is a video of the location you are speaking of, https://vimeo.com/930407451/a913f52170?share=copy
I’ve also deleted the video, created a new one, with the same link that I have in Vimeo. And still have the same issue.
Unless you are asking me to reupload the video on Vimeo and use a new link for it?
Let me know what should be my next steps. Thanks for the support so far.
Thank you, here is the requested information,
1. The version of the TS Video Gallery plugin you are using.
I’m using TS Video Gallery 2.2.9
2. The PHP version you are using.I’m using PHP version 8.1
3. The WordPress version you are using.I’m using WordPress 6.4.3
4. Please install the Query Monitor plugin.Installed. Not sure what has to be seen here nor am I seeing any errors from your plugin here.
However, here is a video showing that the last video is not working, the rest are working,
Hope this is enough information for you.
Forum: Plugins
In reply to: NextGEN Gallery “Next” “Prev” buttonsThe fix is called slimbox plugin or jQuery Lightbox Balupton Edition plugin and switching the ‘effect’ in the nextgen options to lightbox
It works excellently.
Forum: Themes and Templates
In reply to: Changing the dotted line in the news title to a solid or noneThat didn’t seem to do anything.
I am using the Sunrise version of the constructor theme right now.
Would that have anything to do with it?
Forum: Fixing WordPress
In reply to: Automatically adding sub menu links to a pageThanks a lot man. I bookmarked this page and I have been experimenting with the code. So far I have been able to get the list to appear under the content I have typed for the page, so it allows me to have a brief description of what people are seeing and then the list.
Take a look if you wish:
Forum: Fixing WordPress
In reply to: Automatically adding sub menu links to a pageI’m not understanding what special page template I would need to use for this code.
Could you explain it to me a bit more please?
Forum: Installing WordPress
In reply to: Want main page footer to be different to other page footersWorks perfectly. Thank you very much for this response 🙂
Forum: Installing WordPress
In reply to: Want main page footer to be different to other page footersThat post was directed to Micheal because I did not refresh and see your comments.
However, I will try your suggestion and see if that helps.
Forum: Installing WordPress
In reply to: Want main page footer to be different to other page footersDoesn’t seem to be working, here is a copy and paste of the code I have in my footer.php
<?php /** * @package WordPress * @subpackage Constructor */ ?> <div id="footer"> if is_home() { <script> /* VARIABLES */ var seconds_before_movie_is_removed=10; var location_of_skin="http://forums.creativecow.net/docs/answer_files/1/Clear_Skin_1"; var location_of_skin="http://forums.creativecow.net/docs/answer_files/1/Clear_Skin_1"; var location_of_flv="http://forums.creativecow.net/docs/answer_files/1/00089_001_12"; var location_of_swf="http://forums.creativecow.net/docs/answer_files/1/FLVPlayer_Progressive.swf"; var swf_width=320; var swf_height=180; /* TO COUNT HOW MANY LOOPS OF THE MOVE IN FUNCTION HAVE RUN */ var c=0; function movein(){ var botrightdiv=document.getElementById('bottomrightdiv'); var rightpx=botrightdiv.style.right; var rightpx_num=parseFloat(rightpx); if(rightpx_num<0||c==0){ /* ON THE FIRST PASS PUT THE MOVIE IN AND SET VARIABLES */ if(c==0){ write_movie(); botrightdiv.style.width=swf_width+"px"; botrightdiv.style.height=swf_height+"px"; botrightdiv.style.right="-"+swf_width+"px"; rightpx=botrightdiv.style.right; rightpx_num=parseFloat(rightpx); } botrightdiv.style.right=(rightpx_num+20)+"px"; c=c+1; setTimeout("movein()",100); }else{ setTimeout("moveout()",(seconds_before_movie_is_removed*8000)); } } /* FUNCTION TO MOVE THE MOVIE OUT */ function moveout(){ document.getElementById('bottomrightdiv').style.innerHTML=""; document.getElementById('bottomrightdiv').style.right="-100000px"; } /* FUNCTION TO PLACE THE MOVIE IN THE DIV */ function write_movie(){ document.getElementById('bottomrightdiv').innerHTML="<object width='"+swf_width+"' height='"+swf_height+"'><param name='movie' value='"+location_of_swf+"' /><param name='WMODE' value='transparent' /><param name='FlashVars' value='&MM_ComponentVersion=1&skinName="+location_of_skin+"&streamName="+location_of_flv+"&autoPlay=true&autoRewind=false' /><embed src='"+location_of_swf+"' flashvars='&MM_ComponentVersion=1&skinName="+location_of_skin+"&streamName="+location_of_flv+"&autoPlay=true&autoRewind=false' width='"+swf_width+"' height='"+swf_height+"' WMODE='transparent' /></object>"; } </script> <!-- THIS IS AN IE HACK TO MAKE THE FIXED POSITIONING WORK --> <style type="text/css"> #bottomrightdiv { position: absolute; right: 0px; bottom: 0px; } div > div#bottomrightdiv { position: fixed; } </style><!--[if gte IE 5.5]><![if lt IE 7]> <style type="text/css"> div#bottomrightdiv { right: auto; bottom: auto; left: expression( ( 0 - bottomrightdiv.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' ); top: expression( ( 0 - bottomrightdiv.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' ); } </style> <![endif]><![endif]--> <!-- END IE HACK --> </head> <body bgcolor="#00CC66" onload="movein();"> Footage Courtesy of <a href='http://www.allbetsareoff.com/'>allbetsareoff.com</a><br \> Website created by I.T. it Ltd. <div style="position: fixed; bottom: 0px; right: 0px; width: 0px; height: 0px;" id="bottomrightdiv"></div> </body> } else { <?php if ( function_exists('dynamic_sidebar')) { dynamic_sidebar('footer'); } ?> <p class="clear copy"> <?php get_constructor_footer(); ?> </p> </div> </div> </div> <?php wp_footer(); ?> </body> </html> } ?>Forum: Installing WordPress
In reply to: How to change the link style of one link aloneYup, its the last two lines in the piece of code that I posted.
Edit: Update, if you visit the page now it seems that the original code you gave me for the top menu is now working. Thank you.
I am testing the sidebar code you gave me to see what occurs.
Forum: Installing WordPress
In reply to: How to change the link style of one link aloneHmm, doesn’t seem to work when I place it here
#header-links li.indicator { background-image: url('images/arrows.png'); background-repeat: no-repeat; background-position: 98% -106px; /* 8-bit indexed alpha png. IE6 gets solid image only */ } #header-links li:hover.indicator { background-position: 98% -161px } #header-links li li.indicator { background-position: 98% 6px } #header-links li li:hover.indicator { background-position: 98% -49px } #header-links li.page-item-23 a {background: #F8B545;} #header-links li.page-item-23:hover a {background: #BE301F;}Any more assistance would be most appreciated.
Forum: Installing WordPress
In reply to: Title name of my blog not showing up on front pageThanks, that did the trick.
Btw, does anyone know what plugin this forum uses?
Forum: Installing WordPress
In reply to: Title name of my blog not showing up on front pageHmm, ok, I probably didn’t explain this properly.
What I mean is where you would see the title of the WINDOW of the browser program you are using.
I am seeing http://mosaictt.com/parmaylas/ and not Par-May-La’s Inn. I’ve tried both Chrome and IE8.
Using the constructor theme, what would I have to look for to change that?
Forum: Fixing WordPress
In reply to: Making a link different colour to the othersHmm, my placement of this code seem to be breaking the sidebar.
I’m suspecting this is where I should place the code, in my sidebar.php
Here is a breakdown of the code, perhaps you can assist me in exactly where it should be located
?php /** * @package WordPress * @subpackage Constructor */ ?> <ul> <?php /* Widgetized sidebar, if you have the plugin installed. */ if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('sidebar') ) : ?> <?php if (!is_404()) : ?> <li> <?php get_search_form(); ?> </li> <?php endif; ?> <?php wp_list_pages('title_li=<h2>'.__('Pages', 'constructor').'</h2>' ); ?> <?php wp_list_categories('show_count=1&title_li=<h3>'.__('Categories', 'constructor').'</h3>'); ?> <li><h3><?php _e('Tags', 'constructor')?></h3> <?php if(function_exists('wp_tag_cloud')) { wp_tag_cloud('smallest=8&largest=18&number=40'); } ?> </li> <?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?> <li><h3><?php _e('Meta', 'constructor') ?></h3> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <?php wp_meta(); ?> </ul> </li> <?php } ?> <?php endif; ?> </ul>