clauds54
Forum Replies Created
-
Forum: Plugins
In reply to: [Shortcodes Blocks Creator Ultimate] Instructions aren’t clearHello i am trying to uninstall the plug in but it wont let me … please help.
Eric please discard my previous message and pardon my stupidity in not checking all the Polylang options.
Ciao
ClaudioHello Eric,
ok i used your suggestion and installed Polylang and things seem to work out but if i go to modify pages or atricles i get a polylang language widget for coosing the language of the post or page, not so for campaigns.Is there anything i could do about this ? if not how should i go about getting campaigns in multiple languages ?
Grazie
ClaudioHello prashantdhama200,
i need the same thing for italian and english languages can you tell me how you did it.
Thank you.Forum: Plugins
In reply to: [WP Car Manager] price decimalsThank you for your answer
but i solved the issue with the suggestion that you mailed me on the 24th oct.Forum: Plugins
In reply to: [WP Car Manager] price decimalsPS. i think it would also look better.
CiaoForum: Plugins
In reply to: [WP Car Manager] price decimalsWell Zaanmedia, first thank you for your reply.
But the calls for both points and commas are on the
setting page i thought there would be a use since they
are there.
But maby i am wrong.
Sorry for my englishForum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Custom field linkwill try , let you know
thank youForum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Custom field linkHello to all,
yes angelo i understand this might need some custom php, but please follow my thought: now i have made a custom page(1) template that filters the locations by tags, each location shows the location image and address and a button that links to a page(2) that shows all events.
This events page has also two search fields (directly from events manager) one is the Geo search and one is generic. Now if i enter the location name in the generic serach field the page will only show events from that location (exatly what i want, but..).Ok here is the question is there a way to tell the genreic serach field in the events page(2) to use the location name of the location in the first page(1) by changing the button link or action or whatever ?
I hope i got to explain it well.
Grazie and Ciao
ClaudioForum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Custom field linkhello caimin,
i have added a custom field to locations i called it likapromo and it’s essentially a link to events list (all events).
Now what i would like it to do is to make it show only events related to that specific location.Forum: Themes and Templates
In reply to: [Hueman] header menu disapears in archive pageHello Alexander, no cacheing going on , ia not am using a cache plugin.
ciao
ClaudioHello Angelo,
please let me try to explain ad see if i understand some.
I am using events manager to bulid a coupon site that contains a directory of many potential clients (for free) in the area i live Naples Province in Italy.
Now i am bulding the directory whitin EM using the locations as the database so if a potential client wants to post an event he will pay for it.
Ok now let’s say a person searches for all Wine bars in the Province he can becouse i made a custom template using wp_query with the tag wine-bar, and used your previus advices to show place holders etc.
Now consider that in the Naples Province there are many towns and naturally each town has many wine bars.
Ok here it is … if a person want’s to see only the wine bars in Caprì which is part of the Naples Province he cannot do it becouse i do not know how to implement the form for just showing all wine bars (with or without an event going on)in Capri with EM.Now the search form works great for events but how and can i use it in my template for location search.
from what i understand it is bound to events meaning if there are no events for that location it will not consider it.Ok hope i did not bore you .
By the way i am a 60 year old tring to create a job with this since the situation here in Italy is quite bad, so please be patient.
Ciao
ClaudioI think i do not undesrtand exactly what to do.
I have created a regular WP page and put this in it:<ul>[locations_list]<li>#_LOCATIONTOWN</li>[/locations_list]</ul>
this is what i get:
TOWN LIST
Napoli
Napoli
Napoli
Napoli
Napoli
Pozzuoli
Salerno
Napoli
Napoli
Napoliwhat i would like is someting like:
Choose the town you wish to see the locations (with or without events)
-a dropdown of towns – and once one town is chosen the the template will filter for locations that only are in that town.
is’ probably a very simple thing to do but you must excuse me caimin but i do not understand how to implement it.Thank you for your time and cutresy.
ClaudioNo that works fine in my event page, but searches for events in a City/town.
What i need is a search filter that shows all locations (not events) in a specific town because not all locations have events going on but i need to show them anyway.If you think it might help i can past my custom template some where.
Grazie caimin
ClaudioOk this is what i did ` <!– START Country Search –>
<div class=”em-search-country em-search-field”>
<label><?php echo esc_html(get_option(‘dbem_search_form_town_label’)); ?></label>
<select name=”Citta” class=”em-search-town em-events-search-town “>
<option value=”><?php echo esc_html(get_option(‘dbem_search_form_town_label’)); ?></option>
<?php
//get the counties from locations table
global $wpdb;
$towns = em_get_towns();
$em_towns = $wpdb->get_results(“SELECT DISTINCT location_town FROM “.EM_LOCATIONS_TABLE.” WHERE location_town IS NOT NULL AND location_town != ” AND location_status=1 ORDER BY location_town ASC”, ARRAY_N);
$ddm_towns = array();
foreach($em_towns as $em_town){
$ddm_towns[$em_town[0]] = $towns[$em_town[0]];
}
asort($ddm_towns);
$allowed_towns = array(“Napoli”,”Pozzuoli”);
foreach( $ddm_towns as $town_code => $town_name ):
//we’re not using esc_ functions here because values are hard-coded within em_get_countries()
if ( in_array($town_code,$allowed_towns) ){
?>
<option value=”<?php echo $town_code; ?>” <?php echo (!empty($_REQUEST[‘town’]) && $_REQUEST[‘town’] == $town_code) ? ‘selected=”selected”‘:”; ?>><?php echo $town_name; ?></option>
<?php } ?>
<?php endforeach; ?>
</select>
</div>
<!– END Country Search –>`
Changing all countries to towns and all countrie to town
+ plus changed allowed coutries inserting two towns.
But all i get is a serch form that says City/Town then a dropdown that only shows this enty City/Town an thats it.
What am i doing wrong ?