D
D
Daniil Kuznetsov2018-08-10 12:49:35
WordPress
Daniil Kuznetsov, 2018-08-10 12:49:35

Kama Click Counter how to insert a link to count clicks?

Hello everyone, I ran into the following problem:
I need to keep track of clicks on an external link, for this I installed the Kama Click Counter plugin. Displayed a shortcode

<?php echo do_shortcode('[download url="URL"]'); ?>

But the fact is that this shortcode implies manual entry of a link, while my link is written in a custom field and displayed as a code
<?php echo types_render_field( "server_url", array( ) ); ?>

How to solve this problem? Help me please.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
C
campusboy, 2018-08-10
@Gvynblade

Connect these 2 structures:

<?php
if( $url = types_render_field( "server_url", array( ) ) ) {
    echo do_shortcode("[download url='$url']");
}
?>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question