faebu
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] orderdir="desc" not working?Hi Ted
Thanks for your fix. Applied in next update.
Fabian
Hallo Jan
Was meinst Du mit Dash Bereich?
Auf die Bearbeitung eines Artikels habe ich absolut keinen Einfluss. Ich stelle dort lediglich einen Box dar…
Der Shortcode linktopost = 1 funktioniert bei mir einwandfrei, aber natürlich auch nur für Events die mit einem Artikel verknüpft sind.
Grüsse Fabian
Forum: Plugins
In reply to: [WP Calendar] Still maintained?yes, but hard to find any time the last few months
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Searching in subcategories not workingHi
It’s me again. I just found out that my solution does not fix the problem comletely. my fix will still help resolving the correct children, but the taxonomy ids returned by the function
get_term_children
cannot be used directly in the sql conditions, because its the internal taxonomy id, which has to used to resolve the correct relationships.So, for every single category id, the internal taxonomy id has to be resolved as follows:
$t_cat = $wpdb->escape($t_cat); $term_tax_id = $wpdb->get_var("SELECT term_taxonomy_id FROM $wpdb->term_taxonomy WHERE term_id=$t_cat"); if ($term_tax_id) { $exclude ? $ex_term_tax_ids[] = $t_cat : $inc_term_tax_ids[] = $term_tax_id; $children = get_term_children($t_cat, 'category'); if (is_array($children)) { foreach ($children as $child) { $term_tax_id = $wpdb->get_var("SELECT term_taxonomy_id FROM $wpdb->term_taxonomy WHERE term_id=$child"); $exclude ? $ex_term_tax_ids[] = $child : $inc_term_tax_ids[] = $term_tax_id; } } }
Cheers
Forum: Plugins
In reply to: [WP Calendar] WP Calendar link to several pagesi’m not sure if I understand your question, but i think the answer is no.
Forum: Plugins
In reply to: [WP Calendar] Makes no sense…just read the documentation. this is a complex but also flexible plugin. you do not need any php skill. use:
– widgets
– single event shortcodes
– multi event shortcodesto display a list of event, a single event or even a graphical calendar. since this plugin has many options, you could no expect to work without any work by yourselfes.
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] orderdir="desc" not working?have you tried to set orderby to from?
Thanks for your solution. applied in next update.
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] ical feedsee this post
Forum: Plugins
In reply to: [WP Calendar] Linking to wp-calendarcreate a new page and put in the shortcode {events_calendar} which makes the graphical calendar show up.
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] Category Sortingmay be you are missing the semicolon?
{events_calendar; categories=”1,2″}
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] target=_blank & Pagination=alignrightyou can add the
target="_blank"
in the template where you should find the anchor.Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] date show as 1st january 1970See this post
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] date format changecorrect, i do not use timestamps anymore, but mysql datetime fields instead.
instead of accessing the attribute
tsfrom
andtsto
, you can now access the datetime fieldsfrom
andto
.Use the following example to format your date:
mysql2date($this->date_admin_format, $this->from);
Have a look at the function mysql2date.
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] ical feedappend /feed/ical to any url. The feed contains all future event. You can filter your feeds by category: