fii.digital
Forum Replies Created
-
I am interested too. It seems like there is a consistent load on the server when API and AJAX is checked. When 40-50 on site, the load on server is not negligible.
Using a 6 core 8GB ram Litespeed VPS only with one site on it.How we can optimise this?
Kindly thank you.
I have successfully debug the reason why the plugin stopped. I think it was LiteSpeed caching plugin. Now conversions are active again, but the gtag setting in missing (admin.php?page=wgact§ion=advanced&subsection=google)
I remember that here we have a checkbox with global gtag setting.
It is gone? I tried with .10, .11 and 12 version of plugin.It makes sense what I am writing here? Is there any bug?
Same here. There are showing when filtered, but not all of them.
Article listing from wp-admin/edit.php is very slow even if i uncheck shares column to be displayed.
Forum: Plugins
In reply to: [Posts Social Shares Count] Pinterest not countingHi,
We replaced the lines 105 and 106 from classes/sharecount.php
$json_string = preg_replace( '/^receiveCount((.*))$/', "\1", $return_data ); $json = json_decode( $json_string, true );
with
preg_match( '/({.*})/', $return_data, $matches ); $json = json_decode( $matches[1], true ); return isset( $json['count'] ) ? intval( $json['count'] ) : 0;
and now it’s working fine.
Of course, this is not a solution (future updates), but if anyone have this issue shoud try this way.
Thank you for your useful plugin.
Forum: Fixing WordPress
In reply to: Custom Youtube Player using WordPress EmbedsForum: Plugins
In reply to: [Contextual Related Posts] Custom HTML outputI tried this solution prior to my first message.
I want to have simple and in a way semantic markup. This is the way that all others articles are displayed, I have a single class for them, and the media-queries are linked to base classes, so:
<section> <article> <a href="#"><img src="#" /></a> <h2><a href="#">Post title</a></h2> </article> <article> <a href="#"><img src="#" /></a> <h2><a href="#">Post title</a></h2> </article> </section>
it’s the markup that I search for.
In the future, maybe, in the options panel, it will be nice if you add some custom markup template like:
<article>%title%</article> <h2>%title%</h2> <img src="%image%" />
or something like this.
Thanks for your time. I will find a solution for my strictly markup ??
Forum: Plugins
In reply to: [Contextual Related Posts] Custom HTML outputThanks for the answer.
Let’s say that I have a large amount of articles, and I want to use the cache functionality – the one that fill the crp_related_posts custom field. In that case I can use the function
<?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?>
to call crp, and the function will return the content of custom field.
So:
How can I have that simple HTML example in that custom field? (in the crp plugi file you have defined the default markup for the function – that’s what I want to change).The above example works perfectly, but I have to optimize the load.
Thanks a lot for your support.
Forum: Plugins
In reply to: [Viper's Video Quicktags] [Plugin: Viper's Video Quicktags] Custom fieldsthx a lot, man :).
Forum: Plugins
In reply to: [Viper's Video Quicktags] [Plugin: Viper's Video Quicktags] Custom fieldsthis one works for me, but how can i put in there a custom field?
<?php echo apply_filters( 'the_content', '[flv]location[/flv]' ); ?>