tfagency
Forum Replies Created
-
Forum: Plugins
In reply to: [Appointments] Styling Table BordersHmmm not working.
Check out the page here:
https://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?
Forum: Plugins
In reply to: [Responsive Select Menu] Crashes DreamweaverThere 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.
Forum: Plugins
In reply to: [Resume Submissions & Job Postings] How to Print SubmissionsOK 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.
Forum: Plugins
In reply to: [Resume Submissions & Job Postings] How to Print SubmissionsThanks 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|
[email protected] ? ? 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.
Forum: Plugins
In reply to: [Easy Nutrition Facts Label] Can't view contentAh 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 ??
Forum: Plugins
In reply to: [Easy Nutrition Facts Label] Can't view contentHal: 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?
Still wondering about the date order. Is this possible to set from newest to oldest? Would love to know. Thanks!
Forum: Plugins
In reply to: [Responsive Select Menu] Crashes DreamweaverI 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.
Forum: Plugins
In reply to: [Alpine Photo Tile for Instagram] Only loading feeds from users I followGot 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.
Forum: Plugins
In reply to: Load custom post data into sidebar by parent page idFor 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 ??
Working now, thanks much!
My issue resolved. Thanks for lightning reply… you the man Ame!