eclessia
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Cloud Zoom Image Plugin] Thumbs not showing in SafariI worked this out – I had to add width to the anchor tag.
Forum: Plugins
In reply to: [ZWoom - WooCommerce Product Image Zoom] Keep other images in gridHi WsdmLabs,
I’d love to have this behaviour on my site,
Can you please supply a custom version?
Thanks in advance!
Mat
I’d also like to do this – did you solve it?
Forum: Plugins
In reply to: [ZWoom - WooCommerce Product Image Zoom] How to remove scrollable featureHi bolivares,
I’m trying to do the same thing for my store it looks like you’ve solved it on your dev site??
Would you mind sharing your customisation? Or are you using a different plugin now?
Cheers
Mat
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Error on installI solved it by removing ‘&’ on line 360 of forms-3rdparty-integration.php
Forum: Plugins
In reply to: [Front End Login Form] Please fix a codeIs there a solution yet? I’m still getting the same issue.
Forum: Hacks
In reply to: Loop Parent Custom Posts with nested ChildsI came up with a work around – I just added a new metabox feild (extas) but it’s not quite the way I’d like to do it.
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <article class="item" data-permalink="<?php the_permalink(); ?>"> <?php $description = get_post_meta(get_the_ID(), 'ecpt_description', true); $price = get_post_meta(get_the_ID(), 'ecpt_price', true); $extras = get_post_meta(get_the_ID(), 'ecpt_extras', true); ?> <li class="menu-item"><span class="item-title"> <?php echo the_title(); ?></span><span class="item-description"> <?php echo $description; ?></span></span><span class="item-price"> <?php echo $price; ?></span><div class="item-extras"> <?php echo $extras; ?></div> </li> </article> <?php endwhile; ?> <?php endif; ?>Forum: Hacks
In reply to: Loop Parent Custom Posts with nested ChildsDoes anyone else want to weigh in?
I’ve not made much progress with it.
Cheers
Mat
Forum: Hacks
In reply to: Loop Parent Custom Posts with nested ChildsThanks bcworkz,
I follow what you mean but I’m not quite sure how to implement it.
I had a crack at something like this – with no success.
Would you mind putting me on the right track?
Thanks again!
<?php global $post; $item_args = array( 'numberposts' => 50, 'offset'=> 1, 'post_type' => menuitem,'orderby' => 'title','order'=> 'ASC'); $items = get_posts( $item_args ); echo '<ul class="deco-menu">'; foreach( $items as $post ) : setup_postdata($post); $description = get_post_meta(get_the_ID(), 'ecpt_description', true); $price = get_post_meta(get_the_ID(), 'ecpt_price', true); ?> <?php $parents = array('post_parent' => 0); if($parents['post_parent'] == 0){?> <li class="menu-item"><span class="item-title"> <?php echo the_title(); ?></span><span class="item-description"> <?php echo $description; ?></span></span><span class="item-price"> <?php echo $price; ?></span> <?php;} else {?> nothing yet <?php;}?> <?php endforeach; ?>Forum: Plugins
In reply to: [Redirectioner] [Plugin: 404 Redirected] Search pages?It would be handy to search/filter within the plugin to make it easier to fine URLs.
Summit how did you solve it from putting backups in “deleted files”?