nancyeb01
Forum Replies Created
-
The Gravity Forms Directory Plugin – installed as a separate plugin that works with Gravity Forms – will take the output of your form and show it in a table or directory on a page.
If you have set up one of the fields to be a link* to the single entry, it will popup in a lightbox view showing all the form field results.
If you are using forms to create posts, the link in the Directory won’t go to the actual post. I wish I could figure out how to make it do that.
* you choose which fields link to the single entry view when you are configuring your form.
I hope this helps.
Nancy
That’s great Zack. Thanks so much.
Forum: Requests and Feedback
In reply to: Error messages built into WordPressHi Mike,
Thanks for the response. I actually got the message on a test site of mine. I was logged in as a non-admin user. I am using two plugins to manage user access: S2Member and User Role Editor.
I clicked on a link that was not available to me under my privilege level and the Cheatin Uh message popped up.
So, your saying it should never be shown on the front end?
Thank you,
NancyIt would be great if this were fixed. I want to use the checkboxes for selection of State name. Gravity Forms has a powerful feature of Bulk Add/Pre-defined choices for checkboxes. You can even create your own custom array to save and choose.
Then, the directory could have a column for State or any other selected check box field that can be sortable.
I hope the GF Directory plugin will be supported. It’s a great tool. I for one would gladly pay for it rather than have it based on donation.
Maybe some other developer could take it on! Please don’t give up on this!
Hello, Thank you Joy for providing that code to filter by category.
I could not get it to work. I deleted the old code as you indicated from ‘sorttablepost.php’ (which for me started at line 223 under comment “// Begin the loop to generate the table body”). And, then posted your code above.
It broke the page, so I removed it. I may have done something wrong, but I’m not sure.
The page I want the sortable, filtered by category table on is here: http://winetrailseast.com/on-the-trail/wine-trails/
It will only be of use to me if I can filter out all categories except wine trails.
Any help on this would very much be appreciated.
best regards, NancyI’m using WordPress 3.3.1. and it’s not working on a page. I just installed it.
http://www.jeffsplacemetrowest.org/radio-interview-with-jenny-about-jeffs-place
I’m using this code for the link
[wpaudio url=”http://www.jeffsplacemetrowest.org/wp-content/uploads/2012/06/schRecording2905692.mp3″ text=”Jenny Radio Interview” autoplay=”1″]I found a tutorial that explains it better than I can. http://perishablepress.com/wordpress-custom-fields-tutorial/
Hi,
I was looking for the same thing. I found a solution and maybe it will work for you. In my theme, I edited the page ‘single.php’. This is the template for my Post page.I was looking to add this: <?php the_meta(); ?> in the loop.
You need to find the correct place to insert it and then save the page. I use an FTP program and Dreamweaver. I have a copy on my local computer of the files that are on my server and use FTP to copy back and forth.
BTW, before I change any file, I copy the original and give it a name – singleORIG.php. That way, I can go back if I break something.
The single.php file will be slightly different depending on the theme. Here is where I inserted the meta code in one theme:
This is an excerpt inside what is called the loop.
<!– post content –>
<div class=”entry-content clearfix”>
<?php the_content(); ?>
<?php the_meta(); ?>
</div>Another theme I use has a slightly different single.php, and I inserted the meta code as follows:
<div class=”loop”>
<div class=”loop-content”>
<?php while ( have_posts() ) : // The Loop ?>
<?php the_post(); ?><?php get_template_part( ‘content’, ‘single’ ); ?>
<?php the_meta(); ?>
<?php comments_template(); // include comments template ?>
<?php endwhile; // end of one post ?>
</div>I hope that helps you.
Nancy
I have a similar problem. The Custom Post shows the Custom Field for my checkboxes; and the output includes the correct values, but the Post display surrounds it with Array code.
Array
(
[wpcf-fields-checkboxes-option-1310960586] => Connecticut
[wpcf-fields-checkboxes-option-1885827021] => Maine
[wpcf-fields-checkboxes-option-1748639191] => Massachusetts
)I am using Loopbuddy by iThemes for the layout. It works with other custom fields. Any thoughts on this would be most appreciated.
Thank you, NancyForum: Plugins
In reply to: Adding Custom Press Post Types to MenuI wanted to do this also. I found a solution to creating a page that will display the CPTs (archive). That page can then be added to the menu. Here is the site with the tutorial. http://nathaningram.com/tutorials/supercharge-wordpress-with-loopbuddy-custom-post-types/
Forum: Plugins
In reply to: [WordPress Firewall 2] [Plugin: WordPress Firewall2] Google blocked?I had similar email messages that a string containing a Google map url was a problem. I was unable to use the plugin links to resolve as they would not work (permissions problem). I’m looking forward to plugin updates to resolve these issues.
Solved it! Thank you. I created a layout with only one content area.
I figured out something. My blog theme http://peergroupma.org has ‘content widgets’ and I use them for header and various content areas. The ‘Register’ page registration form seems to be repeating in those widget areas, seeing them as content areas to use multiple times. Not sure how to fix except to create a unique layout with only one content area.
Forum: Themes and Templates
In reply to: Print Preview is uglyHi, I am struggling with the same thing! I was told to add a link to a print.css stylesheet as I do with my regular website. I tried that but it is still not great.
I did notice that your content is cut off in the print preview. That may be because the container has a tag: overflow:hidden?
Anyway, here is how to link to a print.css based on what my theme company (iThemes.com) suggested. Find the functions.php file in your theme folder. Make a copy of it so you have it to go back to. then add (before the ending tag ‘?>’:
add_action(‘wp_print_styles’, ‘add_print_css’);
function add_print_css() {
wp_enqueue_style(‘print’, get_bloginfo(‘stylesheet_directory’) .’/print.css’, ”, ”, ‘print’);
}Create a stylesheet called ‘print.css’ and put that in the same folder. I take a copy of my main stylesheet and rename it print.css and then start modifying it.
Do a little research on print stylesheets. I usually use the css selector ‘display:none;’ for sidebars and navigation.
I’m not an expert but I hope this helps someone.