Nicolas RIVIERE
Forum Replies Created
-
I managed to fix it.
Here’s what I did:
– Harmonize the data in the database
– Modify the option label to remove the parentheses
– Delete the filter and then recreate it
Thanks for your helpForum: Plugins
In reply to: [Easy Duplicate Woo Order] Add some hooksThank a lot !
Forum: Plugins
In reply to: [Linky] Add Bandcamp Social & Short descriptionFor avatar size, you can check this topic
- This reply was modified 3 years, 3 months ago by Nicolas RIVIERE.
Forum: Plugins
In reply to: [Linky] Creating a new user to only manage/edit links in LinkyHi @cchervit
This topic explain how to change capacity to access Linky settings and “editor” is capability.
You must to create specific role with capabilities (with Members plugin for example). In functions.php filter, you must to edit capability with role slug.Forum: Plugins
In reply to: [Linky] Add Bandcamp Social & Short descriptionHi @mackeelive
We added Bandcamp icon in 1.4.4 version.
For short description, we will add this feature in future.For now, you can do that :
In functions.php in your theme (or child theme, if you use it) :if(defined('UNDFND_WP_LINKY_DOMAIN')) {
add_filter(UNDFND_WP_LINKY_DOMAIN . '_view_path', function ($path, $partial) {
if($partial == 'front/links')
return get_template_directory() . '/linky/page.php';
return $path;
}, 10, 2);
}This code allow to use a specific template for display links in page.
Then you can create a new file in your theme : linky/page.phpIn this file, add this :
<div class="links" style="padding: 30px 20px 10px 20px">Your short description</div><?php
require_once UNDFND_WP_LINKY_PLUGIN_DIR . 'views/front/links.php';And replace “Your short description” by your text.
Forum: Plugins
In reply to: [Linky] Mastodon Social IconHi @clkleinl and @gillyberlin
Mastodon icon is now present in Linky 1.4.4 version 😉
Best regardsForum: Plugins
In reply to: [Linky] Broken separatorYour link does’nt work.
I suppose you have uninstall Linky Plugin.
Do not hesitate to answer if you re-install the moduleForum: Plugins
In reply to: [Linky] Feature request – Multiple profilesHi @videorecover
For now, this feature is not implement in Linky.
May be in future.
Best regardsForum: Plugins
In reply to: [Linky] Maximum number of links that can be enteredWithout answer from your part, we consider that it is solved
Forum: Plugins
In reply to: [Linky] slug not workingWithout answer from your part, we consider that it is solved
Forum: Plugins
In reply to: [Linky] Analytics GA4 SetupHi @andresuman,
Google Analytics does not add by default in Linky plugin.
To add Google Analytics, you can use “Google Analytics” field in Settings tab.Forum: Plugins
In reply to: [Linky] Social Media Icons – Add Phone Icon/LinkHi @rockenbok,
Phone icon is now available. Please update your Linky plugin.
Forum: Plugins
In reply to: [Linky] Half-width buttonsForum: Plugins
In reply to: [Linky] Maximum number of links that can be enteredHello @thunderfire,
No mechanism has been put in place to restrict the number of links. However, there may be a problem related to the length in the database. I’ll see if it can come from there.
Forum: Plugins
In reply to: [Linky] slug not workingHey @widdaberlin
Thank you for your message.
Can you re-save Settings > Permalinks and test again?Thank you.