jenseo
Forum Replies Created
-
Forum: Plugins
In reply to: [Redirection] Redirection New Update Breaks mod_rewrite RulesThanks for the quick fix, a visitor just made us aware of the same problem. To confirm, the update took care of the problem.
Forum: Plugins
In reply to: [LiteSpeed Cache] Support Image Upload Resize & Quality+1 on the resizing original image option. I have clients that don’t want to take the time resizing their original images before uploading, resulting in large original images taking up unnecessary space.
Would be great with an option working the same way we limit the max width/height of the normal WordPress large, medium and thumbnail images, but for the actual original.
Fingers crossed!
Forum: Plugins
In reply to: [Open Currency Converter] Api callsI also have this problem, which indicates that it might be a problem with the caching function. I’m running PHP 7.1.12.
Forum: Plugins
In reply to: [GigPress] Problem with caching (WP Rocket)Hi guys,
sorry for my VERY late reply, I didn’t get a notification about it.Unfortunately, it didn’t really help me. But if I’m understanding this correctly, GigPress doesn’t create a post when creating a gig and this is why the cache isn’t updating?
I’m using template tags to display the gigs actually. And the sidebar widget as well.
WP Rocket is one the most used caching plugins for WordPress (and the best one in my opinion) so maybe it would be a good idea to implement a fix so that the cache gets purged when adding gigs?
Thanks!
// Jens.
Forum: Plugins
In reply to: [CTX Feed – WooCommerce Product Feed Manager] CSRF Security Vulnerability!Thanks for the solving it so fast!
Forum: Plugins
In reply to: [remarketable] Extremely slow WP AdminSounds great Jacob! Would it be possible perhaps to only fetch the notifications once per session, once per hour or something like that? This would take load off your server as well I guess. It seemed at least that they were fetched on every page load, considering that we had problems on all admin pages.
// Jens.
Forum: Plugins
In reply to: [remarketable] Extremely slow WP AdminHi there,
sorry for this late reply, for some reason the notifications from this thread ended up in my spam filter.Anyway: I just upgraded your plugin with the update you provided recently and then activated it again to try it, and right now it seems to work as it should. Maybe it was related to the bugs you fixed with this update.
If not, a theory could be that your plugin makes some connection to your servers in the admin parts of WordPress perhaps? If that’s the case, and your server is running slow at the moment, this could be the problem.
Just a thought!
Will let you know if I get problems again, but for now it works!
Thanks
Forum: Plugins
In reply to: [Post Pay Counter] Count words in titles?Hi Stefano,
that might have been true a couple of years ago, but for many modern websites of today, expressive, longer titles are pretty common.Anyway, please keep my suggestion in mind if you ever get the chance to implement it!
Thanks again for a great plugin!
// Jens.
Thanks dcooney, that seems to have done the trick! Sorry about the trouble, I had totally missed that part!
Yes, I did miss this…
<h2><?php echo '#' . $alm_item . '.'; ?> <?php the_title(); ?></h2> <?php the_content(); ?>
Will try to wrap it!
Sorry, it seemed resolved, but unfortunately not. It still duplicates posts when loading more.
You can see it in action here:
https://delbart.se/sveriges-basta-podcasts/
Look for images that look the same, no posts have the same image. The post can have the same point though.
Hey, no worries! I should have thought of moving the statement sooner as well ??
Thanks for a great plugin and great support, will give you a five star rating after I have finished writing this ??
Thanks! I think moving the endwhile; endif; statement up to before the load more query does the trick! I just have to make sure it won’t effect anything after the list, but I think it will be ok!
Awesome, thanks a lot!
Could it be an issue with wp_reset_postdata?
<?php get_header(); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div id="content-single"> <div id="single-post-wrapper"> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <!-- google_ad_section_end --> <!-- google_ad_section_start --> <div class="meta-wrapper-large clearfix"><?php if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb('<p id="breadcrumbs">','</p>'); } ?> </div> <h1 class="entry-title"><?php the_title(); ?></h1> <div class="entry"> <?php the_content(); ?> <?php $initial_count = get_post_meta($post->ID, '_initial_count', true); $images = get_children('post_parent='.$post->ID.'&post_status=publish&post_type=user_images'); if ( ! empty( $images ) ) { $image_ids = wp_list_pluck( $images, 'ID' ); $image_ids = implode(',',$image_ids); echo do_shortcode('[ajax_load_more post_type="user_images" preloaded="true" preloaded_amount="'.$initial_count.'" meta_key="_point" post__in="'.$image_ids.'" orderby="meta_value_num" order="DESC" posts_per_page="20" pause="true" scroll="false" button_label="Ladda fler bilder..." transition="fade" container_type="div" css_classes="user-images"]'); } wp_reset_postdata(); ?> <?php endwhile; endif; ?> <?php get_sidebar('sidebar'); ?> </div> </div> </div> <?php get_footer(); ?>