lucilec
Forum Replies Created
-
Forum: Plugins
In reply to: [LocateAndFilter] leaflet_filters_class is not definedHi,
I got the same error on Version 1.5.02.
I tryed multiple php version but it didn’t work, as well as adding write permissions to folder ‘cache’ again.
Can you help me as well please ?
Thank you very muchForum: Plugins
In reply to: [LocateAndFilter] .load not supportedThanks for your quick reaction !
Forum: Plugins
In reply to: [LocateAndFilter] Triing to add a link in the tooltipThe problem came from ‘Allow cache’ in the options.
Thanks again for your helpForum: Plugins
In reply to: [LocateAndFilter] Triing to add a link in the tooltipYou are right. I need a link tough…
echo '<a href="'.$project_url_related.'" target="_blank">Test</a>';
I’ve tried this but it doesn’t look right eather.
Thanks a lot for your help, it’s very kind of you.
Forum: Plugins
In reply to: [LocateAndFilter] Triing to add a link in the tooltipIn my plugin I placed :
add_action('plugins_loaded', 'init_tags_for_locate_and_filter_plugin'); function init_tags_for_locate_and_filter_plugin() { if ( class_exists('Locate_And_Filter_Addon_Helper') ) { new Locate_And_Filter_Addon_Helper; Locate_And_Filter_Addon_Helper::define_custom_tags( array( 'project_url_related' =>'project_url_related'), 'all', 'getDataCallbackFn_place_tags', 'project_url_related' ); function getDataCallbackFn_place_tags( $field, $id){ $html = ''; ob_start(); $project_url_related = get_field('project_url_related', $id); echo '<a href="<?php echo esc_url( $project_url_related ); ?>">Read more</a>'; $html .= ob_get_contents(); ob_end_clean(); return $html; } } else { add_action('admin_notices', 'wc_not_loaded'); } } function wc_not_loaded() { printf( '<div class="error"><p>%s</p></div>', __('Sorry cannot create tag because Locate_And_Filter is not loaded') ); }
Does it look right ?
Forum: Plugins
In reply to: [LocateAndFilter] Triing to add a link in the tooltipSorry I’m working in Local…
Forum: Plugins
In reply to: [LocateAndFilter] How to display images instead of span for markercategory ?Nice, thanks a lot
Forum: Plugins
In reply to: [LocateAndFilter] How to display images instead of span for markercategory ?I was thinking wouldn’t it be the easiest way to add a class to the category span like <span class=”cat_1″> ?
Thanks for your example by the way !
Forum: Plugins
In reply to: [LocateAndFilter] How to display images instead of span for markercategory ?Thanks for your quick answer.
I tried with jQuery but it’s working in the tooltip, only on the filters.I will try to create a custom tag because option 2 with :after or :before will display the same image and not a different one for each category.
Forum: Plugins
In reply to: [Easy Table of Contents] Link to title with smoothscrol comma problemI’m facing the same issue.
I would be so greatful if you could exclude comma and special caractere when generating the id.
Thanks you very much for your great plugin.Forum: Plugins
In reply to: [Form To Online Booking] Not working with contact form 7Same for me. Not working.
Forum: Plugins
In reply to: [LocateAndFilter] Additional fields as an imageWorks perfectly! Thanks for your support
Forum: Plugins
In reply to: [LocateAndFilter] Additional fields as an imageThanks you very much for your so quick answer.
As I’m using Oxygen builder, I have no functions.php
And when I use your code as a plugin I get an error in the first line.
Do you know why it doesn’t actually work in this case ?
Thank again