Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Hello everyone

    Is there any feedback from the developer on this? Updating to WP 4.2 breaks all of my current form.

    Do I need to update Visual Form Builder first and then WordPress as it seems to break the other way?

    Thread Starter playboi14

    (@playboi14)

    Hello.

    Thanks for the speedy reply. I am sorry if I listed this in the wrong location, I will remember that if I need to post any other questions.

    Thanks for the heads up on the capabilities of of your plugin. I would like to view images in a smaller size but I wont go pulling my hair out to get it.

    Have a good day!

    Yea that other plugin is probably the best I’ve used for content type management.

    I use that version, plus I’ve modified it for my own use too.

    It gets quite complex, but just read all of the documentation and information you can online and it should work well for you.

    Hey Mate,

    Ok well I don’t use this plugin any more (I use ‘Custom Content Type Manager’ which is amazing for creating my own ‘Types’) but ill see if I can help you out anyway.

    Can you copy and paste your entire page template file? It should look something similar to this:

    <?php
    /**
    Template Name: OurEvents
    */

    get_header();

    /*Build an array variable to hold ALL of our event data */
    /*Change the ‘ourevent’ to your custom post type*/
    $args = array(
    ‘post_type’ => ‘ourevent’,
    ‘posts_per_page’ => -1
    );

    /*Get all the posts */
    $posts = get_posts($args);

    /*Loop through all of the posts in the custom post type*/
    foreach ( $posts as $post )
    {
    /*Set up the post data */
    setup_postdata($post); ?>
    <h3>”<?php the_title();?>”</h3>

    <!– we create a variable and capture the ‘EventLocation’ in it, change this to the NAME of your individual variables that your trying to capture –>
    <p>
    <?php $EventLocation = get_post_meta($post->ID,’EventLocation’,true);
    echo $EventLocation ?>
    </p>

    <p>$EventDescription = get_post_meta($post->ID,’EventDescription’,true);
    echo $EventDescription ?></p>

    } ?>

    Thread Starter playboi14

    (@playboi14)

    I fixed this myself actually. I simply removed the [satellite thumbs=fullright] shortcode I put into the page and added to to my template file instead.

    I then added the other shortcode [satellite display=off] to the page itself and when I viewed the page it worked perfectly with thumbs=fullright

    Its all good now ??

    However, I would be interested in messaging the developer however I am not sure how to contact him .

    I just checked your site using Chrome 19, Firefox and IE9 and it loads in in about 6 seconds for me, and starts animating.

    I am not sure you will be able to get much faster responses from that as from what I have seen in the plugin it has to preload all of your images (6 of them it seems on your site) and then display them. So loading 6 images, even small ones like yours (at about 500KB in total) is still half a megabyte to load, which will generally take a few seconds by itself anyway.

    If you are getting different results try refreshing from the Cache (Control F5 in chrome, or delete cache in Internet Explorer)

    I know sometimes when I used this plugin and modified a lot of things it would someones act weird, but overall it works for my sites.

    Hope this helps.

    Thread Starter playboi14

    (@playboi14)

    Hello again mate,

    Do you happen to know if this issue might be addressed in any of your upcoming releases? I am still having an issue with DOCX displaying as gibberish.

    Is this an issue with just the plugin or is it a google thing? as it says in your plugin description that it displays DOCX files.

    Kind Regards

    Hello again.

    I tried to make a new topic, but I am getting error messages saying that new topics are closed. So I have decided to put some of my changes in here. I really hope they help someone!

    Hey Guys,

    Since I cant seem to see the developers updating this plugin, I thought it was about time I started modifying its core files to achieve my desired functionalities.

    I love how we can enter into the ‘Caption’ section for each ‘Slider’ any content and it will appear on the slider. However even with custom CSS I can only have so many elements (and by this I mean I can enter <div class=”title”> Some Title Text </div> and <div class=”text”> This is body text </div> to allow me to display a nice title and body text. However, this requires HTML in the ‘Caption text’ section, and honestly clients will NOT know what to do…

    THUS I have decided to detail below how to add more fields to the plugin’s slider administration page to allow you to add additional content to the sliders caption. Because of the way the developer coded the plugin, its VERY VERY simple to do (by comparison to declaring new types or using another plugin)

    BACKGROUND INFO / SCENARIO
    I have a client who wants to have a TITLE, TEXT and LINK displayed on multiple slides. They are a basic computer user and must be able to enter it into a simple defined field. So using HTML and wrapping text is not suitable

    WHAT NEEDS TO BE DONE!
    Firstly, only please attempt this if you know PHP and are comfortable with messing around in plugins. Usually I do not touch plugins as often they are updated and loose any changes, however I dont think the developers will be updating this again so I am willing to take the risk.

    You need to MODIFY the existing original plugin files for the slider itself. Note, it is very well maintained in the backend of the plugin, with multiple PHP files and links between them for defining functions, as such it may look scary but don’t worry I assure you it is simple.

    Steps

    • Go to Plugins, Editor and select ‘TheThe Image Slider’
    • Once loaded you need to select “thethe-image-slider/inc/inc.boxes.php”
    • basically this file is the code used on the ‘Add’ and ‘Edit’ screens when you want to add or edit the slides in the slider. This defines all of the HTML elements that will be used on the page. We simply want to make MORE textfields so that clients can enter data into fields
    • Navigate down to ‘Caption Settings’, these are the settings for the caption itself. We will need to add more fields at the bottom
    • Near the very bottom you will see a field called ‘Text’, this is the current text field used to hold all of the caption, now you can keep this field like I have and simply add more fields below it is you wish like I plan to do
    • Now you will need to copy exactly the data for the ‘Text’ field but simply change the type to ‘Text’ instead of ‘TextArea’ like such:

      array(
      ‘name’ => ‘text’,
      ‘title’ => ‘Caption Text’,
      ‘help’ => ‘Enter the HTML code for this slider\’s caption.’,
      ‘default’ => ”,
      ‘desc’ => ”,
      ‘type’ => ‘textarea’
      ),
      array(
      ‘name’ => ‘text1’,
      ‘title’ => ‘Caption Secondary Text’,
      ‘help’ => ‘Enter some additional stuff for this second text box’,
      ‘default’ => ”,
      ‘desc’ => ”,
      ‘type’ => ‘text’
      )

    • Note that you add a ‘,’ after the original ‘Text’ section and simply define all of the new fields you want below it. Now we will need to print out the values entered into these fields on the caption
    • Select the ‘thethe-image-slider/thethe-image-slider.php’ from the plugin editor menu
    • now you need to scroll down about 80% of the way down till you see

      $output .= $slide[‘text’];

    • Now below that line you will add the references to the other fields that you created, in my example I called it ‘text1’
    • $output .= $slide[‘text’];
      $output .= $slide[‘text1’];

    • Now when you look at your slides, you can enter more information down the bottom into the custom created fields, and when they have data they will be posted inside the caption section. You will need to style these will CSS to align them right, but overall this should make the process of creating a more friendly slider for clients possible

    Hello Mate,

    As far as I am aware the support for this plugin has been discontinued (judged on how old the plugin in (and how long it has been since its last update))

    The website has never had much in regards to documentation or support, along with the forums here that don’t offer much support

    However, the basic functionality works, and I have been HEAVILY modifying it to allow for all of my changes (such as adding multiple different user entered content sections for the ‘Caption’)

    I will be adding my notes on here, and might release my updates as I feel they have addressed some issues.

    I hope that helps ??

    Hello. Just a quick reply. Once you have created your new POST TYPE using the plugin, you need to go into one of your template files (for example I create a brand new template and only used the following code inside of it).

    <?php
    $args = array(
    		'post_type' => 'ourevent',
    		'posts_per_page' => -1
    );
    
    $posts = get_posts($args);
    foreach ( $posts as $post )
    {
           setup_postdata($post); ?>
           <a href="<?php the_permalink(); ?>">
           <h3>"<?php the_title();?>"</h3></a>
    } ?>

    Basically, you build an argument where your ‘post_type’ is set to the type you are looking for (replace ‘ourevent’ with the name of your type)

    We then make a new variable with that data (I called mine $posts) we are then calling ‘get_posts’ to get ALL of the posts with that type.

    Then you need to ‘setup_postdata’ as I have above and then simply print out the data from each post as you need it. In my example I have just printed out the title and made a link to the article.

    I hope this helps!

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