davidhollenbeck42
Forum Replies Created
-
@ladela awesome, thank you!
@ladela – do you have a timeline for when this fix will be available?
Forum: Plugins
In reply to: [UPS WooCommerce Shipping Method Plugin] Pre-sales QuestionOkay, that’s rather disappointing as we are looking at 500 subscribers by the end of the year. Is an update where this process will be automated likely? If not, can you please point me in the right direction to start working on a patch? I can do WordPress development but have not found any documentation that explains how to do that.
David
Forum: Plugins
In reply to: [UPS WooCommerce Shipping Method Plugin] Pre-sales QuestionHey, thanks for the reply. I was mostly wondering if the plugin supports subscriptions for sending the tracking number. We can do the label ourselves. Will I be able to connect the tracking number so that for each month the customers will receive the correct tracking number, as this will be changing with each new shipment?
#posts button.alm-load-more-btn.done {display:none;}was the code I used for anyone who has the same problem. You may not need the #posts, I think that only applies to my site.David
Figured it out, thanks!
I have it styled as
button.done {display:none !important;}and it is still showing up, am I getting the path to the class wrong? Previously I had tried#ajax-load-more div.alm-btn-wrap button#load-more.alm-load-more-btn.more.done {display:none!important;}and it also didn’t work.David
When all posts have loaded, I can click the button and it doesn’t do anything, if that’s what you mean. But it still appears on the page which is a problem for me. Is there a CSS rule I can edit or something?
Tried it but still not working, anything else it might be?
<div class="col-sm-3 post-link-ajax"> <?php global $post; $desktop_tablet_featured_image_id = get_post_meta($post->ID, 'desktop_tablet_featured_image', true); $desktop_tablet_featured_image = wp_get_attachment_image_src($desktop_tablet_featured_image_id, 'full'); ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"> <img src="<?php bloginfo('template_url'); ?>/images/rollover-read-more.png" class="featured-image-more" /> <img src="<?php echo $desktop_tablet_featured_image[0]; ?>" alt="" class="featured-image" /> <h2><?php the_title(); ?></h2> </a> </div>