Riversatile
Forum Replies Created
-
Forum: Plugins
In reply to: [Lightbox Plus Colorbox] Lightbox Sitting Behind ALL ContentIn your embed code, add “wmode=”opaque” in the parameters.
<param name=”wmode” value=”opaque” />Example :
<object type="application/x-shockwave-flash" data="http://www.youtube.com/v/DNJXvUL8eTI&color1=0x626262&color2=0x6AC8E6&rel=0&fs=1&showsearch=0&showinfo=1&version=3&modestbranding=1&autohide=1" width="590" height="360" id="vvq-6187-youtube-1" style="visibility: visible; "><param name="wmode" value="opaque"><param name="allowfullscreen" value="true"><param name="allowscriptaccess" value="always"></object>Forum: Plugins
In reply to: Lightbox Plus Plugin Won't Work with ThemeHi,
First of all, when you add image to your wordpress media section, do you have selected “File URL” below the Link URL field ?
See here :
http://www.23systems.info/wp-content/uploads/2008/07/file.pngForum: Plugins
In reply to: [Viper's Video Quicktags] Support for the New youtube player appearance ?SOLVED : Here is the solution, copied from http://wordpress.org/support/topic/plugin-vipers-video-quicktags-how-to-embed-new-youtube-player
1 – OPEN the following file : vipers-video-quicktags.php
2 – FIND:
'url' => 'http://www.youtube.com/' . $embedpath . $color1 . $color2 . $border . '&rel=' . $rel . '&fs=' . $fs . '&showsearch=' . $showsearch . '&showinfo=' . $showinfo . $autoplay . $loop . $hd,3 – REPLACE WITH:
'url' => 'http://www.youtube.com/' . $embedpath . $color1 . $color2 . $border . '&rel=' . $rel . '&fs=' . $fs . '&showsearch=' . $showsearch . '&showinfo=' . $showinfo . $autoplay . $loop . $hd . '&version=3&modestbranding=1&autohide=1',4 – SAVE & UPLOAD the file to your server
5 – If you’re using a cache plugin : delete cached files
Yeah !!! It’s working very well !
Thanks !
Forum: Plugins
In reply to: [WP htaccess Control] "Header already sent…" after upgrading to 2.5.7Have you tried to go to line #77 in the file wp-content/plugins/wp-super-cache/wp-cache-phase2.php t understand where the error comes from ?
Forum: Plugins
In reply to: Extra border space around WordPress Audio PlayerHi,
If you talk about the space just between the audio player and the first post… You must change some value in your CSS file :
1. Find #pages section in your CSS file.
2. Find padding: 10px 30% 40px 5%;
3. Replace 40px by 10px
4. It should be better. That’s it.I noticed I have a common issue with you on my site in the audio player.( With Google Chrome)
When I click “play”, the message “File not found” appears ! But the sound is playing !!!Do you notice the same thing at your side ?
Forum: Plugins
In reply to: Audio Player No Longer VisibleHi,
This plugin will only work if your theme allows inserting code in the HEAD and FOOTER sections of your blog. See this page for more details.
But normally, all theme already have those codes.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] embed video set max widthIt depends.
If you talk about Jetpack, I don’t know.But if you use auto-embed supported by WordPress (Youtube etc…)
You can define the width limit here
http://www.your-site.com/wp-admin/options-media.phpPerhaps it can help.
…OK. Fine.
But you do not have uninstalled all-in-one-seo-pack.Hi,
This is what I see in your source code of http://www.paranormal-store.com/shop/ :
<!-- All in One SEO Pack 1.6.13.3 by Michael Torbert of Semper Fi Web Design[366,399] --> <meta name="description" content="Welcome to our paranormal Store! To this page you will find more than 36.000 products with the warranty of the best Global suppliers! Like Books, Apparel, Jewelry, Music, DVD, Electronics and many other tools." /> <meta name="keywords" content="occult books, gothic apparel, gothic jewelry, gothic music, paranormal dvd, hunting ghosts, gothic " /> <!-- /all in one seo pack -->This is what I see in your source code of http://www.paranormal-store.com/blog/ :
<!-- All in One SEO Pack 1.6.13.3 by Michael Torbert of Semper Fi Web Design[366,400] --> <!-- /all in one seo pack -->So, it seems you have to double check if you have %category_title% | %blog_title% in the field Category Title Format:
Because it seems that your theme writes certain page on the category.php template !Regarding your last question : Yes, it rewrites all pages/posts.
Regards
UP !
Forum: Plugins
In reply to: Clear history option for WP siteFrom my knowlegdes, it should be very difficult to implement this kind of function !
…Because of the different number of internet browsers.But I think it’s possible to find some javascript functions on the internet and adapt them into a WordPress plugin. But I don’t know if this already exists in WordPress plugins directory.
Regards
Forum: Plugins
In reply to: [My Category Order] How to remove this?Hi,
Very easy !
You have to say (with CSS) that you want no “list-style” for the list displayed into your sidebar (or any other container).
Just add list-style: none;Here is an example for no style into the sidebar :
#sidebar li { list-style: none; }Forum: Plugins
In reply to: [Wa Plurk Updater Plugin] Double postingHi,
Are you sure there is not a loop somewhere ???
A social website which posts your post “Y” that PLURK has already posted as “X”… for example ?Forum: Plugins
In reply to: [Viper's Video Quicktags] Support for the New youtube player appearance ?I don’t find the function that return the “vipe’s video quick tags” embed code in the HTML page.