Forum Replies Created

Viewing 15 replies - 91 through 105 (of 119 total)
  • Plugin Author Mohsin Rasool

    (@mohsinrasool)

    Thanks, I just fixed the blue theme. You can re-download the plugin to fix it for you too.

    I would appreciate if you could leave nice rating ??

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    Well, I just added functionality in latest upgrade that should be available in few mins (v1.6) for you. There are attributes that you can use in nggallery shortcode for a different slider on the same page. Please check it out and let me know if it worked well for you.

    Thanks!

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    Thanks choazie, for letting me know about these problem(s). Unfortunelty, the images and resolutions I tested against did not raise pixelated images or may be I did not noticed it. Anyhow, I fixed it in v1.1.

    I would appreciate if you can spare a little bit more time to check if newer version worked for you.

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    No problem, if you come back. ??

    Yes, you can use it multiple times but all of them will have same settings. Thanks for pointing out this. I will try to make it happen if NextGen allows it. If you want different dimensions for each slider, you have to set them yourself using CSS.

    The “header already sent” error is not related to flex slider. One hint, I can give is make sure you do not have spaces at the end of your functions.php or paste line no 434. So I can see what this line does.

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    LPPYOga, You would use following shortcode for pay now button with amount of $40.

    [paypal_button type=”paynow” amount=”40″ name=”For Two People”]
    [paypal_button type=”paynow” amount=”50″ name=”For Three People”]
    [paypal_button type=”paynow” amount=”60″ name=”For Four People”]

    You can have as many buttons as you want.

    If you want a single button, where you can visitor can choose number of persons and charges are adjusted as per selected number of persons, It is not supported yet. But you can use workarounds to do that. To get you started

    1. Wrap your button shortocode with like

    <span class="paypal_button">[paypal_button ...]</span>

    2. Use jQuery to apply calculations on click

    jQuery('.paypal_button input[type="image"]').click(function(){
       var qty = jQuery(this).siblings('input[name="quantity"]').val();
       if(qty <=2)
          // $20 per person
          jQuery(this).siblings('input[name="amount"]').val(qty*20);
       else{
          // $20 for first two and the $10 for each remaining person
          var amount = ((qty-2)*10)+40;
          jQuery(this).siblings('input[name="amount"]').val(amount);
       }
    });

    Disclaimer: above code is not tested. You may expect typos and errors.

    About the second question, it is not possible with the form buttons, But you can use “echo_link=1” attribute to create a link that can be used to open a new window.

    You can check documentation page

    Hope it solves your problem.

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    Actually, theme does not comply with the WordPress guidelines. It is loading its own jQuery javascript without removing or overriding WordPress ‘s jQuery. I believe, not only flex slider any jQuery based plugin that loads its javascript files at header would not work. To fix it,

    1. Remove following code from theme’s header.php
    <script src="<?php bloginfo('stylesheet_directory'); ?>/js/jquery-latest.js" type="text/javascript"></script>

    2. Add following code to your functions.php

    function override_jquery(){
      if (!is_admin()) {
        wp_deregister_script('jquery');
        wp_register_script('jquery', get_bloginfo('stylesheet_directory').'/js/jquery-latest.js', '', '1.7.2', false);
      }
    }
    add_action('wp_enqueue_scripts', 'override_jquery', 100);

    This code is not tested but something like this would solve the problem. It actually, remove the WordPress’s jquery instance and replace it with the theme’s instance.

    Hope it will work for you.

    Good Luck!

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    Thanks for checking out the plugin. Here are the answers…

    1) To have slider and animations look graceful and decent, dimension of slider images should match.

    2) I believe, you meant portrait picture (400×600). Yes, it is intentionally repeated and intentionally not centered. Technically, the images that will be appeared next to portrait actually lies behind it. If we do not repeat it, you will see portrait image and part of next image in remaining space. In fact, we do not like it repeating thats why we suggest to use images of same dimensions. ??

    We will try to find workaround to make the portrait centralized.
    This plugin may not best suite your requirements if you have to show portrait images and can not resize dimension to match the landscape images.

    Good Luck!

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    Yes, you are right. boxer.custom.js raising following exception

    Uncaught TypeError: Object function ( selector, context ) {
    		// The jQuery object is actually just the init constructor 'enhanced'
    		return new jQuery.fn.init( selector, context, rootjQuery );
    	} has no method 'featureList'

    at Line no 7 that stopped execution of remaining javascript code causing slider not to work. If you disable it, or fix this error. your slider will start working.

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    Well, to change or disable white background

    .flexslider {background:none !important;box-shadow:none !important}
    .flexslider .slides{background:none !important;}

    And to fix the portrait, you should resize images to width of your content i.e. 500px otherwise you will notice crop on the right side of the landscape pictures. Please replace the CSS I gave earlier with following

    .flexslider .feature-image img {
    max-width: none !important;
    width: auto !important;
    display: inline !important; /* To centralize the portrait photos*/
    }

    Thanks for testing out. I do feel that plugin should have option to change the background. I will add it in next upgraded (in couple of days).

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    As I suspected, one of your stylesheet’s css rule making image resize to 500px. Please add following CSS to your style.css to fix it.

    .flexslider .feature-image img {
       max-width: 100% !important;
    }

    Once you add it, slider will look awesome. ??

    btw, very nice test page you set up.

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    It should be 100% width of the container. Your container might be of full width. Can you give me a test URL where I can check?

    Thanks

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    Yes, you people are absolutely right. I was not expecting it. Anyway, Upgrading plugin to v1.5 will fix it.

    Thanks for reporting it! You let me make this plugin more reliable for the community.

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    I apologize for the inconvenience goddesskarla. Please upgrade to the latest version. It will fix the problem.

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    Does it remain the same event if you change the content width? If it does, Please recheck the image description you set that it does not have breaks in the words (May be type it instead of copy/paste).

    If it still persists, I believe, CSS of another plugin or theme is conflicting with it. If you can show me on a test page, I can give you better advice/fix.

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    Hey Pat,

    I believe, you set the width of the content to “20” Please append either “%” or “px” to it. I believe, “300px” or “30%” would be better for your configuration.

Viewing 15 replies - 91 through 105 (of 119 total)