Yes! Thank you I am having same problem … this is not a minor concern but have several clients complaining.
Inked dev please respond? Is this something that can be easily fixed?
Ah, this was causing me too much grief – so I just jumped into the code. Turns out it’s a fatfinger issue on their dev side, so an EXTREMELY easy fix! 🙂
Here’s how to correct the issue: Go into /widgets-for-siteorigin/widgets/ink-blgs-widget/tpl directory. There you’ll see a PHP file for each type of blog layout; no image, image left, above, etc.
Do a search for btn-text and you’ll be shuttled down to around line 160 to 170 or thereabouts. Now, just a line or so above that, you’ll see this:
<a class="<?php echo esc_attr( implode( ' ', $btn_class) ); ?>" href="<?php esc_url( get_permalink() ); ?>">
This is the line of code that puts the classes and permalink to the post into the a tag. But you notice that code after href=? It’s broken … they somehow deleted or forgot to put in the echo that would actually spit it out. So just update that line to look like this and you’re good:
<a class="<?php echo esc_attr( implode( ' ', $btn_class) ); ?>" href="<?php echo esc_url( get_permalink() ); ?>">
So glad it was such an easy fix, and hope this answer helps someone else!
Thanks for that Michael.
I’ll hope this will be fixed soon.
Thanks @mkastler. That was it! Easy quick fix.
-
This reply was modified 7 years, 9 months ago by
timnancyk.
Sorry guys. I’ll update the plugin with a fix tomorrow.
Thanks @iamadi – happy I could help 🙂 Love the plugin, hope you can keep up the good work!