spudlogic2
Forum Replies Created
-
Forum: Plugins
In reply to: [Orilla Cart - eCommerce] Invalid Category on Orillacart PluginFor anyone else that runs into the problem with the categories page not showing up. Make sure your perm links are set to Post Name ?? All is right with the world now.
Forum: Plugins
In reply to: [Orilla Cart - eCommerce] Invalid Category on Orillacart PluginI’m getting the categories to show up in the admin but not on the category pages, “no such product” for shop/category/oils/. I also see that the numbnail doesn’t stay in the category in the admin after it’s been added. (set the thumb and it there, come back and it’s gone).
On a side note, your images are gone in some of your docs https://ecommerceplugin.com/wp-content/uploads/2013/03/Cat-thumb.png and your contact form seems to be down.Any help would be great!!
Thanks
ErikHey Animalejourbano,
I’m trying to do this with the repeater field.I’m pulling in post_content from several page to make a tabbed section but one page is made up of a ACF repeater field.
This is what I have that’s pulling in the content
<?php $mypages = get_pages( array( 'child_of' => $post->ID, 'sort_column' => 'post_date', 'sort_order' => 'asc' ) ); foreach( $mypages as $page ) { $content = $page->post_content; if ( ! $content ) // Check for empty page continue; $content = apply_filters( 'the_content', $content ); ?> <div class="<?php echo $page->post_name; ?>"> <h2><?php echo $page->post_title; ?></h2> <?php echo $content; ?> </div> <?php } ?>
and then I have this in it’s own template
<?php if( have_rows('blood_components') ): ?> <?php while( have_rows('blood_components') ): the_row(); // vars $image = get_sub_field('image'); $content = get_sub_field('text'); ?> <div class="bc"> <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt'] ?>" /> <div> <?php echo $content; ?> </div> </div> <hr> <?php endwhile; ?> <?php endif; ?>
I think it should be some mod to the filter but I’m not quite sure how that works.
Thanks!!
Forum: Plugins
In reply to: [Recent FB Posts] No recent Facebook posts to show. Any solution?I just installed it and got the same thing.