Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author Rajan Vijayan

    (@rajanit2000)

    Hi aotyehel.,

    There is no options passed by shortcode variable. This plugin required Bootstrap 3x theme. The options you can set via admin panel settings menu

    Please explain what issue you have?

    The problem, Rajan, is that you have absolutely no documentation whatsoever. Nobody can magically read your mind about how this plugin is supposed to work.

    [display_flexslider] … Great. Nothing there. Nice.

    So before this gets voted 1 star by a lot of people, why not do a short write-up describing the plugin and its function?

    Plugin Author Rajan Vijayan

    (@rajanit2000)

    Hello 112502, May i know issue. Its no need a documentation, Its nothing like huge plugin, Its just Flex slider used to Bootstrap 3 version. It just reduce developer hand code.

    If you have any quires please let me know

    I am also having the issue of nothing showing up. I’ve created two new slides and added the short code where I wanted, but only have the left/right arrows showing up.

    I also don’t see featured image on the page like it is showing in the screenshot.

    Plugin Author Rajan Vijayan

    (@rajanit2000)

    Can you give me your URL please

    Plugin Author Rajan Vijayan

    (@rajanit2000)

    And may i know your Bootstrap version. Keep in mind this plugin only applicable for Bootstrap 3 or later

    The URL is: http://www.heartbeatinteractive.net/clients/10x/wordpress

    I am using Bootstrap 3.2.

    Thanks!

    I don’t understand how this works..

    I would like to add 3 images into a post and to navigate between them using the slider, but I can’t figure out how this works..

    Lack of ducumentation.. If no documentations are needed, I should add some images into my post and add the shortcode. After this it should work.. but it doesn’t..

    Plugin Author Rajan Vijayan

    (@rajanit2000)

    Hi dzsamper.,

    Just add slider under slider tab (set featured image on right hand side) and put short code like following

    <?php echo do_shortcode("[display_flexslider]")?>

    Just try it if any issue let me know with screenshot or url

    Plugin Author Rajan Vijayan

    (@rajanit2000)

    If its not working just uninstall this plugin

    do following steps with your theme

    Put this code on your theme function.php

    <?php
    //Slider
    	$labels = array( 'name' => 'Slider', 'singular_name' => 'Slider', 'add_new' => 'Add New', 'add_new_item' => 'Add New Slider', 'edit_item' => 'Edit Slider', 'new_item' => 'New Slider', 'all_items' => 'All Sliders', 'view_item' => 'View Slider', 'search_items' => 'Search Sliders', 'not_found' =>  'No Sliders found', 'not_found_in_trash' => 'No Sliders found in Trash', 'parent_item_colon' => '', 'menu_name' => 'Sliders' );
    
    	$args = array( 'labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true,  'show_in_menu' => true, 'query_var' => true, 'rewrite' => array( 'slug' => 'slider' ), 'capability_type' => 'post', 'has_archive' => true, 'hierarchical' => false,'menu_position' => null,'supports' => array( 'title', 'thumbnail' ), 'menu_icon' => get_bloginfo( 'template_url').'/inc/images/slider.png' );
    	register_post_type( 'slider', $args );
    ?>

    Put this code on where you want to display slider

    <?php
    global $post; $i = 1;
    $args = array( 'numberposts' => -1, 'post_type' => 'slider' );
    $myposts = get_posts( $args );
    if( !empty($myposts) ){?>
    <div class="banner">
    	<div id="carousel-banner" class="carousel slide" data-ride="carousel">
    		<div class="carousel-inner">
    			<?php
    			foreach( $myposts as $post ) { setup_postdata($post); ?>
    			<div class="item <?php if($i == 1){?> active <?php $i++; }?>">
    				<?php the_post_thumbnail( 'slider' );?>
    			</div>
    			<?php }?>
    		</div>
    		<a class="left carousel-control" href="#carousel-banner" role="button" data-slide="prev"></a>
    		<a class="right carousel-control" href="#carousel-banner" role="button" data-slide="next"></a>
    	</div>
    </div>
    <?php }?>

    we ll release updated version soon

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘How do I use this?’ is closed to new replies.