Viewing 5 reply threads
You must be logged in to reply to this topic.
When I put a URL inside of the “Column Link” field (field meant to ad a hyperlink to the column container, I assume), it inserts the a tag in the code, but fails to put the url inside of href. The a tag it puts in looks like:
a target=”_self” href=”” rel=”noopener”
I’ve tried formatting the URL with http, with www, both http & www, and without either
Hi,
Please share website url, wp-admin and ftp info (login/ passwords) and send using “private reply” .
Thanks,
I believe I figured out the problem:
\wp-content\themes\folie\includes\codeless_builder\shortcodes\cl_column.php
Is missing “echo” on line 46.
Edit: I tried pasting the code here but the forum was turning it into a hyperlink. Basically I added an “echo” to line 46 inside the href= bit, that fixed the problem.
<?php esc_url( $custom_link ) ?>
to
<?php echo esc_url( $custom_link ) ?>
Sure thing, hopefully this fix can be pushed to the next version.
Hi,
Sure we’ll fix this bug in our upcoming theme/plugin update.
Thanks,
You must be logged in to reply to this topic.