casimir
Forum Replies Created
-
Forum: Plugins
In reply to: [Secure Custom Fields] WYSIWYG Custom HeightThanks samba_nz. I love the WordPress community.
Forum: Fixing WordPress
In reply to: WordPress 3.7 Changes Not Showing UpI isolated the issue to MAMP. I found the solution on StackOverflow by commenting out Opache.
You can view it here.
Forum: Plugins
In reply to: [Secure Custom Fields] WYSIWYG Custom HeightThanks Manuel!
Forum: Plugins
In reply to: [Secure Custom Fields] Display Repeater Fields on Index.phpWith the help of Elliot, I finally figured it out.
I changed the way I initialized the main loop from using WP_Query:
<? $mainPosts = new WP_Query(array('post_type' => 'home' )); while($mainPosts->have_posts()): $mainPosts->the_post(); ?>
to query_posts:
<? query_posts(array('post_type' => 'home' )); while (have_posts()): the_post(); ?>
For the ‘Work’ and ‘Blog’ WP_Query nested loops, I changed the way I closed them from:
<? $i++; endwhile; wp_reset_query(); wp_reset_postdata(); ?>
to:
<? $i++; endwhile; wp_reset_postdata(); ?>
To summarize, I am using query_posts to display the ‘home’ Custom Post Type as the main loop, and WP_Query to display the inner nested loops.
Forum: Plugins
In reply to: [Secure Custom Fields] Filed Group appears twice and image is not savedYes they are different, even though they both say 3.5.5. I would recommend to always download the latest stable build on GitHub because it will be the newest version.
Hope this helps.
Forum: Plugins
In reply to: [Secure Custom Fields] Filed Group appears twice and image is not savedJ,
Try downloading the latest nightly build at GitHub, https://github.com/elliotcondon/acf/. I had the same issue, but it was fixed with the latest build.
Forum: Plugins
In reply to: [Secure Custom Fields] Flexible Content Duplicating ErrorThis issue has been fixed with the latest nightly build at GitHub, https://github.com/elliotcondon/acf/.
Forum: Plugins
In reply to: [Meta Box] [Plugin: Meta Box] Clone Multiple Text & Image Upload FieldsI have decided to use the Advanced Custom Fields plugin instead. The Meta Box plugin is a great, simple plugin, however, I have found ACF to be more suitable for my needs.
Forum: Plugins
In reply to: [Secure Custom Fields] Flexible Content IssueThis issue has been resolved with the latest plugin release. ??
Forum: Requests and Feedback
In reply to: 100% pure love for 2.7!I have been a long time fan of WordPress, and I welcome the new 2.7 version with open arms! I really enjoy the updated admin interface (a refresh was long overdue). Plus, it was released just in time for me to use WordPress as a CMS for my new website.
Forum: Themes and Templates
In reply to: Custom Navigation Using ImagesHi Novice21!
You are pretty knowledgeable for a beginner! There is a simpler solution to replacing previous and next links with images, in the same category, as well. Simply use the previous_post_link or next_post_link Template Tag, and replace ‘link’ string with an image source.
Here is an example:
<?php previous_post_link('%link', '<img src="/images/nav_prev.jpg">', TRUE); ?> <?php next_post_link('%link', '<img src="/images/nav_next.jpg">', TRUE); ?>
Hope this helps!
Best Regards,
Casimir
https://www.casimirlancaster.com