Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)
  • I’m sure it is a short-coming of my page, not the plug-in, which usually works quite well. That page has not been updated with the latest version of the required files, which the plug-in has been.

    I agree with your points, Jan. My reasoning, however, is that they have a paid version that (supposedly) has the features I would be adding for free. I don’t think this is ethically the right thing to do. They deserve the opportunity to be paid for the work they have done on the “pro” version of the software.

    Not that it matters much, but I looked through the rules and didn’t see it specifically mentioned that I couldn’t ask to speak with someone outside of the forums. So, I gave it a shot in a manner trying not to give out too much information. I was not upset that my request was banned, I understood the reason. I would like the ability to discuss things in a more private manner than the forums provide, but understand the reasoning for rules being the way they are and will not make that attempt again.

    I appreciate the kind comments Jan and the work you do as a Moderator.

    The export function appears to only be in the paid version, however, if you read the other support requests here that have gone unanswered, it isn’t in the paid version either…Not sure what the deal is there. I wouldn’t recommend buying the paid version at this point for sure.

    I am going to look into writing an export function for this free version as well, not sure how long it will take, but will post on this when I get it done.

    Note I wouldn’t normally write fixes and release them publicly if the developers would respond to support requests.

    Radio buttons are by their nature single selection.

    Sounds like what you are looking for is a checkbox group instead.

    I haven’t used this plugin yet, but looking at it for project right now, so if you are still having issues, I may be able to help more in the future, but right now, that’s about all I can offer.

    Hope this helps…

    Oops…discovered some oddities with my “workaround” above. Modified the added code:

    if(!is_admin()) {
          $text = do_shortcode($text);
       }

    Yep. Found this same problem myself.

    I fixed it by adding code to the file ../raw-html/include/tag-handler.php

    at about line 22 before: $tags = array(array….

    add: $text = do_shortcode($text);

    Hope this helps.

    Plugin Author fancyfiber

    (@fancyfiber)

    Marking resolved since I didn’t hear anything more that it wasn’t.

    Plugin Author fancyfiber

    (@fancyfiber)

    Hey Scott,

    I appreciate the heads up here. I hadn’t gotten around to testing with the latest versions of ACF. Version 1.2 has been posted with a fix. Please let me know if this doesn’t fix your issue.

    Thanks!

    Plugin Author fancyfiber

    (@fancyfiber)

    Thanks for the code fix, and I’m sorry I didn’t see this support request, I didn’t receive an email about is I thought I should have.

    The code has been updated with your fix, with some slight modifications.

    Thanks again!

    fancyfiber

    (@fancyfiber)

    There really isn’t enough information in your original post to give a proper answer to your question, but I’ll give a “best guess” about what you are attempting to do:

    I think, you would like to have posts (or pages) that are related to the post/page that is presently being displayed, displayed in a box, say in a sidebar.

    Assuming these are posts/pages are on your site, why would you not use a Relationship field for this? Then you would basically use the code from the ACF website to build your links to the posts.

    /*
    *  Loop through post objects ( don't setup postdata )
    *  Using this method, the $post object is never changed so all functions need a second parameter of the post ID in question.
    */
    
    $posts = get_field('relationship');
    
    if( $posts ): ?>
    	<ul>
    	<?php foreach( $posts as $post_object): ?>
    	    <li>
    	    	<a href="<?php echo get_permalink($post_object->ID); ?>"><?php echo get_the_title($post_object->ID); ?></a>
    	    </li>
    	<?php endforeach; ?>
    	</ul>
    <?php endif;

    Hey @ransom1337,

    I don’t have those two devices, but I’d like to help you out. Can you go to:
    https://fancyfiber.com/phpinfo.php

    and post the output here and I’ll look at the code and see what might be going on and get back to you. There are several little fixes I made to this plugin tonight to fix support for things I needed, and I need to be sure that the site I am working on right now will support those devices as well.

    Thanks!

    See Mike Lynn posted here…just wanted to re-iterate / confirm what Brayne said. This plugin in the repository does not work.

    The include files aren’t included.
    Options don’t save

    Agreed…Very nice idea…exactly what I was looking for….VERY broken.

    as mentioned above:
    Missing Files – include/geoip.php which I went hunting for and was able to find some version on MaxMind website and started installing, but the functions in that version were very different from the functions in the plugin, not sure what all was missing there.

    The database file is included, but it says you may want to update it. I didn’t bother of course since this plugin doesn’t work.

    Options wouldn’t save at all either as mentioned already. Hopefully some work will be done on this…or maybe it’s just a dead plugin.

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