Riversatile
Forum Replies Created
-
Forum: Plugins
In reply to: [Viper's Video Quicktags] Support for the New youtube player appearance ?Thanks for your quick answer.
I made some search by comparing the Viper’s quick tags embed and the oEMBED (described here)
It seems we have just to add the string
?version=3
just after the Youtube video ID ! I made a test with Google Chrome developer tool, it’s working.But can you put me on the good way ?
The new Youtube player :
<object width="590" height="357"><param name="movie" value="http://www.youtube.com/v/nTDNLUzjkpg?version=3"><param name="allowFullScreen" value="true"><param name="allowscriptaccess" value="always"><embed src="http://www.youtube.com/v/nTDNLUzjkpg?version=3" type="application/x-shockwave-flash" width="590" height="357" allowscriptaccess="always" allowfullscreen="true"></object>The old Youtube player (Viper’s Video Quick Tags) :
<object type="application/x-shockwave-flash" data="http://www.youtube.com/v/B7WcSd_Ju6o&color1=0x626262&color2=0x6AC8E6&rel=0&fs=1&showsearch=0&showinfo=1" width="590" height="360" id="vvq-6017-youtube-1" style="visibility: visible; "><param name="wmode" value="opaque"><param name="allowfullscreen" value="true"><param name="allowscriptaccess" value="always"></object> <script type="text/javascript"> swfobject.embedSWF("http://www.youtube.com/v/B7WcSd_Ju6o&color1=0x626262&color2=0x6AC8E6&rel=0&fs=1&showsearch=0&showinfo=1", "vvq-6017-youtube-1", "590", "360", "10", vvqexpressinstall, vvqflashvars, vvqparams, vvqattributes);</script>Forum: Plugins
In reply to: [Viper's Video Quicktags] Support for the New youtube player appearance ?Hi,
Recently, youtube embed code is now supporting new appearance, as you can see on the most blogs.
Have you got any information about implementation of the new youtube player in Viper’s Video Quicktags ?
The issue was on my side.
I synchronised my polldaddy account with the extension, now it’s working fine on Opera and other browsers.…Sorry
A volonteer to do the test with Google chrome ?
Forum: Plugins
In reply to: [Constant Contact for WordPress] Nothing happens when hit submitHi,
Can you remember since how many time it doesn’t work ?
Have you tried to disable Google Analytics plugin you’re using ?Hi,
I think you need to uninstall completly this plugin.
In your database, at the installation of the plugin Polldaddy Polls & Ratings, an API-Key is generated in the your table WP_OPTION in the collumn Option_name which is called “polldaddy_api_key“, this key is unique to identify your usage of polldaddy ! This key is not personalizable by us (users).So you must also delete the options that have been added by Polldaddy Polls & Ratings into your WP_OPTION table in your database.
To do this, first, uninstall and remove the plugin, then check if there are traces of Polldaddy by doing a seach with keyword “poll” in WP_OPTION table (if you’ve right access to your database (using PhpMyAdmin for example). If yes, remove the 3 entries called “polldaddy_use_ssl“, “polldaddy_api_key” and “polldaddy_multiple_accounts“.Finally, re-install the plugin, an new API-Key will be generated. Then import your new Polldaddy account 😉
Regards
Forum: Plugins
In reply to: a plug in for users to add content to my site.Hi,
This is not a plugin that this website use…
It’s like the built-in WordPress account, it allows users to add content.
I don’t know if this exists as a plugin for WordPressRegards
Forum: Plugins
In reply to: [Viper's Video Quicktags] Support for the New youtube player appearance ?OK… Nobody has the answer because Youtube hs not implemented the use of the new Youtue player as an embed objet.
Thanks guys
So nice of you to just copy paste the v0.1 of the plugin
to solve an issue !
If we’re using Facebook Like Thumbnail as an extension (in addition of “Fast and Secure Contact Form”), the contact page fails !
It’s strange, but it’s like that 😉
Forum: Plugins
In reply to: Drop Down Menu WidgetHave you tried this one ?
Dropdown Menu Widget : http://wordpress.org/extend/plugins/dropdown-menu-widget/Forum: Plugins
In reply to: Need Advice For My DirectoryHi, I’m french user.
What do you mean with ‘Directory’Forum: Plugins
In reply to: A plugin to redirect user if there's only 1 post in category/tag page ?Sure, but there is a better way to do that !
Simply paste this into your functions.php file (located in your theme folder)function redirect_to_post(){ global $wp_query; if( is_archive() && $wp_query->post_count == 1 ){ the_post(); $post_url = get_permalink(); wp_redirect( $post_url ); } } add_action('template_redirect', 'redirect_to_post');Then all the users will be redirected to the single post found in any category/tag page 😉
Cheers
You can also use only this script into your functions.php file (in your theme folder) :
Don’t forget to uninstall Facebook Like Thumbnail extension ![Code moderated as per the Forum Rules. Please use the pastebin]
Just replace the URL “http://www.yoursite.com/images/my-default-image.jpg” by the path of your default image 😉
Cheers
To make “Fast and Secure Contact Form” compatible with “Facebook Like Thumbnail”, do the modifications on the file “facebook-like-thumbnail.php” below.
Instead of :
if ( is_single() is_page() ) { if ( function_exists( ‘has_post_thumbnail’ ) ) { // compatibility with themes who doesn’t support featured thumbnails if ( has_post_thumbnail( $posts[0]->ID ) ) { $thumb = wp_get_attachment_image_src( get_post_thumbnail_id( $posts[0]->ID) ); $thumb = $thumb[0]; // take the URL from the array $thumb_set = true; } } }PUT this (just remove is_page() ) :
if ( is_single() ) { if ( function_exists( ‘has_post_thumbnail’ ) ) { // compatibility with themes who doesn’t support featured thumbnails if ( has_post_thumbnail( $posts[0]->ID ) ) { $thumb = wp_get_attachment_image_src( get_post_thumbnail_id( $posts[0]->ID) ); $thumb = $thumb[0]; // take the URL from the array $thumb_set = true; } } }And to finish PUT this :
-
if ( is_page() ) {
return;
}just after function fb_like_thumbnails(), like that :
function fb_like_thumbnails() { global $posts; $options = get_option(‘fb_like_thumbnail’); $default = $options['default']; if ( is_page() ) { return; }This will stop (do a return) the function if webbrowser detect a page is loading
So, from now, function fb_like_thumbnails() is not loaded for all your pages.
You can choose which page are affected or not by using this :function fb_like_thumbnails() { global $posts; $options = get_option(‘fb_like_thumbnail’); $default = $options['default']; if ( is_page( '42' ) ) { return; }In this example, the page that has the ID 42 will not load the function fb_like_thumbnails(), so the contact form will redirect users correctly after they sent the form ^_^
Rating stars are now shown with Polldaddy Polls & Ratings version 2.0.8
Thanks to all
Regards