SFMichael
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoptimize] No error but doing nothing.Ah, Thanks for the help.
Forum: Plugins
In reply to: [Autoptimize] No error but doing nothing.It seems this plugin was the issue: WP Social SEO Booster
Forum: Plugins
In reply to: [Autoptimize] No error but doing nothing.Thanks for swift reply. I have just noticed it works on my single post pages but no where else.
I will try toggling some of the plugins.
Forum: Plugins
In reply to: [AddToAny Share Buttons] Not displaying custom placed share bar any more.Yes I resorted to adding the HTML code as it was very important I fixed it there and then. I cannot not currently revert the code, as I am out of office. However there were no console errors.
The shortcode when added did add an empty div, and the code i posted previously when added output the code below, which I believe is correct.
<script type="text/javascript"><!-- if(wpa2a)wpa2a.script_load(); //--></script>
The theme that you have linked is not actually the theme I am using. I created my theme over 6 months ago and have been developing it privately, seems like a coincidence the names are the same.
The odd thing with this bug, is my dev site: https://89.200.141.33/~nmattersdev/nurse-revalidation-the-complete-guide/ has the except same plugins and theme however it works on it.
Even if I enable the sticky share bar in the plugin settings on my live site it does not appear however you can see it clearly works on my dev site.
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Parsley and jQuery errorOkay thanks for the update.
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Parsley and jQuery errorThis error is currently killing the page the form is on, it completely locks up the site. Has there been any progress on this issue?
Forum: Plugins
In reply to: [Comments - wpDiscuz] Change Comment Authors NameWorked a treat. Many thanks.
Forum: Plugins
In reply to: [Comments - wpDiscuz] Change Comment Authors NameSorry for reiterating, but is there anything I can use to change the author name if first and last name doesn’t exist without hacking your plugin?
I like this plugin and would prefer not to have to change.
Forum: Plugins
In reply to: [Comments - wpDiscuz] Change Comment Authors NameUnfortunately the website the plugin is installed on uses email addresses as usernames (For some unknown reason) so displaying the username is undesirable. The user base is also quite high so simply forcing first and last name won’t work for existing users.
Is there anyway at all I can override this?
Forum: Plugins
In reply to: [AddToAny Share Buttons] Resolved – Override Counter URLThanks for the update, Not sure how I missed that template code. I have updated my code to reflect your suggestion. Thanks for the input.
Forum: Plugins
In reply to: [AddToAny Share Buttons] Custom count view and total number of countsWould like to know this myself?
I am working on a similar design and have been tracking through the plugin code. From what I gather Shares are not stored in the database, The plugin hits the API of each social network counter using the desired URL and retrieves a value.
I’m not aware of a method of checking ALL social media, however it should only be a matter of the plugin accumulating the counters that is has retrieved. Although in saying that the counters are not loaded at the same time as the other content but follows shortly after.
Forum: Plugins
In reply to: [Rotating Tweets (Twitter widget and shortcode)] Width & ResizingExcellent work seems to work well.
Forum: Plugins
In reply to: [Testimonials Widget] IE 7 Quotes FixAs for prepending, I havn’t tested this but the jQuery method would be:
jQuery(‘#YOURID’).prepend(‘<span class=”CLASSNAME”></span>’);
Also note I’m using jQuery and not $ as i’m assume it would be in no conflict mode.
Based on a very quick look at the php could you not add this then add the correct css.
if ( ! empty( $cite ) )
$cite = ‘<cite><span class=”CLASSNAME”></span>’ . $cite . ‘</cite>’;Line 775 / 776
Forum: Plugins
In reply to: [Testimonials Widget] IE 7 Quotes FixI’ll have a think about prepending a span tag to the cite tag.
As for your latest update you need to remove the “&” code only needs to be
*zoom: expression( this.runtimeStyle[‘zoom’] = ‘1’, this.innerHTML = ‘,? ’ );
dont forget to add /remove semi colon following & and  
Forum: Plugins
In reply to: [Testimonials Widget] IE 7 Quotes FixHello again,
I never noticed the .testimonialswidget_join didn’t work either so here’s the fix.
.testimonialswidget_join {
*zoom: expression( this.runtimeStyle[‘zoom’] = ‘1’, this.innerHTML = ‘, ’);
}