jahsko
Forum Replies Created
-
Forum: Plugins
In reply to: [Cresta Social Share Counter] Share counts less than beforeIt looks like our share counts are back to their original numbers,
Thanks again.
Forum: Plugins
In reply to: [Cresta Social Share Counter] Share counts less than beforeok, I will check again in a few hours, it looks like my App hit it’s rate limit on 04/19, but it has been around 40% since then…
Forum: Plugins
In reply to: [Cresta Social Share Counter] Share counts less than beforeHi,
Firstly, thank you for the prompt support in resolving this issue.
I’ve updated to 2.8.5.
I see the option to “store FB shares in post meta”, if I select that option, all my share counts drop to 0. I’ve tried increasing the cache time up to 96 hours, but all share counts still show 0 if this is enabled.I do not see the option to choose between displaying “number of shares or the total number of interactions”, where is that?
Currently my example url is still showing 674 shares when it was at 2.2k.
Thanks!
Forum: Plugins
In reply to: [Cresta Social Share Counter] Share counts less than beforeHi,
If possible, we would prefer to have the total number of interactions shown as before.
Please let me know if this is doable.Thanks for the quick response.
ok, thanks for the response.
Forum: Plugins
In reply to: [Cresta Social Share Counter] Share counts reset after plugin updateI created a new FB App ID and checked the new HTTP to HTTPS box and now share counts are showing correctly again.
Forum: Fixing WordPress
In reply to: WordPress not sending password reset emailsI have resolved this issue on my end. Apparently the site in question was hacked a while ago and subsequently placed on some spam email blacklists. So all emails from that domain were getting blocked by an outbound email filter. I got the host to remove the filter and now the site is sending password reset emails again.
Forum: Fixing WordPress
In reply to: can't update to 3.6.1I’ve tried switching to the default theme, I’ve reset the plugins folder, I’ve tried a new .htaccess and I did a manual upgrade. Still not luck. I’m probably just going to wait for 3.6.2 and if the problem persists I’ll do a fresh install.
Thanks for all the suggestions.Forum: Fixing WordPress
In reply to: can't update to 3.6.1/wp-content/upgrade is empty.
It still reverts back to 3.6 after the update?Forum: Fixing WordPress
In reply to: can't update to 3.6.1Sorry, I linked to the wrong thread, this is the correct thread:
https://www.ads-software.com/support/topic/error-upgrading-from-wordpress-36-to-361Basically, I go to update from 3.6 to 3.6.1, everything goes fine, but afterwards it still says I need to update to 3.6.1. I’ve tried disabling all plugins and switching themes, no luck, also tried a manual update and still get the same result.
Forum: Plugins
In reply to: [Easy Modal] Not showing up after updatethanks for the quick response, I’ve temporarily disabled the problem script and the modal is working again.
Let me know when the no conflict patch is finished.Forum: Plugins
In reply to: [Easy Modal] Not showing up after updateHi,
I am experiencing the same issue as ShallNotBeNamed.
Clicking the modal link returns a javascript error:
Uncaught TypeError: Cannot read property ‘0’ of undefinedit also disables all other links on the page. I checked and the modal is loading correctly in the footer.
Here is a link to the dev site: https://isupportu.biz/vmdsystems
The modal is being applied to the “Send to a Colleague” link in the footer.Thanks for any help you can provide.
Any update on this? I’m experiencing the same issue.
Forum: Fixing WordPress
In reply to: Order Categories by most recently updated?Got this working, here is my example, displaying a category list based on which categories have been most recently updated and excluding four categories, News, Reviews, Specials, and Featured.
<?php // get 5 latest posts, display the categories used on those posts (most recent categories) $cat_array = array(); $args=array( 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => 5 ); $my_query = null; $my_query = new WP_Query($args); if( $my_query->have_posts() ) { while ($my_query->have_posts()) : $my_query->the_post(); $cat_args=array('orderby' => 'none'); $cats = wp_get_post_terms( $post->ID , 'category', $cat_args); foreach($cats as $cat) { $cat_array[$cat->term_id] = $cat->term_id; } endwhile; } if ($cat_array) { foreach($cat_array as $cat) { $category = get_term_by('ID',$cat, 'category'); if ( $category->name != 'News' && $category->name != 'Reviews' && $category->name != 'Specials' && $category->name != 'Featured'){ echo '<li><a href="' . esc_attr(get_term_link($category, 'category')) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a></li> '; } } } wp_reset_query(); // Restore global post data stomped by the_post(). ?>
Forum: Fixing WordPress
In reply to: Order Categories by most recently updated?Hi MichaelH, Could you be any more specific? Or provide a link to something similar? When I search for “add a counter” all I find are articles about adding site counters and hit counters.
Also, I see two “foreach” sections
foreach($cats as $cat)
and
foreach($cat_array as $cat)
to which are you referring?
Thanks!