corpcomm
Forum Replies Created
-
Thanks Champ,
I’ll take a look at this. Are there any templating steps for the Hooks similar to changing the template for the Profile page?On the post_category. I have the field added to the CSV however, I am not sure where I select this field with in the Mapping Section. Would this be under the Advanced Mode or the Drag & Drop Mode? I’ve looked under the Drag & Drop Mode but there is nothing listed under Taxonomies, Categories & Tags.
Can you provide any screenshots or more detailed info on where I can make this adjustment.I am pulling the list of posts in using the following query within a custom page template:
<?php $args = array( 'post_type' => 'post', 'cat' => 4 , 'posts_per_page' => 10 ); $the_query = new WP_Query( $args ); ?> <?php if ( $the_query->have_posts() ) : ?> <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>Forum: Plugins
In reply to: [List category posts] List category Posts and Advanced Custom Fieldsyeah that did work. Except for the fact that I have a bunch of Image fields that are returning array’s. The code for those fields are similar to this:
<?php $productimage = get_field(‘product_image’); ?>
” alt=”<?php echo $productimage[‘alt’]; ?>”>
any ideas on these?
Thanks for the input already.
Just FYI. I turned this feature off. Then did a plugin update and the Shortcode feature was turned back on.
That is exactly what it was. You may want to change this to be off by default. Prior to doing the latest update to the plugin, it was turned off so I am not sure how it got turned on.
Thank you for you help.