kalligator
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin; WordPress SEO by Yoast] Empty descriptionIf I do that modification, I get no description tag at all.
Do you have any suggestions?Forum: Plugins
In reply to: [Post Types Order] [Plugin: Post Types Order] Hide draftsspot on, thanks!
If you are talking about executing a shortcode in a widget, you simply need to edit your custom_functions.php (found in your theme folder) and add this line:
add_filter('widget_text', 'do_shortcode');
Yeah thankfully I think I’ve seen one or two widgets that do just that – invoking php – so probably I’ll get away with it.
Thanks for your help and keep up the good work!Thanks for the quick reply.
I see what you mean, the widget is not in the loop so I’ll need to prepend the sample CCTM code with a post query, right?
Re the Multi-select fields I meant I wanted to display whatever has been selected via admin, not to allow front-end control, sorry for the confusion.Actually a better solution for the above fix is presented on the second page of that thread, putting the require_once in wp-config.php instead
Thanks for the fix.
Also another patch to add to wp is a require_once call to the top of capabilities.php : https://www.ads-software.com/support/topic/fatal-error-call-to-undefined-function-wp_get_current_user-4?replies=32
Forum: Plugins
In reply to: [Appointment Calendar] [Plugin: Appointment Calendar] SuggestionI think he means having a buffer between appointments, so that no booking can be made for at least – say – half an hour after the ending time of the previous appointment.
@pdorzak perhaps you can look into increasing the minimum time-slot as a quick solution, to factor your travel time in the booking duration.
But you’d then to explain to your customers that they’ll be charged with half an hour less or something … not a very elegant solution but still better than failing to show up on time.Forum: Plugins
In reply to: [Appointment Calendar] Suggestions for Appointment CalendarThanks, good to know you are listening ??
A couple more ideas:
- Prevent bookings into the past or into the current timeslot
- Enable google calendar/ical export.
By service I meant the service to book for, like “HairCut”. In retrospect though I think I should have written ‘shared calendar’ instead of ‘shared service’.
Re sharing, let me illustrate with an example.
The preferred way lately for making a multilingual wordpress site is to network install as many instances as needed – one wp installation/language.Right now the plugin will take separate bookings for each installation, which is reasonable.
However one might need to show availability and take all bookings from network websites based on a single calendar.Now that I think of it, perhaps a quick hack for me would be to hardcore all ‘$wpdb->prefix’ references pointing to the calendar tables into ‘wp_’ post-installation.
Well, at the moment you can link individual CPT posts for example lets say we have a specific movie called “Immortals”, linking from one language to another is no problem.
You can also link their taxonomies (e.g. actors, director etc) so when one is overlooking the actors archive they get transfered from one language to another – again no problem.But, if am not mistaken, I don’t see a way to link their base (e.g. movies). So that when one is overlooking the movies archive, the language switch would transfer the visitor on the movies archive of the other language(s).
The assumption being that the word “movies” was used as the
$post_type
parameter in theregister_post_type( $post_type, $args )
function.I hope I was clearer this time! Thanks again.
Let me grab the chance to thank you as well, this is a really useful plugin.
Regarding CPTs, is there a way to link them on a parent level similarly to post categories linking?
I’m not referring to taxonomies (lets say ‘actors’) but at the CPTs’ base (‘movies’).Well, apparently the ‘with_front’ => FALSE argument for rewrite in register_post_type was made for this purpose.
https://codex.www.ads-software.com/Function_Reference/register_post_typenote to self: don’t post forum questions when sleepless. danger of embarrassment
Forum: Themes and Templates
In reply to: [Toolbox] How do I translate Toolbox?thanks for this
Forum: Plugins
In reply to: [The Events Calendar] Facebook event sync?+1
for two-way synch ??Forum: Plugins
In reply to: [Multiple Category Selection Widget] Build Search Form Like this?+1
I am interested as well.
Though it appears that none of these type of plugins currently can do this.I’ve seen it done even more elegantly on a custom site (with ajax I suppose), saving the whole page reload on every selection. Plus there’s a live number of matches for each step. Here’s the url:
car. gr/classifieds/cars/search/
(remove the space)I’d be happy if some coder could point me in the right direction for achivieng this.
What is it called even? Live drilldown?