Forum Replies Created

Viewing 15 replies - 1 through 15 (of 17 total)
  • Thread Starter tfagency

    (@tfagency)

    Hmmm not working.

    Check out the page here:

    http://thefairbankagency.com/beta/tailorynyc/appointment-concierge/

    BTW I’m using the PRO version, not sure if this would make a difference or not.

    Tom:

    I’m getting the same validation errors I had before, plus the following output after my closing </html> tag:

    <br />
    <b>Warning</b>: Invalid callback MetaSliderHtml5::process, cannot access private method MetaSliderHtml5::process() in <b>/[ MY SITE URL ]/wp-includes/functions.php</b> on line <b>2935</b>
    <br />

    Daedalon: I’m also interested in getting in touch about custom work. Are you currently available?

    There are plenty of us hand-coders using Dreamweaver as a FTP & site management tool. And arrogant remarks about our lack of development prowess aren’t helpful or relevant.

    Thread Starter tfagency

    (@tfagency)

    OK did a bit of testing and I see that if you compose the resume submissions properly the line breaks are there. Still had a problem with special chars, but not too bad if the resume submitter has a clue πŸ˜‰

    So it’s mainly a problem with the cut & pasters out there. Could there be something in the way of a solution in forcing character coding in some of the PHP? Be happy to try a hack if you think something might work out.

    Thread Starter tfagency

    (@tfagency)

    Thanks for your reply, I see the button now.

    When I tried this out the PDF was unformatted and loaded with special characters. Here’s a sample (with the submitter’s info changed for privacy):

    – – – – – – – – – – – –

    John Doe 123 Main Street. Los Angeles , CA Γ‚ 92001|Cell phone (213) 123-0000|
    recipient@gmail.com Γ‚ Γ‚ PROFESSIONAL SUMMARYΓ‚ My work experience is excellent and suited for the position. I would love to have this job. Γ‚ I am a fast learner Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Bilingual Γ‚ Work history: Counter Person/ Γ‚ Burger King Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ 11/2011 to 03/2013 McDonalds-Γ‚ 123 Elm Street, Los Angeles, CA 92001 DUTIES: Γ‚ Make hamburgers and salads , Γ‚ organize everything for the next shift, cleaning machines and tools, lifting heavy objects ,Γ‚ memorizing recipes Γ‚ Housekeeper Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚ Γ‚

    – – – – – – – – – – – –

    This was the worst I saw. Others were a bit better — they printed without the odd characters — but none of the submissions in PDF version had line breaks, the text just ran together in one text block.

    This was downloaded using Mac OS 10.8.4 and Safari 6.0.5. BTW.

    Is there a way to turn on a WYSIWYG editor for the submissions? As it it now it’s easier to just copy/paste the info from the form field which is not the best way of reviewing the info.

    Thread Starter tfagency

    (@tfagency)

    Ah so by design it’s not built to display your post with a template. That’s actually OK, glad I know it now.

    I’ll probably just stick with the way I’m displaying the info for now but thanks for the info about altering the plugin files. Could come in handy down the road.

    Great plugin, my clients want it on all their sites now πŸ™‚

    Thread Starter tfagency

    (@tfagency)

    Hal: Sorry for the delay, I wasn’t notified about your follow-up post for some reason.

    Implemented the debug mode, but no messages (which is good, really).

    The way I get this plugin to work is to create a separate page for the label add a shortcode in the content field, then call it up in a Fancybox overlay. Kind of a wonky method.

    But the original problem still exists — I can’t view the content at all when clicking on “view post”. It would seem that the custom post type needs a special template (like “single-nutritional.php” or something) for viewing the single post. Your thoughts?

    Thread Starter tfagency

    (@tfagency)

    Still wondering about the date order. Is this possible to set from newest to oldest? Would love to know. Thanks!

    I have the same problem. Not only crashes my Dreamweaver but I can’t even open the site profile again until I rebuild my preferences. Not cool.

    @sevenspark: You say this has worked with ‘thousands of servers’ successfully. On the other hand, I’ve used Dreamweaver for dozens of WP installations with many hundreds of WordPress plugins and have never had one fry my FTP client of choice until I installed this one.

    Telling people to stop using a very versatile Adobe product to accommodate your plugin would seem to be a non-starter strategy. You’d do well to look into the source of the problem.

    Thread Starter tfagency

    (@tfagency)

    Got it, works fine now. The selection menu “user-feed” options isn’t very intuitive IMO. But it’s all good now, thanks for the quick reply.

    Thread Starter tfagency

    (@tfagency)

    For anyone interested, I worked out a solution to the above. I now have a conditional statement that checks ids of five different pages, matches custom post data with them and displays it in the sidebar.

    The conditional could be more elegant, but it works for me:

    <?php
    
    if ( is_page( 'service-one' ) ) {
            $pricedata = 01;
        } elseif ( is_page( 'service-two' ) ) {
            $pricedata = 02;
        } elseif ( is_page( 'service-three' ) ) {
            $pricedata = 03;
        } elseif ( is_page( 'service-four' ) ) {
            $pricedata = 04;
        } elseif ( is_page( 'service-five' ) ) {
            $pricedata = 05; }
    
    $pricemenu_loop = new WP_Query(array( 'post_type' => 'servicemenu', 'posts_per_page' => 1, 'p' => $pricedata));
    		while ( $pricemenu_loop->have_posts() ) : $pricemenu_loop->the_post(); ?>

    Styled the output in the sidebar with post slugs in a couple of floating divs:

    <h2>Service Menu</strong></h2>
    
    <div class="floatleft">
    <ul>
    <li><?php echo post_custom('item1', true); ?></li>
    <li><?php echo post_custom('item2', true); ?></li>
    </ul>
    </div>
    
    <div class="floatright">
    <ul>
    <li><?php echo post_custom('price1', true); ?></li>
    <li><?php echo post_custom('price2', true); ?></li>
    </ul>
    </div>

    …etc.

    Hope this helps somebody. Pretty simple stuff but it was quite a search for me to finding the right formula.

    If anyone knows a better way to code the above hackery, have at it πŸ™‚

    Thread Starter tfagency

    (@tfagency)

    Working now, thanks much!

    My issue resolved. Thanks for lightning reply… you the man Ame!

Viewing 15 replies - 1 through 15 (of 17 total)