BIOSTALL
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Custom Fields: Link Picker Field] Doesn't work well with repeatersI can confirm that the plugin now works with repeaters.
Forum: Plugins
In reply to: [Advanced Custom Fields: Link Picker Field] Adding Commas to the end of URLI think it’s possible you were just doing something like:
<?php the_field('my_link_field); ?>What actually gets returned is an array with the first key being the URL. Sod you’d have to do:
<?php $my_link_field = get_field('my_link_field); echo $my_link_field[0]; ?>Hopefully thats the cause and solves it for other finding this thread.
I’ve just updated the plugin and fixed a lot of bugs following the recent WordPress upgrades. Please try again now. Thanks
Forum: Plugins
In reply to: [Advanced Custom Fields: Link Picker Field] Incompatible with 4.2.1?The plugin has just been updated to incorporate a lot of the fixes submitted in GitHub PRs
Forum: Plugins
In reply to: [Social Share Button] shortcodeFrom looking in the code there isn’t a shortcode. However I did find that you can do <?php echo ssb_share_icons(); ?> to output the buttons in a bespoke location.
I know this doesn’t help when wanting to put the butons in a WYSIWYG or widget.
To the author. Please please please add this. This could be EASILY (!) turned into a shortcode (happy to help btw).
Forum: Plugins
In reply to: [Advanced Custom Fields: Link Picker Field] Solve empty valueJust to confirm, this has now been resolved.
Thanks Willy. I’ve taken your solution and added it to the plugin (have given you credit in the changelog).
This only works for version 5 of ACF at the moment. It’s proving very difficult to get the JavaScript to execute in a repeater field for v4 and will address this another time.
Forum: Plugins
In reply to: [Cookii - Free GDPR Cookie Consent] Error activatingI fixed this by editing the plugin as follows:
File: /wp-content/plugins/easy-wp-cookie-popup/lib/template-functions.php
Change lines:
56: global $EasyWebtrends;
57: if($EasyWebtrends->get_option( ‘presstrends’ ) == ‘enabled’) {To:
56: //global $EasyWebtrends; (or remove this line)
57: if(get_option( ‘presstrends’ ) == ‘enabled’) {Hope that helps.
Forum: Requests and Feedback
In reply to: Feature Request: Ignore / Dismiss UpdatesPerfect! Thanks Otto 🙂 That’ll do