Forum Replies Created

Viewing 12 replies - 1 through 12 (of 12 total)
  • Thread Starter chrizze

    (@chrizze)

    Very nice! 🙂
    I really like this plugin, having tried many others. But the only thing missing in it, is the ability to calculate an average score for the post id and to bind the review to the post.

    Like having a rating feature on the standard WordPress comment system, they’re bound to the post or page id, and can store tha average rating into a custom field.

    I currently use a author review plugin that stores the calculated “points” into a custom field, and let’s me pull that particular key’s value into my filter.

    Looking forward to see the upcoming update later! 🙂

    Thread Starter chrizze

    (@chrizze)

    1. Yes, something along those lines. The customers (ie. visitor) review needs to be attached to the current post. Ideally create a average score as a custom field on the post.
    2. Yes, page or post. I my case it’s mostly posts as I am doing reviews, and want to show customers reviews too. My average score, and customers average score.

    3. Returning the reviews can be done either way, shortcode or not. do_shortcode can be used if there’s no theme function available.

    Why do I require the average rating value in a custom field? I am using those custom field keys in a filter to show highest/lowest ratings.

    Yes, I also believe that is has something to do with the Facebook Open Graph protocol…something is “glitching”.
    I also installed the extra plug for this open graph support. http://wordpress.org/extend/plugins/wp-facebook-open-graph-protocol/.

    Simple Facebook plugin did not work without it, so I downloaded this as well. But featured images are only showing for the forst 2 posts made.

    I hope someone can figure this out, I am not familiar with FB api.

    Thank you. 🙂

    Hello,
    Thank you for making this incredibly easy to use plugin!

    I have exactly the same issue, the image is not being sent to Facebook at all. My first two posts worked fine, and the image was transferred, but no longer.

    Are there any special instructions for post thumb in Facebook? Size, format or typ of image?

    Thread Starter chrizze

    (@chrizze)

    @shazdeh,
    Great! I uninstalled my Custom Contact Forms plugin, and Voila!
    I now use the Gravity Forms instead, seems better.

    I figured out the CSS-part last night… I added bottom: 50px;

    Thank you for this nice plugin…it will be very useful.

    Thread Starter chrizze

    (@chrizze)

    Shazdeh,
    Can you please tell us how you got the “nav” for the slider to sit inside the image?
    I moved my menu down 37px, but I feel that there’s got to be a better way?

    Did you move the navigation (the dots) by CSS? If yes, please inform us on how you do it.

    Thank you for an otherwise nice plugin! 🙂

    Thread Starter chrizze

    (@chrizze)

    Yes, I just tried that method on my local WAMP-server, and the slider works fine there. I guess there is some sort of conflict between the jQuery-libraries.

    About the slider “menu”..these “dots” must be moved through CSS, I guess they are controlled from the plugin’s CSS-file. I’ll look into it…

    Thanks!

    Thread Starter chrizze

    (@chrizze)

    Donnacha, how do you mean?
    I selected the Nivo slider under Apperance > Header > Nivo Slider (Uploaded images)

    I have set up a testweb too… http://christerjohansson.net/
    But I can’t seem to figure it out…You got it to work, why can’t I do it?

    Any ideas?

    Thread Starter chrizze

    (@chrizze)

    Donnacha or Shazdeh, how did you get it to work?
    I tried the above methods, but my installation does not work?
    I can get Nivo-slider to work elsewhere..but not on my “test-site”.

    Could you please help?

    This is what my Header.php outputs on the frontpage,

    <div class="slider-wrapper theme-default">
    <div class="ribbon"></div>
    <div class="headerSlider nivoSlider" style="width: 1000px; height: 288px">
    <img alt="" src="http://christerjohansson.net/wp-content/uploads/2011/08/wheel.jpg">
    <img alt="" src="http://christerjohansson.net/wp-content/uploads/2011/08/header2.jpg">
    </div>
    </div>
    <script>
    jQuery('div.headerSlider').nivoSlider();
    </script>

    And this is my actual Header.php,

    <?php
    /**
     * The Header for our theme.
     *
     * Displays all of the <head> section and everything up till <div id="main">
     *
     * @package WordPress
     * @subpackage Twenty_Eleven
     * @since Twenty Eleven 1.0
     */
    ?><!DOCTYPE html>
    <!--[if IE 6]>
    <html id="ie6" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if IE 7]>
    <html id="ie7" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if IE 8]>
    <html id="ie8" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if !(IE 6) | !(IE 7) | !(IE 8)  ]><!-->
    <html <?php language_attributes(); ?>>
    <!--<![endif]-->
    <head>
    <meta charset="<?php bloginfo( 'charset' ); ?>" />
    <meta name="viewport" content="width=device-width" />
    <title><?php
    	/*
    	 * Print the <title> tag based on what is being viewed.
    	 */
    	global $page, $paged;
    
    	wp_title( '|', true, 'right' );
    
    	// Add the blog name.
    	bloginfo( 'name' );
    
    	// Add the blog description for the home/front page.
    	$site_description = get_bloginfo( 'description', 'display' );
    	if ( $site_description && ( is_home() || is_front_page() ) )
    		echo " | $site_description";
    
    	// Add a page number if necessary:
    	if ( $paged >= 2 || $page >= 2 )
    		echo ' | ' . sprintf( __( 'Page %s', 'twentyeleven' ), max( $paged, $page ) );
    
    	?></title>
    <link rel="profile" href="http://gmpg.org/xfn/11" />
    <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
    <!--[if lt IE 9]>
    <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
    <![endif]-->
    <?php
    	/* We add some JavaScript to pages with the comment form
    	 * to support sites with threaded comments (when in use).
    	 */
    	if ( is_singular() && get_option( 'thread_comments' ) )
    		wp_enqueue_script( 'comment-reply' );
    
    	/* Always have wp_head() just before the closing </head>
    	 * tag of your theme, or you will break many plugins, which
    	 * generally use this hook to add elements to <head> such
    	 * as styles, scripts, and meta tags.
    	 */
    	wp_head();
    ?>
    </head>
    
    <body <?php body_class(); ?>>
    <div id="page" class="hfeed">
    	<header id="branding" role="banner">
    			<hgroup>
    				<h1 id="site-title"><span><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></h1>
    				<h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>
    			</hgroup>
    <?php boom_header_image(); ?>
    			<?php
    				// Has the text been hidden?
    				if ( 'blank' == get_header_textcolor() ) :
    			?>
    				<div class="only-search<?php if ( ! empty( $header_image ) ) : ?> with-image<?php endif; ?>">
    				<?php get_search_form(); ?>
    				</div>
    			<?php
    				else :
    			?>
    				<?php get_search_form(); ?>
    			<?php endif; ?>
    
    			<nav id="access" role="navigation">
    				<h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3>
    				<?php /*  Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
    				<div class="skip-link"><a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to primary content', 'twentyeleven' ); ?>"><?php _e( 'Skip to primary content', 'twentyeleven' ); ?></a></div>
    				<div class="skip-link"><a class="assistive-text" href="#secondary" title="<?php esc_attr_e( 'Skip to secondary content', 'twentyeleven' ); ?>"><?php _e( 'Skip to secondary content', 'twentyeleven' ); ?></a></div>
    				<?php /* Our navigation menu.  If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
    				<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
    			</nav><!-- #access -->
    	</header><!-- #branding -->
    
    	<div id="main">

    Have I implemented the code-tag for Nivo-slider wrong?
    Any ideas?

    Thank you for all your help, and this great plugin.

    Thread Starter chrizze

    (@chrizze)

    Ah, yes… !important worked well for FF4, IE already listened to it.
    It seems to be working quite well now.
    Thank you for all your help!

    I will post the link to the live site later, add it to your “portfolio” of sites using your plugin 🙂

    Thread Starter chrizze

    (@chrizze)

    Sorry, but this does not work… I did change this before and it did work, but when I updated the plugin it stopped listening to this “float:right” for some reason.

    I’ve put in your suggestion into my css-files…both theme and forms plugin, but still no joy. The checkbox remains to the left side.

    Any other suggestions?

    Your help is much appreciated 🙂

    Thread Starter chrizze

    (@chrizze)

    Yes! This is working great, I did however switch to CSS-ballon-tip instead, since there was some kind of error in javascripts. But the HTML-tag-checkbox works good anyway since I am using HTML-tags for the CSS-stuff.

    You can see it in action here: link is here

    I do however need some kind of solution to move the checkboxes to the right side instead of top or left.

    A checkbox-list is not working, since we need extra info on each “question” in the form. If you visit the form and look at it, you will see.

    Thank you for a great plugin and for the quick support, much appreciated.

Viewing 12 replies - 1 through 12 (of 12 total)